Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SPARK-Brunei/260bdffab6735de5bafb8542ec6c8cba to your computer and use it in GitHub Desktop.
Save SPARK-Brunei/260bdffab6735de5bafb8542ec6c8cba to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.0+commit.c7dfd78e.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
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.8.2 <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;
}
}
{
"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": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2950:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "70:80:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "80:22:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "89:5:5"
},
"nodeType": "YulFunctionCall",
"src": "89:13:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "80:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "138:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "111:26:5"
},
"nodeType": "YulFunctionCall",
"src": "111:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "111:33:5"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "48:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "56:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:5",
"type": ""
}
],
"src": "7:143:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "233:207:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "279:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "288:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "291:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "281:6:5"
},
"nodeType": "YulFunctionCall",
"src": "281:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "281:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "254:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "263:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "250:3:5"
},
"nodeType": "YulFunctionCall",
"src": "250:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "275:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "246:3:5"
},
"nodeType": "YulFunctionCall",
"src": "246:32:5"
},
"nodeType": "YulIf",
"src": "243:2:5"
},
{
"nodeType": "YulBlock",
"src": "305:128:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "320:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "334:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "324:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "349:74:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "395:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "406:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "391:3:5"
},
"nodeType": "YulFunctionCall",
"src": "391:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "415:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "359:31:5"
},
"nodeType": "YulFunctionCall",
"src": "359:64:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "349:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "203:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "214:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "226:6:5",
"type": ""
}
],
"src": "156:284:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "592:183:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "602:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "668:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "673:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "609:58:5"
},
"nodeType": "YulFunctionCall",
"src": "609:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "602:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "697:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "702:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "693:3:5"
},
"nodeType": "YulFunctionCall",
"src": "693:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "706:33:5",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "686:6:5"
},
"nodeType": "YulFunctionCall",
"src": "686:54:5"
},
"nodeType": "YulExpressionStatement",
"src": "686:54:5"
},
{
"nodeType": "YulAssignment",
"src": "750:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "761:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "766:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "757:3:5"
},
"nodeType": "YulFunctionCall",
"src": "757:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "750:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "580:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "588:3:5",
"type": ""
}
],
"src": "446:329:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "846:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "863:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "886:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "868:17:5"
},
"nodeType": "YulFunctionCall",
"src": "868:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "856:6:5"
},
"nodeType": "YulFunctionCall",
"src": "856:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "856:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "834:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "841:3:5",
"type": ""
}
],
"src": "781:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1076:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1086:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1098:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1109:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1094:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1094:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1086:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1133:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1144:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1129:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1129:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1152:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1158:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1148:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1148:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1122:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1122:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "1122:47:5"
},
{
"nodeType": "YulAssignment",
"src": "1178:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1312:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1186:124:5"
},
"nodeType": "YulFunctionCall",
"src": "1186:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1178:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1056:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1071:4:5",
"type": ""
}
],
"src": "905:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1428:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1438:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1450:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1461:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1446:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1446:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1438:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1518:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1531:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1542:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1527:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1527:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1474:43:5"
},
"nodeType": "YulFunctionCall",
"src": "1474:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "1474:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1400:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1412:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1423:4:5",
"type": ""
}
],
"src": "1330:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1654:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1671:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1676:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1664:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1664:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "1664:19:5"
},
{
"nodeType": "YulAssignment",
"src": "1692:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1711:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1716:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1707:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1707:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1692:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1626:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1631:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1642:11:5",
"type": ""
}
],
"src": "1558:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:261:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1810:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1792:17:5"
},
"nodeType": "YulFunctionCall",
"src": "1792:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1787:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1821:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1844:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1826:17:5"
},
"nodeType": "YulFunctionCall",
"src": "1826:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1821:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1984:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1986:16:5"
},
"nodeType": "YulFunctionCall",
"src": "1986:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "1986:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1905:1:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1912:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1980:1:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1908:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1908:74:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1902:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1902:81:5"
},
"nodeType": "YulIf",
"src": "1899:2:5"
},
{
"nodeType": "YulAssignment",
"src": "2016:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2027:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2030:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2023:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2023:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2016:3:5"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "1764:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "1767:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "1773:3:5",
"type": ""
}
],
"src": "1733:305:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2089:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2099:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2110:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2099:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2071:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2081:7:5",
"type": ""
}
],
"src": "2044:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2178:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2188:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2202:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2208:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2198:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2198:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2188:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2219:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2249:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2255:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2245:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2245:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2223:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2296:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2310:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2324:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2332:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2320:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2320:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2310:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2276:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2269:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2269:26:5"
},
"nodeType": "YulIf",
"src": "2266:2:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2399:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2413:16:5"
},
"nodeType": "YulFunctionCall",
"src": "2413:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "2413:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2363:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2386:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2394:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2383:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2383:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2360:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2360:38:5"
},
"nodeType": "YulIf",
"src": "2357:2:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2162:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2171:6:5",
"type": ""
}
],
"src": "2127:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2481:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2498:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2501:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2491:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2491:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "2491:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2595:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2598:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2588:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2588:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "2588:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2619:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2622:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2612:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2612:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "2612:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "2453:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2667:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2684:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2687:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2677:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2677:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "2677:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2781:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2784:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2774:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2774:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "2774:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2805:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2808:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2798:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2798:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "2798:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "2639:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2868:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2925:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2934:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2937:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2927:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2927:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "2927:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2891:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2916:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2898:17:5"
},
"nodeType": "YulFunctionCall",
"src": "2898:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2888:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2888:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2881:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2881:43:5"
},
"nodeType": "YulIf",
"src": "2878:2:5"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2861:5:5",
"type": ""
}
],
"src": "2825:122:5"
}
]
},
"contents": "{\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n\n mstore(add(pos, 0), \"ERC20: mint to the zero address\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function 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_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50604051620017193803806200171983398181016040528101906200003791906200032f565b6040518060400160405280600b81526020017f4252554e4549535041524b0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f535041524b0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000268565b508060049080519060200190620000d492919062000268565b505050620000e93382620000f060201b60201c565b5062000513565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015a90620003ae565b60405180910390fd5b62000177600083836200025e60201b60201c565b80600260008282546200018b9190620003fe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200023e9190620003d0565b60405180910390a36200025a600083836200026360201b60201c565b5050565b505050565b505050565b828054620002769062000465565b90600052602060002090601f0160209004810192826200029a5760008555620002e6565b82601f10620002b557805160ff1916838001178555620002e6565b82800160010185558215620002e6579182015b82811115620002e5578251825591602001919060010190620002c8565b5b509050620002f59190620002f9565b5090565b5b8082111562000314576000816000905550600101620002fa565b5090565b6000815190506200032981620004f9565b92915050565b6000602082840312156200034257600080fd5b6000620003528482850162000318565b91505092915050565b60006200036a601f83620003ed565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620003a8816200045b565b82525050565b60006020820190508181036000830152620003c9816200035b565b9050919050565b6000602082019050620003e760008301846200039d565b92915050565b600082825260208201905092915050565b60006200040b826200045b565b915062000418836200045b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000450576200044f6200049b565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200047e57607f821691505b60208210811415620004955762000494620004ca565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000504816200045b565b81146200051057600080fd5b50565b6111f680620005236000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ebf565b60405180910390f35b6100e660048036038101906100e19190610b5e565b610308565b6040516100f39190610ea4565b60405180910390f35b61010461032b565b6040516101119190610fc1565b60405180910390f35b610134600480360381019061012f9190610b0f565b610335565b6040516101419190610ea4565b60405180910390f35b610152610364565b60405161015f9190610fdc565b60405180910390f35b610182600480360381019061017d9190610b5e565b61036d565b60405161018f9190610ea4565b60405180910390f35b6101b260048036038101906101ad9190610aaa565b6103a4565b6040516101bf9190610fc1565b60405180910390f35b6101d06103ec565b6040516101dd9190610ebf565b60405180910390f35b61020060048036038101906101fb9190610b5e565b61047e565b60405161020d9190610ea4565b60405180910390f35b610230600480360381019061022b9190610b5e565b6104f5565b60405161023d9190610ea4565b60405180910390f35b610260600480360381019061025b9190610ad3565b610518565b60405161026d9190610fc1565b60405180910390f35b606060038054610285906110f1565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110f1565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190611013565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb906110f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906110f1565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610fa1565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610f81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610f01565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610fc1565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190610f21565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590610f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590610ee1565b60405180910390fd5b6108e9838383610a76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690610f41565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5d9190610fc1565b60405180910390a3610a70848484610a7b565b50505050565b505050565b505050565b600081359050610a8f81611192565b92915050565b600081359050610aa4816111a9565b92915050565b600060208284031215610abc57600080fd5b6000610aca84828501610a80565b91505092915050565b60008060408385031215610ae657600080fd5b6000610af485828601610a80565b9250506020610b0585828601610a80565b9150509250929050565b600080600060608486031215610b2457600080fd5b6000610b3286828701610a80565b9350506020610b4386828701610a80565b9250506040610b5486828701610a95565b9150509250925092565b60008060408385031215610b7157600080fd5b6000610b7f85828601610a80565b9250506020610b9085828601610a95565b9150509250929050565b610ba38161107b565b82525050565b6000610bb482610ff7565b610bbe8185611002565b9350610bce8185602086016110be565b610bd781611181565b840191505092915050565b6000610bef602383611002565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610c55602283611002565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610cbb601d83611002565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000610cfb602683611002565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d61602583611002565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610dc7602483611002565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e2d602583611002565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610e8f816110a7565b82525050565b610e9e816110b1565b82525050565b6000602082019050610eb96000830184610b9a565b92915050565b60006020820190508181036000830152610ed98184610ba9565b905092915050565b60006020820190508181036000830152610efa81610be2565b9050919050565b60006020820190508181036000830152610f1a81610c48565b9050919050565b60006020820190508181036000830152610f3a81610cae565b9050919050565b60006020820190508181036000830152610f5a81610cee565b9050919050565b60006020820190508181036000830152610f7a81610d54565b9050919050565b60006020820190508181036000830152610f9a81610dba565b9050919050565b60006020820190508181036000830152610fba81610e20565b9050919050565b6000602082019050610fd66000830184610e86565b92915050565b6000602082019050610ff16000830184610e95565b92915050565b600081519050919050565b600082825260208201905092915050565b600061101e826110a7565b9150611029836110a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561105e5761105d611123565b5b828201905092915050565b600061107482611087565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156110dc5780820151818401526020810190506110c1565b838111156110eb576000848401525b50505050565b6000600282049050600182168061110957607f821691505b6020821081141561111d5761111c611152565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61119b81611069565b81146111a657600080fd5b50565b6111b2816110a7565b81146111bd57600080fd5b5056fea2646970667358221220231728365b3b3f0e9fdd8e6311fff7af070add57f5db389a8b5d820f4150e2fe64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1719 CODESIZE SUB DUP1 PUSH3 0x1719 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x32F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4252554E4549535041524B000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x535041524B000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xBB SWAP3 SWAP2 SWAP1 PUSH3 0x268 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xD4 SWAP3 SWAP2 SWAP1 PUSH3 0x268 JUMP JUMPDEST POP POP POP PUSH3 0xE9 CALLER DUP3 PUSH3 0xF0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH3 0x513 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x163 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x15A SWAP1 PUSH3 0x3AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x177 PUSH1 0x0 DUP4 DUP4 PUSH3 0x25E PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x18B SWAP2 SWAP1 PUSH3 0x3FE JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x23E SWAP2 SWAP1 PUSH3 0x3D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x25A PUSH1 0x0 DUP4 DUP4 PUSH3 0x263 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x276 SWAP1 PUSH3 0x465 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x29A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x2E6 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x2B5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x2E6 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x2E6 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x2E5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x2C8 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x2F5 SWAP2 SWAP1 PUSH3 0x2F9 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x314 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x2FA JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x329 DUP2 PUSH3 0x4F9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x342 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x352 DUP5 DUP3 DUP6 ADD PUSH3 0x318 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x36A PUSH1 0x1F DUP4 PUSH3 0x3ED JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3A8 DUP2 PUSH3 0x45B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x3C9 DUP2 PUSH3 0x35B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x3E7 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x39D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x40B DUP3 PUSH3 0x45B JUMP JUMPDEST SWAP2 POP PUSH3 0x418 DUP4 PUSH3 0x45B JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x450 JUMPI PUSH3 0x44F PUSH3 0x49B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x47E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x495 JUMPI PUSH3 0x494 PUSH3 0x4CA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0x504 DUP2 PUSH3 0x45B JUMP JUMPDEST DUP2 EQ PUSH3 0x510 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11F6 DUP1 PUSH3 0x523 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 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xB0F JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xFDC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xAAA JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xAD3 JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x10F1 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 0x2B1 SWAP1 PUSH2 0x10F1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE 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 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x772 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0x1013 JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0x10F1 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 0x427 SWAP1 PUSH2 0x10F1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 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 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xFA1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x617 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60E SWAP1 PUSH2 0xF81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x687 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67E SWAP1 PUSH2 0xF01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x765 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77E DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F8 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E1 SWAP1 PUSH2 0xF21 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F7 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x865 SWAP1 PUSH2 0xF61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D5 SWAP1 PUSH2 0xEE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA76 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x966 SWAP1 PUSH2 0xF41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA5D SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA70 DUP5 DUP5 DUP5 PUSH2 0xA7B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA8F DUP2 PUSH2 0x1192 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAA4 DUP2 PUSH2 0x11A9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xABC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xACA DUP5 DUP3 DUP6 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAF4 DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB05 DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB24 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB32 DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB43 DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB54 DUP7 DUP3 DUP8 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB7F DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB90 DUP6 DUP3 DUP7 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA3 DUP2 PUSH2 0x107B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBB4 DUP3 PUSH2 0xFF7 JUMP JUMPDEST PUSH2 0xBBE DUP2 DUP6 PUSH2 0x1002 JUMP JUMPDEST SWAP4 POP PUSH2 0xBCE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10BE JUMP JUMPDEST PUSH2 0xBD7 DUP2 PUSH2 0x1181 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBEF PUSH1 0x23 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC55 PUSH1 0x22 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCBB PUSH1 0x1D DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCFB PUSH1 0x26 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD61 PUSH1 0x25 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDC7 PUSH1 0x24 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE2D PUSH1 0x25 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE8F DUP2 PUSH2 0x10A7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xE9E DUP2 PUSH2 0x10B1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEB9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xED9 DUP2 DUP5 PUSH2 0xBA9 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEFA DUP2 PUSH2 0xBE2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF1A DUP2 PUSH2 0xC48 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF3A DUP2 PUSH2 0xCAE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF5A DUP2 PUSH2 0xCEE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF7A DUP2 PUSH2 0xD54 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF9A DUP2 PUSH2 0xDBA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFBA DUP2 PUSH2 0xE20 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFD6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE86 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFF1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE95 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x101E DUP3 PUSH2 0x10A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1029 DUP4 PUSH2 0x10A7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x105E JUMPI PUSH2 0x105D PUSH2 0x1123 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1074 DUP3 PUSH2 0x1087 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10DC JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10C1 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10EB JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1109 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x111D JUMPI PUSH2 0x111C PUSH2 0x1152 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x119B DUP2 PUSH2 0x1069 JUMP JUMPDEST DUP2 EQ PUSH2 0x11A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11B2 DUP2 PUSH2 0x10A7 JUMP JUMPDEST DUP2 EQ PUSH2 0x11BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x23 OR 0x28 CALLDATASIZE JUMPDEST EXTCODESIZE EXTCODEHASH 0xE SWAP16 0xDD DUP15 PUSH4 0x11FFF7AF SMOD EXP 0xDD JUMPI CREATE2 0xDB CODESIZE SWAP11 DUP12 0x5D DUP3 0xF COINBASE POP 0xE2 INVALID PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "143:150:4:-:0;;;174:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1976:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2050:5;2042;:13;;;;;;;;;;;;:::i;:::-;;2075:7;2065;:17;;;;;;;;;;;;:::i;:::-;;1976:113;;250:32:4::1;256:10;268:13;250:5;;;:32;;:::i;:::-;174:116:::0;143:150;;8567:535:0;8669:1;8650:21;;:7;:21;;;;8642:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8718:49;8747:1;8751:7;8760:6;8718:20;;;:49;;:::i;:::-;8794:6;8778:12;;:22;;;;;;;:::i;:::-;;;;;;;;8968:6;8946:9;:18;8956:7;8946:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;9020:7;8999:37;;9016:1;8999:37;;;9029:6;8999:37;;;;;;:::i;:::-;;;;;;;;9047:48;9075:1;9079:7;9088:6;9047:19;;;:48;;:::i;:::-;8567:535;;:::o;12180:121::-;;;;:::o;12889:120::-;;;;:::o;143:150:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:143:5:-;;95:6;89:13;80:22;;111:33;138:5;111:33;:::i;:::-;70:80;;;;:::o;156:284::-;;275:2;263:9;254:7;250:23;246:32;243:2;;;291:1;288;281:12;243:2;334:1;359:64;415:7;406:6;395:9;391:22;359:64;:::i;:::-;349:74;;305:128;233:207;;;;:::o;446:329::-;;609:67;673:2;668:3;609:67;:::i;:::-;602:74;;706:33;702:1;697:3;693:11;686:54;766:2;761:3;757:12;750:19;;592:183;;;:::o;781:118::-;868:24;886:5;868:24;:::i;:::-;863:3;856:37;846:53;;:::o;905:419::-;;1109:2;1098:9;1094:18;1086:26;;1158:9;1152:4;1148:20;1144:1;1133:9;1129:17;1122:47;1186:131;1312:4;1186:131;:::i;:::-;1178:139;;1076:248;;;:::o;1330:222::-;;1461:2;1450:9;1446:18;1438:26;;1474:71;1542:1;1531:9;1527:17;1518:6;1474:71;:::i;:::-;1428:124;;;;:::o;1558:169::-;;1676:6;1671:3;1664:19;1716:4;1711:3;1707:14;1692:29;;1654:73;;;;:::o;1733:305::-;;1792:20;1810:1;1792:20;:::i;:::-;1787:25;;1826:20;1844:1;1826:20;:::i;:::-;1821:25;;1980:1;1912:66;1908:74;1905:1;1902:81;1899:2;;;1986:18;;:::i;:::-;1899:2;2030:1;2027;2023:9;2016:16;;1777:261;;;;:::o;2044:77::-;;2110:5;2099:16;;2089:32;;;:::o;2127:320::-;;2208:1;2202:4;2198:12;2188:22;;2255:1;2249:4;2245:12;2276:18;2266:2;;2332:4;2324:6;2320:17;2310:27;;2266:2;2394;2386:6;2383:14;2363:18;2360:38;2357:2;;;2413:18;;:::i;:::-;2357:2;2178:269;;;;:::o;2453:180::-;2501:77;2498:1;2491:88;2598:4;2595:1;2588:15;2622:4;2619:1;2612:15;2639:180;2687:77;2684:1;2677:88;2784:4;2781:1;2774:15;2808:4;2805:1;2798:15;2825:122;2898:24;2916:5;2898:24;:::i;:::-;2891:5;2888:35;2878:2;;2937:1;2934;2927:12;2878:2;2868:79;:::o;143:150:4:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11680:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:5"
},
"nodeType": "YulFunctionCall",
"src": "78:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:5"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:5"
},
"nodeType": "YulFunctionCall",
"src": "107:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:5"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:5",
"type": ""
}
],
"src": "7:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:5"
},
"nodeType": "YulFunctionCall",
"src": "223:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:5"
},
"nodeType": "YulFunctionCall",
"src": "252:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:5"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:5",
"type": ""
}
],
"src": "152:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:5"
},
"nodeType": "YulFunctionCall",
"src": "411:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:5"
},
"nodeType": "YulFunctionCall",
"src": "380:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:5"
},
"nodeType": "YulFunctionCall",
"src": "376:32:5"
},
"nodeType": "YulIf",
"src": "373:2:5"
},
{
"nodeType": "YulBlock",
"src": "435:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:5"
},
"nodeType": "YulFunctionCall",
"src": "510:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:5"
},
"nodeType": "YulFunctionCall",
"src": "489:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:5",
"type": ""
}
],
"src": "297:262:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:5"
},
"nodeType": "YulFunctionCall",
"src": "696:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:5"
},
"nodeType": "YulFunctionCall",
"src": "665:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:5"
},
"nodeType": "YulFunctionCall",
"src": "661:32:5"
},
"nodeType": "YulIf",
"src": "658:2:5"
},
{
"nodeType": "YulBlock",
"src": "720:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:5"
},
"nodeType": "YulFunctionCall",
"src": "795:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:5"
},
"nodeType": "YulFunctionCall",
"src": "774:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:5"
},
"nodeType": "YulFunctionCall",
"src": "923:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:5"
},
"nodeType": "YulFunctionCall",
"src": "902:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:5",
"type": ""
}
],
"src": "565:407:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:5"
},
"nodeType": "YulIf",
"src": "1088:2:5"
},
{
"nodeType": "YulBlock",
"src": "1150:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:5",
"type": ""
}
],
"src": "978:552:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:5"
},
"nodeType": "YulIf",
"src": "1629:2:5"
},
{
"nodeType": "YulBlock",
"src": "1691:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:5",
"type": ""
}
],
"src": "1536:407:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2008:50:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2025:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2045:5:5"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2030:14:5"
},
"nodeType": "YulFunctionCall",
"src": "2030:21:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2018:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2018:34:5"
},
"nodeType": "YulExpressionStatement",
"src": "2018:34:5"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1996:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2003:3:5",
"type": ""
}
],
"src": "1949:109:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2156:272:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2166:53:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2213:5:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2180:32:5"
},
"nodeType": "YulFunctionCall",
"src": "2180:39:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2170:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2228:78:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2294:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2299:6:5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2235:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2235:71:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2228:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2341:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2348:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2337:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2337:16:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2355:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2360:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2315:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2315:52:5"
},
"nodeType": "YulExpressionStatement",
"src": "2315:52:5"
},
{
"nodeType": "YulAssignment",
"src": "2376:46:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2387:3:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2414:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2392:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2392:29:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2383:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2383:39:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2376:3:5"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2137:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2144:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2152:3:5",
"type": ""
}
],
"src": "2064:364:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2580:221:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2590:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2656:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2661:2:5",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2597:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2597:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2590:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2685:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2690:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2681:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2681:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2694:34:5",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2674:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2674:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "2674:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2750:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2755:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2746:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2746:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2760:5:5",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2739:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2739:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "2739:27:5"
},
{
"nodeType": "YulAssignment",
"src": "2776:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2787:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2792:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2783:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2783:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2776:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2568:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2576:3:5",
"type": ""
}
],
"src": "2434:367:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2953:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2963:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3029:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3034:2:5",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2970:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2970:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2963:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3058:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3063:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3054:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3054:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3067:34:5",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3047:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3047:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "3047:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3123:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3128:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3119:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3119:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3133:4:5",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3112:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3112:26:5"
},
"nodeType": "YulExpressionStatement",
"src": "3112:26:5"
},
{
"nodeType": "YulAssignment",
"src": "3148:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3159:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3164:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3155:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3155:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3148:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2941:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2949:3:5",
"type": ""
}
],
"src": "2807:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3325:181:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3335:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3401:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3406:2:5",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3342:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3342:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3335:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3430:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3435:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3426:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3426:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3439:31:5",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3419:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3419:52:5"
},
"nodeType": "YulExpressionStatement",
"src": "3419:52:5"
},
{
"nodeType": "YulAssignment",
"src": "3481:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3492:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3497:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3488:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3488:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3481:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3313:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3321:3:5",
"type": ""
}
],
"src": "3179:327:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3658:224:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3668:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3734:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3739:2:5",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3675:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3675:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3668:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3763:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3768:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3759:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3759:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3772:34:5",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3752:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3752:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "3752:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3828:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3833:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3824:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3824:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3838:8:5",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3817:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3817:30:5"
},
"nodeType": "YulExpressionStatement",
"src": "3817:30:5"
},
{
"nodeType": "YulAssignment",
"src": "3857:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3868:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3873:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3864:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3864:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3857:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3646:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3654:3:5",
"type": ""
}
],
"src": "3512:370:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4034:223:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4044:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4110:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4115:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4051:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4051:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4044:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4139:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4144:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4135:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4135:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4148:34:5",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4128:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4128:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "4128:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4204:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4209:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4200:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4200:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4214:7:5",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4193:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4193:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "4193:29:5"
},
{
"nodeType": "YulAssignment",
"src": "4232:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4243:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4248:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4239:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4239:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4232:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4022:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4030:3:5",
"type": ""
}
],
"src": "3888:369:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4409:222:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4419:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4485:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4490:2:5",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4426:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4426:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4419:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4514:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4519:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4510:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4510:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4523:34:5",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4503:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4503:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "4503:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4579:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4584:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4575:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4575:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4589:6:5",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4568:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4568:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "4568:28:5"
},
{
"nodeType": "YulAssignment",
"src": "4606:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4617:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4622:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4613:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4613:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4606:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4397:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4405:3:5",
"type": ""
}
],
"src": "4263:368:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4783:223:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4793:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4859:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4864:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4800:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4800:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4793:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4888:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4893:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4884:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4884:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4897:34:5",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4877:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4877:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "4877:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4953:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4958:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4949:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4949:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4963:7:5",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4942:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4942:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "4942:29:5"
},
{
"nodeType": "YulAssignment",
"src": "4981:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4992:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4997:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4988:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4988:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4981:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4771:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4779:3:5",
"type": ""
}
],
"src": "4637:369:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5077:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5094:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5117:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5099:17:5"
},
"nodeType": "YulFunctionCall",
"src": "5099:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5087:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5087:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "5087:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5065:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5072:3:5",
"type": ""
}
],
"src": "5012:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5197:51:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5214:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5235:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "5219:15:5"
},
"nodeType": "YulFunctionCall",
"src": "5219:22:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5207:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5207:35:5"
},
"nodeType": "YulExpressionStatement",
"src": "5207:35:5"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5185:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5192:3:5",
"type": ""
}
],
"src": "5136:112:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5346:118:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5356:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5368:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5379:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5364:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5364:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5356:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5430:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5443:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5454:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5439:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5439:17:5"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "5392:37:5"
},
"nodeType": "YulFunctionCall",
"src": "5392:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "5392:65:5"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5318:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5330:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5341:4:5",
"type": ""
}
],
"src": "5254:210:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5588:195:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5598:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5610:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5621:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5606:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5606:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5598:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5645:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5656:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5641:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5641:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5664:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5670:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5660:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5660:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5634:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5634:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "5634:47:5"
},
{
"nodeType": "YulAssignment",
"src": "5690:86:5",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5762:6:5"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5771:4:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5698:63:5"
},
"nodeType": "YulFunctionCall",
"src": "5698:78:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5690:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5560:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5572:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5583:4:5",
"type": ""
}
],
"src": "5470:313:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5960:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5970:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5982:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5993:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5978:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5978:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5970:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6017:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6028:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6013:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6013:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6036:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6042:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6032:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6032:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6006:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6006:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6006:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6062:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6196:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6070:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6070:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6062:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5940:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5955:4:5",
"type": ""
}
],
"src": "5789:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6385:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6395:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6407:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6418:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6403:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6403:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6395:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6442:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6453:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6438:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6438:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6461:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6467:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6457:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6457:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6431:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6431:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6431:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6487:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6621:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6495:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6495:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6487:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6365:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6380:4:5",
"type": ""
}
],
"src": "6214:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6810:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6820:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6832:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6843:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6828:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6828:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6820:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6867:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6878:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6863:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6863:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6886:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6892:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6882:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6882:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6856:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6856:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6856:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6912:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7046:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6920:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6920:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6912:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6790:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6805:4:5",
"type": ""
}
],
"src": "6639:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7235:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7245:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7257:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7268:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7253:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7253:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7245:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7292:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7303:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7288:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7288:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7311:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7317:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7307:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7307:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7281:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7281:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7281:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7337:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7471:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7345:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7345:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7337:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7215:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7230:4:5",
"type": ""
}
],
"src": "7064:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7660:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7670:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7682:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7693:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7678:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7678:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7670:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7717:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7728:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7713:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7713:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7736:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7742:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7732:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7732:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7706:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7706:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7706:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7762:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7896:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7770:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7770:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7762:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7640:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7655:4:5",
"type": ""
}
],
"src": "7489:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8085:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8095:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8107:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8118:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8103:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8103:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8095:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8142:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8153:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8138:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8138:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8161:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8167:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8157:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8157:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8131:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8131:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8131:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8187:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8321:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8195:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8195:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8187:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8065:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8080:4:5",
"type": ""
}
],
"src": "7914:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8510:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8520:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8532:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8543:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8528:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8528:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8520:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8567:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8578:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8563:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8563:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8586:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8592:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8582:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8582:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8556:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8556:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8556:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8612:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8746:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8620:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8620:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8612:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8490:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8505:4:5",
"type": ""
}
],
"src": "8339:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8862:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8872:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8884:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8895:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8880:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8880:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8872:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8952:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8965:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8976:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8961:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8961:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "8908:43:5"
},
"nodeType": "YulFunctionCall",
"src": "8908:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "8908:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8834:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8846:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8857:4:5",
"type": ""
}
],
"src": "8764:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9086:120:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9096:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9108:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9119:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9104:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9104:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9096:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9172:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9185:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9196:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9181:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9181:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "9132:39:5"
},
"nodeType": "YulFunctionCall",
"src": "9132:67:5"
},
"nodeType": "YulExpressionStatement",
"src": "9132:67:5"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9058:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9070:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9081:4:5",
"type": ""
}
],
"src": "8992:214:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9271:40:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9282:22:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9298:5:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9292:5:5"
},
"nodeType": "YulFunctionCall",
"src": "9292:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9282:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9254:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9264:6:5",
"type": ""
}
],
"src": "9212:99:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9413:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9430:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9435:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9423:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9423:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "9423:19:5"
},
{
"nodeType": "YulAssignment",
"src": "9451:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9470:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9475:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9466:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9466:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9451:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9385:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9390:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9401:11:5",
"type": ""
}
],
"src": "9317:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9536:261:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9546:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9569:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9551:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9551:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9546:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9580:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9603:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9585:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9585:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9580:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9743:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9745:16:5"
},
"nodeType": "YulFunctionCall",
"src": "9745:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "9745:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9664:1:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9671:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9739:1:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9667:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9667:74:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9661:2:5"
},
"nodeType": "YulFunctionCall",
"src": "9661:81:5"
},
"nodeType": "YulIf",
"src": "9658:2:5"
},
{
"nodeType": "YulAssignment",
"src": "9775:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9786:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9789:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9782:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9782:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9775:3:5"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9523:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9526:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "9532:3:5",
"type": ""
}
],
"src": "9492:305:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9848:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9858:35:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9887:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "9869:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9869:24:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9858:7:5"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9830:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9840:7:5",
"type": ""
}
],
"src": "9803:96:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9947:48:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9957:32:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9982:5:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "9975:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9975:13:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "9968:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9968:21:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9957:7:5"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9929:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9939:7:5",
"type": ""
}
],
"src": "9905:90:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10046:81:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10056:65:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10071:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10078:42:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10067:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10067:54:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10056:7:5"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10028:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10038:7:5",
"type": ""
}
],
"src": "10001:126:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10178:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10188:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "10199:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10188:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10160:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10170:7:5",
"type": ""
}
],
"src": "10133:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10259:43:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10269:27:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10284:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10291:4:5",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10280:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10280:16:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10269:7:5"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10241:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10251:7:5",
"type": ""
}
],
"src": "10216:86:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10357:258:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10367:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10376:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10371:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10436:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10461:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10466:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10457:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10457:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10480:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10485:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10476:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10476:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10470:5:5"
},
"nodeType": "YulFunctionCall",
"src": "10470:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10450:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10450:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "10450:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10397:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10400:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10394:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10394:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10408:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10410:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10419:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10422:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10415:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10415:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10410:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10390:3:5",
"statements": []
},
"src": "10386:113:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10533:76:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10583:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10588:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10579:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10579:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10597:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10572:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10572:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "10572:27:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10514:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10517:6:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10511:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10511:13:5"
},
"nodeType": "YulIf",
"src": "10508:2:5"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10339:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10344:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10349:6:5",
"type": ""
}
],
"src": "10308:307:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10672:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10682:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10696:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10702:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10692:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10692:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10682:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10713:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10743:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10749:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10739:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10739:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10717:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10790:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10804:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10818:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10826:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10814:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10814:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10804:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10770:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10763:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10763:26:5"
},
"nodeType": "YulIf",
"src": "10760:2:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10893:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10907:16:5"
},
"nodeType": "YulFunctionCall",
"src": "10907:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "10907:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10857:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10880:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10888:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10877:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10877:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10854:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10854:38:5"
},
"nodeType": "YulIf",
"src": "10851:2:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10656:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10665:6:5",
"type": ""
}
],
"src": "10621:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10975:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10992:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10995:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10985:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10985:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "10985:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11089:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11092:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11082:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11082:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11082:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11113:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11116:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11106:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11106:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11106:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "10947:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11161:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11178:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11181:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11171:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11171:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "11171:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11275:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11278:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11268:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11268:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11268:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11299:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11302:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11292:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11292:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11292:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "11133:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11367:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11377:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11395:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11402:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11391:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11391:14:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11411:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "11407:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11407:7:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11387:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11387:28:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "11377:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11350:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "11360:6:5",
"type": ""
}
],
"src": "11319:102:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11470:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11527:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11536:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11539:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11529:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11529:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "11529:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11493:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11518:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "11500:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11500:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11490:2:5"
},
"nodeType": "YulFunctionCall",
"src": "11490:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11483:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11483:43:5"
},
"nodeType": "YulIf",
"src": "11480:2:5"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11463:5:5",
"type": ""
}
],
"src": "11427:122:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11598:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11655:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11664:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11667:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11657:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11657:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "11657:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11621:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11646:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11628:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11628:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11618:2:5"
},
"nodeType": "YulFunctionCall",
"src": "11618:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11611:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11611:43:5"
},
"nodeType": "YulIf",
"src": "11608:2:5"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11591:5:5",
"type": ""
}
],
"src": "11555:122:5"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n\n mstore(add(pos, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(pos, 32), \"ess\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n\n mstore(add(pos, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(pos, 32), \"ss\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n\n mstore(add(pos, 0), \"ERC20: insufficient allowance\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n\n mstore(add(pos, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(pos, 32), \"alance\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(pos, 32), \"dress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n\n mstore(add(pos, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(pos, 32), \"ress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(pos, 32), \" zero\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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 array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function 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_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ebf565b60405180910390f35b6100e660048036038101906100e19190610b5e565b610308565b6040516100f39190610ea4565b60405180910390f35b61010461032b565b6040516101119190610fc1565b60405180910390f35b610134600480360381019061012f9190610b0f565b610335565b6040516101419190610ea4565b60405180910390f35b610152610364565b60405161015f9190610fdc565b60405180910390f35b610182600480360381019061017d9190610b5e565b61036d565b60405161018f9190610ea4565b60405180910390f35b6101b260048036038101906101ad9190610aaa565b6103a4565b6040516101bf9190610fc1565b60405180910390f35b6101d06103ec565b6040516101dd9190610ebf565b60405180910390f35b61020060048036038101906101fb9190610b5e565b61047e565b60405161020d9190610ea4565b60405180910390f35b610230600480360381019061022b9190610b5e565b6104f5565b60405161023d9190610ea4565b60405180910390f35b610260600480360381019061025b9190610ad3565b610518565b60405161026d9190610fc1565b60405180910390f35b606060038054610285906110f1565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110f1565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190611013565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb906110f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906110f1565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610fa1565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610f81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610f01565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610fc1565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190610f21565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590610f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590610ee1565b60405180910390fd5b6108e9838383610a76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690610f41565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5d9190610fc1565b60405180910390a3610a70848484610a7b565b50505050565b505050565b505050565b600081359050610a8f81611192565b92915050565b600081359050610aa4816111a9565b92915050565b600060208284031215610abc57600080fd5b6000610aca84828501610a80565b91505092915050565b60008060408385031215610ae657600080fd5b6000610af485828601610a80565b9250506020610b0585828601610a80565b9150509250929050565b600080600060608486031215610b2457600080fd5b6000610b3286828701610a80565b9350506020610b4386828701610a80565b9250506040610b5486828701610a95565b9150509250925092565b60008060408385031215610b7157600080fd5b6000610b7f85828601610a80565b9250506020610b9085828601610a95565b9150509250929050565b610ba38161107b565b82525050565b6000610bb482610ff7565b610bbe8185611002565b9350610bce8185602086016110be565b610bd781611181565b840191505092915050565b6000610bef602383611002565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610c55602283611002565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610cbb601d83611002565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000610cfb602683611002565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d61602583611002565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610dc7602483611002565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e2d602583611002565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610e8f816110a7565b82525050565b610e9e816110b1565b82525050565b6000602082019050610eb96000830184610b9a565b92915050565b60006020820190508181036000830152610ed98184610ba9565b905092915050565b60006020820190508181036000830152610efa81610be2565b9050919050565b60006020820190508181036000830152610f1a81610c48565b9050919050565b60006020820190508181036000830152610f3a81610cae565b9050919050565b60006020820190508181036000830152610f5a81610cee565b9050919050565b60006020820190508181036000830152610f7a81610d54565b9050919050565b60006020820190508181036000830152610f9a81610dba565b9050919050565b60006020820190508181036000830152610fba81610e20565b9050919050565b6000602082019050610fd66000830184610e86565b92915050565b6000602082019050610ff16000830184610e95565b92915050565b600081519050919050565b600082825260208201905092915050565b600061101e826110a7565b9150611029836110a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561105e5761105d611123565b5b828201905092915050565b600061107482611087565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156110dc5780820151818401526020810190506110c1565b838111156110eb576000848401525b50505050565b6000600282049050600182168061110957607f821691505b6020821081141561111d5761111c611152565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61119b81611069565b81146111a657600080fd5b50565b6111b2816110a7565b81146111bd57600080fd5b5056fea2646970667358221220231728365b3b3f0e9fdd8e6311fff7af070add57f5db389a8b5d820f4150e2fe64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xB0F JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xFDC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xAAA JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xAD3 JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x10F1 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 0x2B1 SWAP1 PUSH2 0x10F1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE 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 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x772 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0x1013 JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0x10F1 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 0x427 SWAP1 PUSH2 0x10F1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 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 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xFA1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x617 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60E SWAP1 PUSH2 0xF81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x687 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67E SWAP1 PUSH2 0xF01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x765 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77E DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F8 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E1 SWAP1 PUSH2 0xF21 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F7 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x865 SWAP1 PUSH2 0xF61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D5 SWAP1 PUSH2 0xEE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA76 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x966 SWAP1 PUSH2 0xF41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA5D SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA70 DUP5 DUP5 DUP5 PUSH2 0xA7B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA8F DUP2 PUSH2 0x1192 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAA4 DUP2 PUSH2 0x11A9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xABC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xACA DUP5 DUP3 DUP6 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAF4 DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB05 DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB24 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB32 DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB43 DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB54 DUP7 DUP3 DUP8 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB7F DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB90 DUP6 DUP3 DUP7 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA3 DUP2 PUSH2 0x107B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBB4 DUP3 PUSH2 0xFF7 JUMP JUMPDEST PUSH2 0xBBE DUP2 DUP6 PUSH2 0x1002 JUMP JUMPDEST SWAP4 POP PUSH2 0xBCE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10BE JUMP JUMPDEST PUSH2 0xBD7 DUP2 PUSH2 0x1181 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBEF PUSH1 0x23 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC55 PUSH1 0x22 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCBB PUSH1 0x1D DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCFB PUSH1 0x26 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD61 PUSH1 0x25 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDC7 PUSH1 0x24 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE2D PUSH1 0x25 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE8F DUP2 PUSH2 0x10A7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xE9E DUP2 PUSH2 0x10B1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEB9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xED9 DUP2 DUP5 PUSH2 0xBA9 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEFA DUP2 PUSH2 0xBE2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF1A DUP2 PUSH2 0xC48 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF3A DUP2 PUSH2 0xCAE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF5A DUP2 PUSH2 0xCEE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF7A DUP2 PUSH2 0xD54 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF9A DUP2 PUSH2 0xDBA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFBA DUP2 PUSH2 0xE20 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFD6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE86 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFF1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE95 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x101E DUP3 PUSH2 0x10A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1029 DUP4 PUSH2 0x10A7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x105E JUMPI PUSH2 0x105D PUSH2 0x1123 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1074 DUP3 PUSH2 0x1087 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10DC JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10C1 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10EB JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1109 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x111D JUMPI PUSH2 0x111C PUSH2 0x1152 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x119B DUP2 PUSH2 0x1069 JUMP JUMPDEST DUP2 EQ PUSH2 0x11A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11B2 DUP2 PUSH2 0x10A7 JUMP JUMPDEST DUP2 EQ PUSH2 0x11BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x23 OR 0x28 CALLDATASIZE JUMPDEST EXTCODESIZE EXTCODEHASH 0xE SWAP16 0xDD DUP15 PUSH4 0x11FFF7AF SMOD EXP 0xDD JUMPI CREATE2 0xDB CODESIZE SWAP11 DUP12 0x5D DUP3 0xF COINBASE POP 0xE2 INVALID PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "143:150:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3242:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5190:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3091:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5871:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3406:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2365:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6592:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3727:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3974:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:98;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;4530:13;4546:12;:10;:12::i;:::-;4530:28;;4568:32;4577:5;4584:7;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;:::o;3242:106::-;3303:7;3329:12;;3322:19;;3242:106;:::o;5190:286::-;5317:4;5333:15;5351:12;:10;:12::i;:::-;5333:30;;5373:38;5389:4;5395:7;5404:6;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;5465:4;5458:11;;;5190:286;;;;;:::o;3091:91::-;3149:5;3173:2;3166:9;;3091:91;:::o;5871:234::-;5959:4;5975:13;5991:12;:10;:12::i;:::-;5975:28;;6013:64;6022:5;6029:7;6066:10;6038:25;6048:5;6055:7;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;:::-;6094:4;6087:11;;;5871:234;;;;:::o;3406:125::-;3480:7;3506:9;:18;3516:7;3506:18;;;;;;;;;;;;;;;;3499:25;;3406:125;;;:::o;2365:102::-;2421:13;2453:7;2446:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2365:102;:::o;6592:427::-;6685:4;6701:13;6717:12;:10;:12::i;:::-;6701:28;;6739:24;6766:25;6776:5;6783:7;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;:::-;7008:4;7001:11;;;;6592:427;;;;:::o;3727:189::-;3806:4;3822:13;3838:12;:10;:12::i;:::-;3822:28;;3860;3870:5;3877:2;3881:6;3860:9;:28::i;:::-;3905:4;3898:11;;;3727:189;;;;:::o;3974:149::-;4063:7;4089:11;:18;4101:5;4089:18;;;;;;;;;;;;;;;:27;4108:7;4089:27;;;;;;;;;;;;;;;;4082:34;;3974:149;;;;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;10504:370:0:-;10652:1;10635:19;;:5;:19;;;;10627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10732:1;10713:21;;:7;:21;;;;10705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10814:6;10784:11;:18;10796:5;10784:18;;;;;;;;;;;;;;;:27;10803:7;10784:27;;;;;;;;;;;;;;;:36;;;;10851:7;10835:32;;10844:5;10835:32;;;10860:6;10835:32;;;;;;:::i;:::-;;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;11371:17;11351:16;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11347:243;11155:441;;;;:::o;7473:818::-;7615:1;7599:18;;:4;:18;;;;7591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7691:1;7677:16;;:2;:16;;;;7669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;7793:19;7815:9;:15;7825:4;7815:15;;;;;;;;;;;;;;;;7793:37;;7863:6;7848:11;:21;;7840:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7978:6;7964:11;:20;7946:9;:15;7956:4;7946:15;;;;;;;;;;;;;;;:38;;;;8178:6;8161:9;:13;8171:2;8161:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8225:2;8210:26;;8219:4;8210:26;;;8229:6;8210:26;;;;;;:::i;:::-;;;;;;;;8247:37;8267:4;8273:2;8277:6;8247:19;:37::i;:::-;7473:818;;;;:::o;12180:121::-;;;;:::o;12889:120::-;;;;:::o;7:139:5:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:367::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2694:34;2690:1;2685:3;2681:11;2674:55;2760:5;2755:2;2750:3;2746:12;2739:27;2792:2;2787:3;2783:12;2776:19;;2580:221;;;:::o;2807:366::-;;2970:67;3034:2;3029:3;2970:67;:::i;:::-;2963:74;;3067:34;3063:1;3058:3;3054:11;3047:55;3133:4;3128:2;3123:3;3119:12;3112:26;3164:2;3159:3;3155:12;3148:19;;2953:220;;;:::o;3179:327::-;;3342:67;3406:2;3401:3;3342:67;:::i;:::-;3335:74;;3439:31;3435:1;3430:3;3426:11;3419:52;3497:2;3492:3;3488:12;3481:19;;3325:181;;;:::o;3512:370::-;;3675:67;3739:2;3734:3;3675:67;:::i;:::-;3668:74;;3772:34;3768:1;3763:3;3759:11;3752:55;3838:8;3833:2;3828:3;3824:12;3817:30;3873:2;3868:3;3864:12;3857:19;;3658:224;;;:::o;3888:369::-;;4051:67;4115:2;4110:3;4051:67;:::i;:::-;4044:74;;4148:34;4144:1;4139:3;4135:11;4128:55;4214:7;4209:2;4204:3;4200:12;4193:29;4248:2;4243:3;4239:12;4232:19;;4034:223;;;:::o;4263:368::-;;4426:67;4490:2;4485:3;4426:67;:::i;:::-;4419:74;;4523:34;4519:1;4514:3;4510:11;4503:55;4589:6;4584:2;4579:3;4575:12;4568:28;4622:2;4617:3;4613:12;4606:19;;4409:222;;;:::o;4637:369::-;;4800:67;4864:2;4859:3;4800:67;:::i;:::-;4793:74;;4897:34;4893:1;4888:3;4884:11;4877:55;4963:7;4958:2;4953:3;4949:12;4942:29;4997:2;4992:3;4988:12;4981:19;;4783:223;;;:::o;5012:118::-;5099:24;5117:5;5099:24;:::i;:::-;5094:3;5087:37;5077:53;;:::o;5136:112::-;5219:22;5235:5;5219:22;:::i;:::-;5214:3;5207:35;5197:51;;:::o;5254:210::-;;5379:2;5368:9;5364:18;5356:26;;5392:65;5454:1;5443:9;5439:17;5430:6;5392:65;:::i;:::-;5346:118;;;;:::o;5470:313::-;;5621:2;5610:9;5606:18;5598:26;;5670:9;5664:4;5660:20;5656:1;5645:9;5641:17;5634:47;5698:78;5771:4;5762:6;5698:78;:::i;:::-;5690:86;;5588:195;;;;:::o;5789:419::-;;5993:2;5982:9;5978:18;5970:26;;6042:9;6036:4;6032:20;6028:1;6017:9;6013:17;6006:47;6070:131;6196:4;6070:131;:::i;:::-;6062:139;;5960:248;;;:::o;6214:419::-;;6418:2;6407:9;6403:18;6395:26;;6467:9;6461:4;6457:20;6453:1;6442:9;6438:17;6431:47;6495:131;6621:4;6495:131;:::i;:::-;6487:139;;6385:248;;;:::o;6639:419::-;;6843:2;6832:9;6828:18;6820:26;;6892:9;6886:4;6882:20;6878:1;6867:9;6863:17;6856:47;6920:131;7046:4;6920:131;:::i;:::-;6912:139;;6810:248;;;:::o;7064:419::-;;7268:2;7257:9;7253:18;7245:26;;7317:9;7311:4;7307:20;7303:1;7292:9;7288:17;7281:47;7345:131;7471:4;7345:131;:::i;:::-;7337:139;;7235:248;;;:::o;7489:419::-;;7693:2;7682:9;7678:18;7670:26;;7742:9;7736:4;7732:20;7728:1;7717:9;7713:17;7706:47;7770:131;7896:4;7770:131;:::i;:::-;7762:139;;7660:248;;;:::o;7914:419::-;;8118:2;8107:9;8103:18;8095:26;;8167:9;8161:4;8157:20;8153:1;8142:9;8138:17;8131:47;8195:131;8321:4;8195:131;:::i;:::-;8187:139;;8085:248;;;:::o;8339:419::-;;8543:2;8532:9;8528:18;8520:26;;8592:9;8586:4;8582:20;8578:1;8567:9;8563:17;8556:47;8620:131;8746:4;8620:131;:::i;:::-;8612:139;;8510:248;;;:::o;8764:222::-;;8895:2;8884:9;8880:18;8872:26;;8908:71;8976:1;8965:9;8961:17;8952:6;8908:71;:::i;:::-;8862:124;;;;:::o;8992:214::-;;9119:2;9108:9;9104:18;9096:26;;9132:67;9196:1;9185:9;9181:17;9172:6;9132:67;:::i;:::-;9086:120;;;;:::o;9212:99::-;;9298:5;9292:12;9282:22;;9271:40;;;:::o;9317:169::-;;9435:6;9430:3;9423:19;9475:4;9470:3;9466:14;9451:29;;9413:73;;;;:::o;9492:305::-;;9551:20;9569:1;9551:20;:::i;:::-;9546:25;;9585:20;9603:1;9585:20;:::i;:::-;9580:25;;9739:1;9671:66;9667:74;9664:1;9661:81;9658:2;;;9745:18;;:::i;:::-;9658:2;9789:1;9786;9782:9;9775:16;;9536:261;;;;:::o;9803:96::-;;9869:24;9887:5;9869:24;:::i;:::-;9858:35;;9848:51;;;:::o;9905:90::-;;9982:5;9975:13;9968:21;9957:32;;9947:48;;;:::o;10001:126::-;;10078:42;10071:5;10067:54;10056:65;;10046:81;;;:::o;10133:77::-;;10199:5;10188:16;;10178:32;;;:::o;10216:86::-;;10291:4;10284:5;10280:16;10269:27;;10259:43;;;:::o;10308:307::-;10376:1;10386:113;10400:6;10397:1;10394:13;10386:113;;;10485:1;10480:3;10476:11;10470:18;10466:1;10461:3;10457:11;10450:39;10422:2;10419:1;10415:10;10410:15;;10386:113;;;10517:6;10514:1;10511:13;10508:2;;;10597:1;10588:6;10583:3;10579:16;10572:27;10508:2;10357:258;;;;:::o;10621:320::-;;10702:1;10696:4;10692:12;10682:22;;10749:1;10743:4;10739:12;10770:18;10760:2;;10826:4;10818:6;10814:17;10804:27;;10760:2;10888;10880:6;10877:14;10857:18;10854:38;10851:2;;;10907:18;;:::i;:::-;10851:2;10672:269;;;;:::o;10947:180::-;10995:77;10992:1;10985:88;11092:4;11089:1;11082:15;11116:4;11113:1;11106:15;11133:180;11181:77;11178:1;11171:88;11278:4;11275:1;11268:15;11302:4;11299:1;11292:15;11319:102;;11411:2;11407:7;11402:2;11395:5;11391:14;11387:28;11377:38;;11367:54;;;:::o;11427:122::-;11500:24;11518:5;11500:24;:::i;:::-;11493:5;11490:35;11480:2;;11539:1;11536;11529:12;11480:2;11470:79;:::o;11555:122::-;11628:24;11646:5;11628:24;:::i;:::-;11621:5;11618:35;11608:2;;11667:1;11664;11657:12;11608:2;11598:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "919600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1563",
"decimals()": "432",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "1182",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "initialSupply",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "initialSupply",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/bep20.sol": "BEP20"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x4ffc0547c02ad22925310c585c0f166f8759e2648a09e9b489100c42f15dd98d",
"license": "MIT",
"urls": [
"bzz-raw://15f52f51413a9de1ff191e2f6367c62178e1df7806d7880fe857a98b0b66253d",
"dweb:/ipfs/QmaQG1fwfgUt5E9nu2cccFiV47B2V78MM1tCy1qB7n4MsH"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b",
"license": "MIT",
"urls": [
"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34",
"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"contracts/bep20.sol": {
"keccak256": "0xd53388e9fc2499c6332d3c6c634e317a345a1a64653122667fd48a1571c517d5",
"license": "MIT",
"urls": [
"bzz-raw://090526c168bcc7e3ebf03e4f039050a1de4c8085862bce4d0a4c343d65ca1a4b",
"dweb:/ipfs/QmYquqLWgDZS5H28LT3WVBw6FhAt1xx595vtgjUkWXVPag"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"id": "b69df9d49342299d0192fe8230bae734",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.0",
"solcLongVersion": "0.8.0+commit.c7dfd78e",
"input": {
"language": "Solidity",
"sources": {
"contracts/bep20.sol": {
"content": "// contracts/BEP20.sol\r\n// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.0;\r\n\r\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\r\n\r\ncontract BEP20 is ERC20 {\r\n constructor(uint256 initialSupply) ERC20(\"BRUNEISPARK\", \"SPARK\") {\r\n _mint(msg.sender, initialSupply);\r\n }\r\n}"
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * The default value of {decimals} is 18. To select a different value for\n * {decimals} you should overload it.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the value {ERC20} uses, unless this function is\n * overridden;\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(\n address from,\n address to,\n uint256 amount\n ) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `amount` of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(\n address owner,\n address spender,\n uint256 amount\n ) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(\n address owner,\n address spender,\n uint256 amount\n ) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {}\n}\n"
},
"@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 amount\n ) external returns (bool);\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": {
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"ERC20": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC20} interface. This implementation is agnostic to the way tokens are created. This means that a supply mechanism has to be added in a derived contract using {_mint}. For a generic mechanism see {ERC20PresetMinterPauser}. TIP: For a detailed writeup see our guide https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How to implement supply mechanisms]. We have followed general OpenZeppelin Contracts guidelines: functions revert instead returning `false` on failure. This behavior is nonetheless conventional and does not conflict with the expectations of ERC20 applications. Additionally, an {Approval} event is emitted on calls to {transferFrom}. This allows applications to reconstruct the allowance for all accounts just by listening to said events. Other implementations of the EIP may not emit these events, as it isn't required by the specification. Finally, the non-standard {decreaseAllowance} and {increaseAllowance} functions have been added to mitigate the well-known issues around setting allowances. See {IERC20-approve}.",
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. The default value of {decimals} is 18. To select a different value for {decimals} you should overload it. All two of these values are immutable: they can only be set once during construction."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1401:13011 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n mstore(0x40, 0x80)\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1976:2089 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2050:2055 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2042:2047 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2042:2055 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2075:2082 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2065:2072 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2065:2082 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1976:2089 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1401:13011 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n jump(tag_9)\ntag_7:\n dup3\n dup1\n sload\n tag_10\n swap1\n tag_11\n jump\t// in\ntag_10:\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_13\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_12)\ntag_13:\n dup3\n 0x1f\n lt\n tag_14\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_12)\ntag_14:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_12\n jumpi\n swap2\n dup3\n add\ntag_15:\n dup3\n dup2\n gt\n iszero\n tag_16\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_15)\ntag_16:\ntag_12:\n pop\n swap1\n pop\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\ntag_17:\n pop\n swap1\n jump\t// out\ntag_18:\ntag_19:\n dup1\n dup3\n gt\n iszero\n tag_20\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_19)\ntag_20:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:360 */\ntag_22:\n 0x00\n /* \"#utility.yul\":121:186 */\n tag_24\n /* \"#utility.yul\":136:185 */\n tag_25\n /* \"#utility.yul\":178:184 */\n dup5\n /* \"#utility.yul\":136:185 */\n tag_26\n jump\t// in\ntag_25:\n /* \"#utility.yul\":121:186 */\n tag_27\n jump\t// in\ntag_24:\n /* \"#utility.yul\":112:186 */\n swap1\n pop\n /* \"#utility.yul\":209:215 */\n dup3\n /* \"#utility.yul\":202:207 */\n dup2\n /* \"#utility.yul\":195:216 */\n mstore\n /* \"#utility.yul\":247:251 */\n 0x20\n /* \"#utility.yul\":240:245 */\n dup2\n /* \"#utility.yul\":236:252 */\n add\n /* \"#utility.yul\":285:288 */\n dup5\n /* \"#utility.yul\":276:282 */\n dup5\n /* \"#utility.yul\":271:274 */\n dup5\n /* \"#utility.yul\":267:283 */\n add\n /* \"#utility.yul\":264:289 */\n gt\n /* \"#utility.yul\":261:263 */\n iszero\n tag_28\n jumpi\n /* \"#utility.yul\":302:303 */\n 0x00\n /* \"#utility.yul\":299:300 */\n dup1\n /* \"#utility.yul\":292:304 */\n revert\n /* \"#utility.yul\":261:263 */\ntag_28:\n /* \"#utility.yul\":315:354 */\n tag_29\n /* \"#utility.yul\":347:353 */\n dup5\n /* \"#utility.yul\":342:345 */\n dup3\n /* \"#utility.yul\":337:340 */\n dup6\n /* \"#utility.yul\":315:354 */\n tag_30\n jump\t// in\ntag_29:\n /* \"#utility.yul\":102:360 */\n pop\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":380:668 */\ntag_31:\n 0x00\n /* \"#utility.yul\":496:499 */\n dup3\n /* \"#utility.yul\":489:493 */\n 0x1f\n /* \"#utility.yul\":481:487 */\n dup4\n /* \"#utility.yul\":477:494 */\n add\n /* \"#utility.yul\":473:500 */\n slt\n /* \"#utility.yul\":463:465 */\n tag_33\n jumpi\n /* \"#utility.yul\":514:515 */\n 0x00\n /* \"#utility.yul\":511:512 */\n dup1\n /* \"#utility.yul\":504:516 */\n revert\n /* \"#utility.yul\":463:465 */\ntag_33:\n /* \"#utility.yul\":547:553 */\n dup2\n /* \"#utility.yul\":541:554 */\n mload\n /* \"#utility.yul\":572:662 */\n tag_34\n /* \"#utility.yul\":658:661 */\n dup5\n /* \"#utility.yul\":650:656 */\n dup3\n /* \"#utility.yul\":643:647 */\n 0x20\n /* \"#utility.yul\":635:641 */\n dup7\n /* \"#utility.yul\":631:648 */\n add\n /* \"#utility.yul\":572:662 */\n tag_22\n jump\t// in\ntag_34:\n /* \"#utility.yul\":563:662 */\n swap2\n pop\n /* \"#utility.yul\":453:668 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":674:1326 */\ntag_3:\n 0x00\n dup1\n /* \"#utility.yul\":830:832 */\n 0x40\n /* \"#utility.yul\":818:827 */\n dup4\n /* \"#utility.yul\":809:816 */\n dup6\n /* \"#utility.yul\":805:828 */\n sub\n /* \"#utility.yul\":801:833 */\n slt\n /* \"#utility.yul\":798:800 */\n iszero\n tag_36\n jumpi\n /* \"#utility.yul\":846:847 */\n 0x00\n /* \"#utility.yul\":843:844 */\n dup1\n /* \"#utility.yul\":836:848 */\n revert\n /* \"#utility.yul\":798:800 */\ntag_36:\n /* \"#utility.yul\":910:911 */\n 0x00\n /* \"#utility.yul\":899:908 */\n dup4\n /* \"#utility.yul\":895:912 */\n add\n /* \"#utility.yul\":889:913 */\n mload\n /* \"#utility.yul\":940:958 */\n 0xffffffffffffffff\n /* \"#utility.yul\":932:938 */\n dup2\n /* \"#utility.yul\":929:959 */\n gt\n /* \"#utility.yul\":926:928 */\n iszero\n tag_37\n jumpi\n /* \"#utility.yul\":972:973 */\n 0x00\n /* \"#utility.yul\":969:970 */\n dup1\n /* \"#utility.yul\":962:974 */\n revert\n /* \"#utility.yul\":926:928 */\ntag_37:\n /* \"#utility.yul\":1000:1074 */\n tag_38\n /* \"#utility.yul\":1066:1073 */\n dup6\n /* \"#utility.yul\":1057:1063 */\n dup3\n /* \"#utility.yul\":1046:1055 */\n dup7\n /* \"#utility.yul\":1042:1064 */\n add\n /* \"#utility.yul\":1000:1074 */\n tag_31\n jump\t// in\ntag_38:\n /* \"#utility.yul\":990:1074 */\n swap3\n pop\n /* \"#utility.yul\":860:1084 */\n pop\n /* \"#utility.yul\":1144:1146 */\n 0x20\n /* \"#utility.yul\":1133:1142 */\n dup4\n /* \"#utility.yul\":1129:1147 */\n add\n /* \"#utility.yul\":1123:1148 */\n mload\n /* \"#utility.yul\":1175:1193 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1167:1173 */\n dup2\n /* \"#utility.yul\":1164:1194 */\n gt\n /* \"#utility.yul\":1161:1163 */\n iszero\n tag_39\n jumpi\n /* \"#utility.yul\":1207:1208 */\n 0x00\n /* \"#utility.yul\":1204:1205 */\n dup1\n /* \"#utility.yul\":1197:1209 */\n revert\n /* \"#utility.yul\":1161:1163 */\ntag_39:\n /* \"#utility.yul\":1235:1309 */\n tag_40\n /* \"#utility.yul\":1301:1308 */\n dup6\n /* \"#utility.yul\":1292:1298 */\n dup3\n /* \"#utility.yul\":1281:1290 */\n dup7\n /* \"#utility.yul\":1277:1299 */\n add\n /* \"#utility.yul\":1235:1309 */\n tag_31\n jump\t// in\ntag_40:\n /* \"#utility.yul\":1225:1309 */\n swap2\n pop\n /* \"#utility.yul\":1094:1319 */\n pop\n /* \"#utility.yul\":788:1326 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1332:1615 */\ntag_27:\n 0x00\n /* \"#utility.yul\":1398:1400 */\n 0x40\n /* \"#utility.yul\":1392:1401 */\n mload\n /* \"#utility.yul\":1382:1401 */\n swap1\n pop\n /* \"#utility.yul\":1440:1444 */\n dup2\n /* \"#utility.yul\":1432:1438 */\n dup2\n /* \"#utility.yul\":1428:1445 */\n add\n /* \"#utility.yul\":1547:1553 */\n dup2\n /* \"#utility.yul\":1535:1545 */\n dup2\n /* \"#utility.yul\":1532:1554 */\n lt\n /* \"#utility.yul\":1511:1529 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1499:1509 */\n dup3\n /* \"#utility.yul\":1496:1530 */\n gt\n /* \"#utility.yul\":1493:1555 */\n or\n /* \"#utility.yul\":1490:1492 */\n iszero\n tag_42\n jumpi\n /* \"#utility.yul\":1558:1576 */\n tag_43\n tag_44\n jump\t// in\ntag_43:\n /* \"#utility.yul\":1490:1492 */\ntag_42:\n /* \"#utility.yul\":1598:1608 */\n dup1\n /* \"#utility.yul\":1594:1596 */\n 0x40\n /* \"#utility.yul\":1587:1609 */\n mstore\n /* \"#utility.yul\":1372:1615 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1621:1953 */\ntag_26:\n 0x00\n /* \"#utility.yul\":1773:1791 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1765:1771 */\n dup3\n /* \"#utility.yul\":1762:1792 */\n gt\n /* \"#utility.yul\":1759:1761 */\n iszero\n tag_46\n jumpi\n /* \"#utility.yul\":1795:1813 */\n tag_47\n tag_44\n jump\t// in\ntag_47:\n /* \"#utility.yul\":1759:1761 */\ntag_46:\n /* \"#utility.yul\":1880:1884 */\n 0x1f\n /* \"#utility.yul\":1876:1885 */\n not\n /* \"#utility.yul\":1869:1873 */\n 0x1f\n /* \"#utility.yul\":1861:1867 */\n dup4\n /* \"#utility.yul\":1857:1874 */\n add\n /* \"#utility.yul\":1853:1886 */\n and\n /* \"#utility.yul\":1845:1886 */\n swap1\n pop\n /* \"#utility.yul\":1941:1945 */\n 0x20\n /* \"#utility.yul\":1935:1939 */\n dup2\n /* \"#utility.yul\":1931:1946 */\n add\n /* \"#utility.yul\":1923:1946 */\n swap1\n pop\n /* \"#utility.yul\":1688:1953 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1959:2266 */\ntag_30:\n /* \"#utility.yul\":2027:2028 */\n 0x00\n /* \"#utility.yul\":2037:2150 */\ntag_49:\n /* \"#utility.yul\":2051:2057 */\n dup4\n /* \"#utility.yul\":2048:2049 */\n dup2\n /* \"#utility.yul\":2045:2058 */\n lt\n /* \"#utility.yul\":2037:2150 */\n iszero\n tag_51\n jumpi\n /* \"#utility.yul\":2136:2137 */\n dup1\n /* \"#utility.yul\":2131:2134 */\n dup3\n /* \"#utility.yul\":2127:2138 */\n add\n /* \"#utility.yul\":2121:2139 */\n mload\n /* \"#utility.yul\":2117:2118 */\n dup2\n /* \"#utility.yul\":2112:2115 */\n dup5\n /* \"#utility.yul\":2108:2119 */\n add\n /* \"#utility.yul\":2101:2140 */\n mstore\n /* \"#utility.yul\":2073:2075 */\n 0x20\n /* \"#utility.yul\":2070:2071 */\n dup2\n /* \"#utility.yul\":2066:2076 */\n add\n /* \"#utility.yul\":2061:2076 */\n swap1\n pop\n /* \"#utility.yul\":2037:2150 */\n jump(tag_49)\ntag_51:\n /* \"#utility.yul\":2168:2174 */\n dup4\n /* \"#utility.yul\":2165:2166 */\n dup2\n /* \"#utility.yul\":2162:2175 */\n gt\n /* \"#utility.yul\":2159:2161 */\n iszero\n tag_52\n jumpi\n /* \"#utility.yul\":2248:2249 */\n 0x00\n /* \"#utility.yul\":2239:2245 */\n dup5\n /* \"#utility.yul\":2234:2237 */\n dup5\n /* \"#utility.yul\":2230:2246 */\n add\n /* \"#utility.yul\":2223:2250 */\n mstore\n /* \"#utility.yul\":2159:2161 */\ntag_52:\n /* \"#utility.yul\":2008:2266 */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2272:2592 */\ntag_11:\n 0x00\n /* \"#utility.yul\":2353:2354 */\n 0x02\n /* \"#utility.yul\":2347:2351 */\n dup3\n /* \"#utility.yul\":2343:2355 */\n div\n /* \"#utility.yul\":2333:2355 */\n swap1\n pop\n /* \"#utility.yul\":2400:2401 */\n 0x01\n /* \"#utility.yul\":2394:2398 */\n dup3\n /* \"#utility.yul\":2390:2402 */\n and\n /* \"#utility.yul\":2421:2439 */\n dup1\n /* \"#utility.yul\":2411:2413 */\n tag_54\n jumpi\n /* \"#utility.yul\":2477:2481 */\n 0x7f\n /* \"#utility.yul\":2469:2475 */\n dup3\n /* \"#utility.yul\":2465:2482 */\n and\n /* \"#utility.yul\":2455:2482 */\n swap2\n pop\n /* \"#utility.yul\":2411:2413 */\ntag_54:\n /* \"#utility.yul\":2539:2541 */\n 0x20\n /* \"#utility.yul\":2531:2537 */\n dup3\n /* \"#utility.yul\":2528:2542 */\n lt\n /* \"#utility.yul\":2508:2526 */\n dup2\n /* \"#utility.yul\":2505:2543 */\n eq\n /* \"#utility.yul\":2502:2504 */\n iszero\n tag_55\n jumpi\n /* \"#utility.yul\":2558:2576 */\n tag_56\n tag_57\n jump\t// in\ntag_56:\n /* \"#utility.yul\":2502:2504 */\ntag_55:\n /* \"#utility.yul\":2323:2592 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2598:2778 */\ntag_57:\n /* \"#utility.yul\":2646:2723 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2643:2644 */\n 0x00\n /* \"#utility.yul\":2636:2724 */\n mstore\n /* \"#utility.yul\":2743:2747 */\n 0x22\n /* \"#utility.yul\":2740:2741 */\n 0x04\n /* \"#utility.yul\":2733:2748 */\n mstore\n /* \"#utility.yul\":2767:2771 */\n 0x24\n /* \"#utility.yul\":2764:2765 */\n 0x00\n /* \"#utility.yul\":2757:2772 */\n revert\n /* \"#utility.yul\":2784:2964 */\ntag_44:\n /* \"#utility.yul\":2832:2909 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2829:2830 */\n 0x00\n /* \"#utility.yul\":2822:2910 */\n mstore\n /* \"#utility.yul\":2929:2933 */\n 0x41\n /* \"#utility.yul\":2926:2927 */\n 0x04\n /* \"#utility.yul\":2919:2934 */\n mstore\n /* \"#utility.yul\":2953:2957 */\n 0x24\n /* \"#utility.yul\":2950:2951 */\n 0x00\n /* \"#utility.yul\":2943:2958 */\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1401:13011 contract ERC20 is Context, IERC20, IERC20Metadata {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1401:13011 contract ERC20 is Context, IERC20, IERC20Metadata {... */\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 0x39509351\n gt\n tag_14\n jumpi\n dup1\n 0x39509351\n eq\n tag_8\n jumpi\n dup1\n 0x70a08231\n eq\n tag_9\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_10\n jumpi\n dup1\n 0xa457c2d7\n eq\n tag_11\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_12\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_13\n jumpi\n jump(tag_2)\n tag_14:\n dup1\n 0x06fdde03\n eq\n tag_3\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_4\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_5\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_6\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n tag_3:\n tag_15\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_4:\n tag_19\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_20\n swap2\n swap1\n tag_21\n jump\t// in\n tag_20:\n tag_22\n jump\t// in\n tag_19:\n mload(0x40)\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n tag_5:\n tag_25\n tag_26\n jump\t// in\n tag_25:\n mload(0x40)\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5190:5476 function transferFrom(... */\n tag_6:\n tag_29\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n tag_32\n jump\t// in\n tag_29:\n mload(0x40)\n tag_33\n swap2\n swap1\n tag_24\n jump\t// in\n tag_33:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3091:3182 function decimals() public view virtual override returns (uint8) {... */\n tag_7:\n tag_34\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5871:6105 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_8:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_21\n jump\t// in\n tag_39:\n tag_40\n jump\t// in\n tag_38:\n mload(0x40)\n tag_41\n swap2\n swap1\n tag_24\n jump\t// in\n tag_41:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3406:3531 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_9:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_44\n jump\t// in\n tag_43:\n tag_45\n jump\t// in\n tag_42:\n mload(0x40)\n tag_46\n swap2\n swap1\n tag_28\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2365:2467 function symbol() public view virtual override returns (string memory) {... */\n tag_10:\n tag_47\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n tag_49\n swap2\n swap1\n tag_18\n jump\t// in\n tag_49:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6592:7019 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_11:\n tag_50\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_51\n swap2\n swap1\n tag_21\n jump\t// in\n tag_51:\n tag_52\n jump\t// in\n tag_50:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_24\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3727:3916 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_12:\n tag_54\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_55\n swap2\n swap1\n tag_21\n jump\t// in\n tag_55:\n tag_56\n jump\t// in\n tag_54:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_24\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_13:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n mload(0x40)\n tag_62\n swap2\n swap1\n tag_28\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n tag_16:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2208:2221 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2240:2245 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2233:2245 return _name */\n dup1\n sload\n tag_64\n swap1\n tag_65\n jump\t// in\n tag_64:\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_66\n swap1\n tag_65\n jump\t// in\n tag_66:\n dup1\n iszero\n tag_67\n jumpi\n dup1\n 0x1f\n lt\n tag_68\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_67)\n tag_68:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_69:\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_69\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_67:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_22:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4514:4518 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4530:4543 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4546:4558 _msgSender() */\n tag_71\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4546:4556 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4546:4558 _msgSender() */\n jump\t// in\n tag_71:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4530:4558 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4568:4600 _approve(owner, spender, amount) */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4577:4582 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4584:4591 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4593:4599 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4568:4576 _approve */\n tag_74\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4568:4600 _approve(owner, spender, amount) */\n jump\t// in\n tag_73:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4617:4621 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4610:4621 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n tag_26:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3303:3310 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3329:3341 _totalSupply */\n sload(0x02)\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3322:3341 return _totalSupply */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5190:5476 function transferFrom(... */\n tag_32:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5317:5321 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5333:5348 address spender */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5351:5363 _msgSender() */\n tag_77\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5351:5361 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5351:5363 _msgSender() */\n jump\t// in\n tag_77:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5333:5363 address spender = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5373:5411 _spendAllowance(from, spender, amount) */\n tag_78\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5389:5393 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5395:5402 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5404:5410 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5373:5388 _spendAllowance */\n tag_79\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5373:5411 _spendAllowance(from, spender, amount) */\n jump\t// in\n tag_78:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5421:5448 _transfer(from, to, amount) */\n tag_80\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5431:5435 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5437:5439 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5441:5447 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5421:5430 _transfer */\n tag_81\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5421:5448 _transfer(from, to, amount) */\n jump\t// in\n tag_80:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5465:5469 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5458:5469 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5190:5476 function transferFrom(... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3091:3182 function decimals() public view virtual override returns (uint8) {... */\n tag_35:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3149:3154 uint8 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3173:3175 18 */\n 0x12\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3166:3175 return 18 */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3091:3182 function decimals() public view virtual override returns (uint8) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5871:6105 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_40:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5959:5963 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5975:5988 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5991:6003 _msgSender() */\n tag_84\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5991:6001 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5991:6003 _msgSender() */\n jump\t// in\n tag_84:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5975:6003 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6013:6077 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n tag_85\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6022:6027 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6029:6036 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6066:6076 addedValue */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6038:6063 allowance(owner, spender) */\n tag_86\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6048:6053 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6055:6062 spender */\n dup10\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6038:6047 allowance */\n tag_61\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6038:6063 allowance(owner, spender) */\n jump\t// in\n tag_86:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6038:6076 allowance(owner, spender) + addedValue */\n tag_87\n swap2\n swap1\n tag_88\n jump\t// in\n tag_87:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6013:6021 _approve */\n tag_74\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6013:6077 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n jump\t// in\n tag_85:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6094:6098 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6087:6098 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":5871:6105 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3406:3531 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_45:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3480:3487 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3506:3515 _balances */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3506:3524 _balances[account] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3516:3523 account */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3506:3524 _balances[account] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3499:3524 return _balances[account] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3406:3531 function balanceOf(address account) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2365:2467 function symbol() public view virtual override returns (string memory) {... */\n tag_48:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2421:2434 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2453:2460 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2446:2460 return _symbol */\n dup1\n sload\n tag_91\n swap1\n tag_65\n jump\t// in\n tag_91:\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_92\n swap1\n tag_65\n jump\t// in\n tag_92:\n dup1\n iszero\n tag_93\n jumpi\n dup1\n 0x1f\n lt\n tag_94\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_93)\n tag_94:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_95:\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_95\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_93:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":2365:2467 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6592:7019 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_52:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6685:6689 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6701:6714 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6717:6729 _msgSender() */\n tag_97\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6717:6727 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6717:6729 _msgSender() */\n jump\t// in\n tag_97:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6701:6729 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6739:6763 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6766:6791 allowance(owner, spender) */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6776:6781 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6783:6790 spender */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6766:6775 allowance */\n tag_61\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6766:6791 allowance(owner, spender) */\n jump\t// in\n tag_98:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6739:6791 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6829:6844 subtractedValue */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6809:6825 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6809:6844 currentAllowance >= subtractedValue */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6801:6886 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_99\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_100\n swap1\n tag_101\n jump\t// in\n tag_100:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_99:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6920:6980 _approve(owner, spender, currentAllowance - subtractedValue) */\n tag_102\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6929:6934 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6936:6943 spender */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6964:6979 subtractedValue */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6945:6961 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6945:6979 currentAllowance - subtractedValue */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6920:6928 _approve */\n tag_74\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6920:6980 _approve(owner, spender, currentAllowance - subtractedValue) */\n jump\t// in\n tag_102:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7008:7012 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7001:7012 return true */\n swap3\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6592:7019 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3727:3916 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_56:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3806:3810 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3822:3835 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3838:3850 _msgSender() */\n tag_104\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3838:3848 _msgSender */\n tag_72\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3838:3850 _msgSender() */\n jump\t// in\n tag_104:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3822:3850 address owner = _msgSender() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3860:3888 _transfer(owner, to, amount) */\n tag_105\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3870:3875 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3877:3879 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3881:3887 amount */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3860:3869 _transfer */\n tag_81\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3860:3888 _transfer(owner, to, amount) */\n jump\t// in\n tag_105:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3905:3909 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3898:3909 return true */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3727:3916 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_61:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4063:4070 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4089:4100 _allowances */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4089:4107 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4101:4106 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4089:4107 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4089:4116 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4108:4115 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4089:4116 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":4082:4116 return _allowances[owner][spender] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_72:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10504:10874 function _approve(... */\n tag_74:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10652:10653 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10635:10654 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10635:10640 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10635:10654 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10627:10695 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_109\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_110\n swap1\n tag_111\n jump\t// in\n tag_110:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_109:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10732:10733 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10713:10734 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10713:10720 spender */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10713:10734 spender != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10705:10773 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_112\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_113\n swap1\n tag_114\n jump\t// in\n tag_113:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_112:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10814:10820 amount */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10784:10795 _allowances */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10784:10802 _allowances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10796:10801 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10784:10802 _allowances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10784:10811 _allowances[owner][spender] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10803:10810 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10784:10811 _allowances[owner][spender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10784:10820 _allowances[owner][spender] = amount */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10851:10858 spender */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10835:10867 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10844:10849 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10835:10867 Approval(owner, spender, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10860:10866 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10835:10867 Approval(owner, spender, amount) */\n mload(0x40)\n tag_115\n swap2\n swap1\n tag_28\n jump\t// in\n tag_115:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":10504:10874 function _approve(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11155:11596 function _spendAllowance(... */\n tag_79:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11285:11309 uint256 currentAllowance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11312:11337 allowance(owner, spender) */\n tag_117\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11322:11327 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11329:11336 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11312:11321 allowance */\n tag_61\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11312:11337 allowance(owner, spender) */\n jump\t// in\n tag_117:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11285:11337 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11371:11388 type(uint256).max */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11351:11367 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11351:11388 currentAllowance != type(uint256).max */\n eq\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11347:11590 if (currentAllowance != type(uint256).max) {... */\n tag_118\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11432:11438 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11412:11428 currentAllowance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11412:11438 currentAllowance >= amount */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11404:11472 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_119\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_120\n swap1\n tag_121\n jump\t// in\n tag_120:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_119:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11514:11565 _approve(owner, spender, currentAllowance - amount) */\n tag_122\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11523:11528 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11530:11537 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11558:11564 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11539:11555 currentAllowance */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11539:11564 currentAllowance - amount */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11514:11522 _approve */\n tag_74\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11514:11565 _approve(owner, spender, currentAllowance - amount) */\n jump\t// in\n tag_122:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11347:11590 if (currentAllowance != type(uint256).max) {... */\n tag_118:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":11155:11596 function _spendAllowance(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7473:8291 function _transfer(... */\n tag_81:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7615:7616 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7599:7617 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7599:7603 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7599:7617 from != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7591:7659 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_124\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_125\n swap1\n tag_126\n jump\t// in\n tag_125:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_124:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7691:7692 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7677:7693 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7677:7679 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7677:7693 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7669:7733 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_127\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_128\n swap1\n tag_129\n jump\t// in\n tag_128:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_127:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7744:7782 _beforeTokenTransfer(from, to, amount) */\n tag_130\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7765:7769 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7771:7773 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7775:7781 amount */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7744:7764 _beforeTokenTransfer */\n tag_131\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7744:7782 _beforeTokenTransfer(from, to, amount) */\n jump\t// in\n tag_130:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7793:7812 uint256 fromBalance */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7815:7824 _balances */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7815:7830 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7825:7829 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7815:7830 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7793:7830 uint256 fromBalance = _balances[from] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7863:7869 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7848:7859 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7848:7869 fromBalance >= amount */\n lt\n iszero\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7840:7912 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_132\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_133\n swap1\n tag_134\n jump\t// in\n tag_133:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_132:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7978:7984 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7964:7975 fromBalance */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7964:7984 fromBalance - amount */\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7946:7955 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7946:7961 _balances[from] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7956:7960 from */\n dup7\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7946:7961 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7946:7984 _balances[from] = fromBalance - amount */\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8178:8184 amount */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8161:8170 _balances */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8161:8174 _balances[to] */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8171:8173 to */\n dup6\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8161:8174 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8161:8184 _balances[to] += amount */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8225:8227 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8210:8236 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8219:8223 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8210:8236 Transfer(from, to, amount) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8229:8235 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8210:8236 Transfer(from, to, amount) */\n mload(0x40)\n tag_135\n swap2\n swap1\n tag_28\n jump\t// in\n tag_135:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8247:8284 _afterTokenTransfer(from, to, amount) */\n tag_136\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8267:8271 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8273:8275 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8277:8283 amount */\n dup5\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8247:8266 _afterTokenTransfer */\n tag_137\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":8247:8284 _afterTokenTransfer(from, to, amount) */\n jump\t// in\n tag_136:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7473:8291 function _transfer(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":12180:12301 function _beforeTokenTransfer(... */\n tag_131:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":12889:13009 function _afterTokenTransfer(... */\n tag_137:\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7:146 */\n tag_141:\n 0x00\n /* \"#utility.yul\":91:97 */\n dup2\n /* \"#utility.yul\":78:98 */\n calldataload\n /* \"#utility.yul\":69:98 */\n swap1\n pop\n /* \"#utility.yul\":107:140 */\n tag_143\n /* \"#utility.yul\":134:139 */\n dup2\n /* \"#utility.yul\":107:140 */\n tag_144\n jump\t// in\n tag_143:\n /* \"#utility.yul\":59:146 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":152:291 */\n tag_145:\n 0x00\n /* \"#utility.yul\":236:242 */\n dup2\n /* \"#utility.yul\":223:243 */\n calldataload\n /* \"#utility.yul\":214:243 */\n swap1\n pop\n /* \"#utility.yul\":252:285 */\n tag_147\n /* \"#utility.yul\":279:284 */\n dup2\n /* \"#utility.yul\":252:285 */\n tag_148\n jump\t// in\n tag_147:\n /* \"#utility.yul\":204:291 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":297:559 */\n tag_44:\n 0x00\n /* \"#utility.yul\":405:407 */\n 0x20\n /* \"#utility.yul\":393:402 */\n dup3\n /* \"#utility.yul\":384:391 */\n dup5\n /* \"#utility.yul\":380:403 */\n sub\n /* \"#utility.yul\":376:408 */\n slt\n /* \"#utility.yul\":373:375 */\n iszero\n tag_150\n jumpi\n /* \"#utility.yul\":421:422 */\n 0x00\n /* \"#utility.yul\":418:419 */\n dup1\n /* \"#utility.yul\":411:423 */\n revert\n /* \"#utility.yul\":373:375 */\n tag_150:\n /* \"#utility.yul\":464:465 */\n 0x00\n /* \"#utility.yul\":489:542 */\n tag_151\n /* \"#utility.yul\":534:541 */\n dup5\n /* \"#utility.yul\":525:531 */\n dup3\n /* \"#utility.yul\":514:523 */\n dup6\n /* \"#utility.yul\":510:532 */\n add\n /* \"#utility.yul\":489:542 */\n tag_141\n jump\t// in\n tag_151:\n /* \"#utility.yul\":479:542 */\n swap2\n pop\n /* \"#utility.yul\":435:552 */\n pop\n /* \"#utility.yul\":363:559 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":565:972 */\n tag_60:\n 0x00\n dup1\n /* \"#utility.yul\":690:692 */\n 0x40\n /* \"#utility.yul\":678:687 */\n dup4\n /* \"#utility.yul\":669:676 */\n dup6\n /* \"#utility.yul\":665:688 */\n sub\n /* \"#utility.yul\":661:693 */\n slt\n /* \"#utility.yul\":658:660 */\n iszero\n tag_153\n jumpi\n /* \"#utility.yul\":706:707 */\n 0x00\n /* \"#utility.yul\":703:704 */\n dup1\n /* \"#utility.yul\":696:708 */\n revert\n /* \"#utility.yul\":658:660 */\n tag_153:\n /* \"#utility.yul\":749:750 */\n 0x00\n /* \"#utility.yul\":774:827 */\n tag_154\n /* \"#utility.yul\":819:826 */\n dup6\n /* \"#utility.yul\":810:816 */\n dup3\n /* \"#utility.yul\":799:808 */\n dup7\n /* \"#utility.yul\":795:817 */\n add\n /* \"#utility.yul\":774:827 */\n tag_141\n jump\t// in\n tag_154:\n /* \"#utility.yul\":764:827 */\n swap3\n pop\n /* \"#utility.yul\":720:837 */\n pop\n /* \"#utility.yul\":876:878 */\n 0x20\n /* \"#utility.yul\":902:955 */\n tag_155\n /* \"#utility.yul\":947:954 */\n dup6\n /* \"#utility.yul\":938:944 */\n dup3\n /* \"#utility.yul\":927:936 */\n dup7\n /* \"#utility.yul\":923:945 */\n add\n /* \"#utility.yul\":902:955 */\n tag_141\n jump\t// in\n tag_155:\n /* \"#utility.yul\":892:955 */\n swap2\n pop\n /* \"#utility.yul\":847:965 */\n pop\n /* \"#utility.yul\":648:972 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":978:1530 */\n tag_31:\n 0x00\n dup1\n 0x00\n /* \"#utility.yul\":1120:1122 */\n 0x60\n /* \"#utility.yul\":1108:1117 */\n dup5\n /* \"#utility.yul\":1099:1106 */\n dup7\n /* \"#utility.yul\":1095:1118 */\n sub\n /* \"#utility.yul\":1091:1123 */\n slt\n /* \"#utility.yul\":1088:1090 */\n iszero\n tag_157\n jumpi\n /* \"#utility.yul\":1136:1137 */\n 0x00\n /* \"#utility.yul\":1133:1134 */\n dup1\n /* \"#utility.yul\":1126:1138 */\n revert\n /* \"#utility.yul\":1088:1090 */\n tag_157:\n /* \"#utility.yul\":1179:1180 */\n 0x00\n /* \"#utility.yul\":1204:1257 */\n tag_158\n /* \"#utility.yul\":1249:1256 */\n dup7\n /* \"#utility.yul\":1240:1246 */\n dup3\n /* \"#utility.yul\":1229:1238 */\n dup8\n /* \"#utility.yul\":1225:1247 */\n add\n /* \"#utility.yul\":1204:1257 */\n tag_141\n jump\t// in\n tag_158:\n /* \"#utility.yul\":1194:1257 */\n swap4\n pop\n /* \"#utility.yul\":1150:1267 */\n pop\n /* \"#utility.yul\":1306:1308 */\n 0x20\n /* \"#utility.yul\":1332:1385 */\n tag_159\n /* \"#utility.yul\":1377:1384 */\n dup7\n /* \"#utility.yul\":1368:1374 */\n dup3\n /* \"#utility.yul\":1357:1366 */\n dup8\n /* \"#utility.yul\":1353:1375 */\n add\n /* \"#utility.yul\":1332:1385 */\n tag_141\n jump\t// in\n tag_159:\n /* \"#utility.yul\":1322:1385 */\n swap3\n pop\n /* \"#utility.yul\":1277:1395 */\n pop\n /* \"#utility.yul\":1434:1436 */\n 0x40\n /* \"#utility.yul\":1460:1513 */\n tag_160\n /* \"#utility.yul\":1505:1512 */\n dup7\n /* \"#utility.yul\":1496:1502 */\n dup3\n /* \"#utility.yul\":1485:1494 */\n dup8\n /* \"#utility.yul\":1481:1503 */\n add\n /* \"#utility.yul\":1460:1513 */\n tag_145\n jump\t// in\n tag_160:\n /* \"#utility.yul\":1450:1513 */\n swap2\n pop\n /* \"#utility.yul\":1405:1523 */\n pop\n /* \"#utility.yul\":1078:1530 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":1536:1943 */\n tag_21:\n 0x00\n dup1\n /* \"#utility.yul\":1661:1663 */\n 0x40\n /* \"#utility.yul\":1649:1658 */\n dup4\n /* \"#utility.yul\":1640:1647 */\n dup6\n /* \"#utility.yul\":1636:1659 */\n sub\n /* \"#utility.yul\":1632:1664 */\n slt\n /* \"#utility.yul\":1629:1631 */\n iszero\n tag_162\n jumpi\n /* \"#utility.yul\":1677:1678 */\n 0x00\n /* \"#utility.yul\":1674:1675 */\n dup1\n /* \"#utility.yul\":1667:1679 */\n revert\n /* \"#utility.yul\":1629:1631 */\n tag_162:\n /* \"#utility.yul\":1720:1721 */\n 0x00\n /* \"#utility.yul\":1745:1798 */\n tag_163\n /* \"#utility.yul\":1790:1797 */\n dup6\n /* \"#utility.yul\":1781:1787 */\n dup3\n /* \"#utility.yul\":1770:1779 */\n dup7\n /* \"#utility.yul\":1766:1788 */\n add\n /* \"#utility.yul\":1745:1798 */\n tag_141\n jump\t// in\n tag_163:\n /* \"#utility.yul\":1735:1798 */\n swap3\n pop\n /* \"#utility.yul\":1691:1808 */\n pop\n /* \"#utility.yul\":1847:1849 */\n 0x20\n /* \"#utility.yul\":1873:1926 */\n tag_164\n /* \"#utility.yul\":1918:1925 */\n dup6\n /* \"#utility.yul\":1909:1915 */\n dup3\n /* \"#utility.yul\":1898:1907 */\n dup7\n /* \"#utility.yul\":1894:1916 */\n add\n /* \"#utility.yul\":1873:1926 */\n tag_145\n jump\t// in\n tag_164:\n /* \"#utility.yul\":1863:1926 */\n swap2\n pop\n /* \"#utility.yul\":1818:1936 */\n pop\n /* \"#utility.yul\":1619:1943 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1949:2058 */\n tag_165:\n /* \"#utility.yul\":2030:2051 */\n tag_167\n /* \"#utility.yul\":2045:2050 */\n dup2\n /* \"#utility.yul\":2030:2051 */\n tag_168\n jump\t// in\n tag_167:\n /* \"#utility.yul\":2025:2028 */\n dup3\n /* \"#utility.yul\":2018:2052 */\n mstore\n /* \"#utility.yul\":2008:2058 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2064:2428 */\n tag_169:\n 0x00\n /* \"#utility.yul\":2180:2219 */\n tag_171\n /* \"#utility.yul\":2213:2218 */\n dup3\n /* \"#utility.yul\":2180:2219 */\n tag_172\n jump\t// in\n tag_171:\n /* \"#utility.yul\":2235:2306 */\n tag_173\n /* \"#utility.yul\":2299:2305 */\n dup2\n /* \"#utility.yul\":2294:2297 */\n dup6\n /* \"#utility.yul\":2235:2306 */\n tag_174\n jump\t// in\n tag_173:\n /* \"#utility.yul\":2228:2306 */\n swap4\n pop\n /* \"#utility.yul\":2315:2367 */\n tag_175\n /* \"#utility.yul\":2360:2366 */\n dup2\n /* \"#utility.yul\":2355:2358 */\n dup6\n /* \"#utility.yul\":2348:2352 */\n 0x20\n /* \"#utility.yul\":2341:2346 */\n dup7\n /* \"#utility.yul\":2337:2353 */\n add\n /* \"#utility.yul\":2315:2367 */\n tag_176\n jump\t// in\n tag_175:\n /* \"#utility.yul\":2392:2421 */\n tag_177\n /* \"#utility.yul\":2414:2420 */\n dup2\n /* \"#utility.yul\":2392:2421 */\n tag_178\n jump\t// in\n tag_177:\n /* \"#utility.yul\":2387:2390 */\n dup5\n /* \"#utility.yul\":2383:2422 */\n add\n /* \"#utility.yul\":2376:2422 */\n swap2\n pop\n /* \"#utility.yul\":2156:2428 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2434:2801 */\n tag_179:\n 0x00\n /* \"#utility.yul\":2597:2664 */\n tag_181\n /* \"#utility.yul\":2661:2663 */\n 0x23\n /* \"#utility.yul\":2656:2659 */\n dup4\n /* \"#utility.yul\":2597:2664 */\n tag_174\n jump\t// in\n tag_181:\n /* \"#utility.yul\":2590:2664 */\n swap2\n pop\n /* \"#utility.yul\":2694:2728 */\n 0x45524332303a207472616e7366657220746f20746865207a65726f2061646472\n /* \"#utility.yul\":2690:2691 */\n 0x00\n /* \"#utility.yul\":2685:2688 */\n dup4\n /* \"#utility.yul\":2681:2692 */\n add\n /* \"#utility.yul\":2674:2729 */\n mstore\n /* \"#utility.yul\":2760:2765 */\n 0x6573730000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2755:2757 */\n 0x20\n /* \"#utility.yul\":2750:2753 */\n dup4\n /* \"#utility.yul\":2746:2758 */\n add\n /* \"#utility.yul\":2739:2766 */\n mstore\n /* \"#utility.yul\":2792:2794 */\n 0x40\n /* \"#utility.yul\":2787:2790 */\n dup3\n /* \"#utility.yul\":2783:2795 */\n add\n /* \"#utility.yul\":2776:2795 */\n swap1\n pop\n /* \"#utility.yul\":2580:2801 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2807:3173 */\n tag_182:\n 0x00\n /* \"#utility.yul\":2970:3037 */\n tag_184\n /* \"#utility.yul\":3034:3036 */\n 0x22\n /* \"#utility.yul\":3029:3032 */\n dup4\n /* \"#utility.yul\":2970:3037 */\n tag_174\n jump\t// in\n tag_184:\n /* \"#utility.yul\":2963:3037 */\n swap2\n pop\n /* \"#utility.yul\":3067:3101 */\n 0x45524332303a20617070726f766520746f20746865207a65726f206164647265\n /* \"#utility.yul\":3063:3064 */\n 0x00\n /* \"#utility.yul\":3058:3061 */\n dup4\n /* \"#utility.yul\":3054:3065 */\n add\n /* \"#utility.yul\":3047:3102 */\n mstore\n /* \"#utility.yul\":3133:3137 */\n 0x7373000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3128:3130 */\n 0x20\n /* \"#utility.yul\":3123:3126 */\n dup4\n /* \"#utility.yul\":3119:3131 */\n add\n /* \"#utility.yul\":3112:3138 */\n mstore\n /* \"#utility.yul\":3164:3166 */\n 0x40\n /* \"#utility.yul\":3159:3162 */\n dup3\n /* \"#utility.yul\":3155:3167 */\n add\n /* \"#utility.yul\":3148:3167 */\n swap1\n pop\n /* \"#utility.yul\":2953:3173 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3179:3506 */\n tag_185:\n 0x00\n /* \"#utility.yul\":3342:3409 */\n tag_187\n /* \"#utility.yul\":3406:3408 */\n 0x1d\n /* \"#utility.yul\":3401:3404 */\n dup4\n /* \"#utility.yul\":3342:3409 */\n tag_174\n jump\t// in\n tag_187:\n /* \"#utility.yul\":3335:3409 */\n swap2\n pop\n /* \"#utility.yul\":3439:3470 */\n 0x45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000\n /* \"#utility.yul\":3435:3436 */\n 0x00\n /* \"#utility.yul\":3430:3433 */\n dup4\n /* \"#utility.yul\":3426:3437 */\n add\n /* \"#utility.yul\":3419:3471 */\n mstore\n /* \"#utility.yul\":3497:3499 */\n 0x20\n /* \"#utility.yul\":3492:3495 */\n dup3\n /* \"#utility.yul\":3488:3500 */\n add\n /* \"#utility.yul\":3481:3500 */\n swap1\n pop\n /* \"#utility.yul\":3325:3506 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3512:3882 */\n tag_188:\n 0x00\n /* \"#utility.yul\":3675:3742 */\n tag_190\n /* \"#utility.yul\":3739:3741 */\n 0x26\n /* \"#utility.yul\":3734:3737 */\n dup4\n /* \"#utility.yul\":3675:3742 */\n tag_174\n jump\t// in\n tag_190:\n /* \"#utility.yul\":3668:3742 */\n swap2\n pop\n /* \"#utility.yul\":3772:3806 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732062\n /* \"#utility.yul\":3768:3769 */\n 0x00\n /* \"#utility.yul\":3763:3766 */\n dup4\n /* \"#utility.yul\":3759:3770 */\n add\n /* \"#utility.yul\":3752:3807 */\n mstore\n /* \"#utility.yul\":3838:3846 */\n 0x616c616e63650000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3833:3835 */\n 0x20\n /* \"#utility.yul\":3828:3831 */\n dup4\n /* \"#utility.yul\":3824:3836 */\n add\n /* \"#utility.yul\":3817:3847 */\n mstore\n /* \"#utility.yul\":3873:3875 */\n 0x40\n /* \"#utility.yul\":3868:3871 */\n dup3\n /* \"#utility.yul\":3864:3876 */\n add\n /* \"#utility.yul\":3857:3876 */\n swap1\n pop\n /* \"#utility.yul\":3658:3882 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3888:4257 */\n tag_191:\n 0x00\n /* \"#utility.yul\":4051:4118 */\n tag_193\n /* \"#utility.yul\":4115:4117 */\n 0x25\n /* \"#utility.yul\":4110:4113 */\n dup4\n /* \"#utility.yul\":4051:4118 */\n tag_174\n jump\t// in\n tag_193:\n /* \"#utility.yul\":4044:4118 */\n swap2\n pop\n /* \"#utility.yul\":4148:4182 */\n 0x45524332303a207472616e736665722066726f6d20746865207a65726f206164\n /* \"#utility.yul\":4144:4145 */\n 0x00\n /* \"#utility.yul\":4139:4142 */\n dup4\n /* \"#utility.yul\":4135:4146 */\n add\n /* \"#utility.yul\":4128:4183 */\n mstore\n /* \"#utility.yul\":4214:4221 */\n 0x6472657373000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4209:4211 */\n 0x20\n /* \"#utility.yul\":4204:4207 */\n dup4\n /* \"#utility.yul\":4200:4212 */\n add\n /* \"#utility.yul\":4193:4222 */\n mstore\n /* \"#utility.yul\":4248:4250 */\n 0x40\n /* \"#utility.yul\":4243:4246 */\n dup3\n /* \"#utility.yul\":4239:4251 */\n add\n /* \"#utility.yul\":4232:4251 */\n swap1\n pop\n /* \"#utility.yul\":4034:4257 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4263:4631 */\n tag_194:\n 0x00\n /* \"#utility.yul\":4426:4493 */\n tag_196\n /* \"#utility.yul\":4490:4492 */\n 0x24\n /* \"#utility.yul\":4485:4488 */\n dup4\n /* \"#utility.yul\":4426:4493 */\n tag_174\n jump\t// in\n tag_196:\n /* \"#utility.yul\":4419:4493 */\n swap2\n pop\n /* \"#utility.yul\":4523:4557 */\n 0x45524332303a20617070726f76652066726f6d20746865207a65726f20616464\n /* \"#utility.yul\":4519:4520 */\n 0x00\n /* \"#utility.yul\":4514:4517 */\n dup4\n /* \"#utility.yul\":4510:4521 */\n add\n /* \"#utility.yul\":4503:4558 */\n mstore\n /* \"#utility.yul\":4589:4595 */\n 0x7265737300000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4584:4586 */\n 0x20\n /* \"#utility.yul\":4579:4582 */\n dup4\n /* \"#utility.yul\":4575:4587 */\n add\n /* \"#utility.yul\":4568:4596 */\n mstore\n /* \"#utility.yul\":4622:4624 */\n 0x40\n /* \"#utility.yul\":4617:4620 */\n dup3\n /* \"#utility.yul\":4613:4625 */\n add\n /* \"#utility.yul\":4606:4625 */\n swap1\n pop\n /* \"#utility.yul\":4409:4631 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4637:5006 */\n tag_197:\n 0x00\n /* \"#utility.yul\":4800:4867 */\n tag_199\n /* \"#utility.yul\":4864:4866 */\n 0x25\n /* \"#utility.yul\":4859:4862 */\n dup4\n /* \"#utility.yul\":4800:4867 */\n tag_174\n jump\t// in\n tag_199:\n /* \"#utility.yul\":4793:4867 */\n swap2\n pop\n /* \"#utility.yul\":4897:4931 */\n 0x45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77\n /* \"#utility.yul\":4893:4894 */\n 0x00\n /* \"#utility.yul\":4888:4891 */\n dup4\n /* \"#utility.yul\":4884:4895 */\n add\n /* \"#utility.yul\":4877:4932 */\n mstore\n /* \"#utility.yul\":4963:4970 */\n 0x207a65726f000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4958:4960 */\n 0x20\n /* \"#utility.yul\":4953:4956 */\n dup4\n /* \"#utility.yul\":4949:4961 */\n add\n /* \"#utility.yul\":4942:4971 */\n mstore\n /* \"#utility.yul\":4997:4999 */\n 0x40\n /* \"#utility.yul\":4992:4995 */\n dup3\n /* \"#utility.yul\":4988:5000 */\n add\n /* \"#utility.yul\":4981:5000 */\n swap1\n pop\n /* \"#utility.yul\":4783:5006 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5012:5130 */\n tag_200:\n /* \"#utility.yul\":5099:5123 */\n tag_202\n /* \"#utility.yul\":5117:5122 */\n dup2\n /* \"#utility.yul\":5099:5123 */\n tag_203\n jump\t// in\n tag_202:\n /* \"#utility.yul\":5094:5097 */\n dup3\n /* \"#utility.yul\":5087:5124 */\n mstore\n /* \"#utility.yul\":5077:5130 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5136:5248 */\n tag_204:\n /* \"#utility.yul\":5219:5241 */\n tag_206\n /* \"#utility.yul\":5235:5240 */\n dup2\n /* \"#utility.yul\":5219:5241 */\n tag_207\n jump\t// in\n tag_206:\n /* \"#utility.yul\":5214:5217 */\n dup3\n /* \"#utility.yul\":5207:5242 */\n mstore\n /* \"#utility.yul\":5197:5248 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5254:5464 */\n tag_24:\n 0x00\n /* \"#utility.yul\":5379:5381 */\n 0x20\n /* \"#utility.yul\":5368:5377 */\n dup3\n /* \"#utility.yul\":5364:5382 */\n add\n /* \"#utility.yul\":5356:5382 */\n swap1\n pop\n /* \"#utility.yul\":5392:5457 */\n tag_209\n /* \"#utility.yul\":5454:5455 */\n 0x00\n /* \"#utility.yul\":5443:5452 */\n dup4\n /* \"#utility.yul\":5439:5456 */\n add\n /* \"#utility.yul\":5430:5436 */\n dup5\n /* \"#utility.yul\":5392:5457 */\n tag_165\n jump\t// in\n tag_209:\n /* \"#utility.yul\":5346:5464 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5470:5783 */\n tag_18:\n 0x00\n /* \"#utility.yul\":5621:5623 */\n 0x20\n /* \"#utility.yul\":5610:5619 */\n dup3\n /* \"#utility.yul\":5606:5624 */\n add\n /* \"#utility.yul\":5598:5624 */\n swap1\n pop\n /* \"#utility.yul\":5670:5679 */\n dup2\n /* \"#utility.yul\":5664:5668 */\n dup2\n /* \"#utility.yul\":5660:5680 */\n sub\n /* \"#utility.yul\":5656:5657 */\n 0x00\n /* \"#utility.yul\":5645:5654 */\n dup4\n /* \"#utility.yul\":5641:5658 */\n add\n /* \"#utility.yul\":5634:5681 */\n mstore\n /* \"#utility.yul\":5698:5776 */\n tag_211\n /* \"#utility.yul\":5771:5775 */\n dup2\n /* \"#utility.yul\":5762:5768 */\n dup5\n /* \"#utility.yul\":5698:5776 */\n tag_169\n jump\t// in\n tag_211:\n /* \"#utility.yul\":5690:5776 */\n swap1\n pop\n /* \"#utility.yul\":5588:5783 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5789:6208 */\n tag_129:\n 0x00\n /* \"#utility.yul\":5993:5995 */\n 0x20\n /* \"#utility.yul\":5982:5991 */\n dup3\n /* \"#utility.yul\":5978:5996 */\n add\n /* \"#utility.yul\":5970:5996 */\n swap1\n pop\n /* \"#utility.yul\":6042:6051 */\n dup2\n /* \"#utility.yul\":6036:6040 */\n dup2\n /* \"#utility.yul\":6032:6052 */\n sub\n /* \"#utility.yul\":6028:6029 */\n 0x00\n /* \"#utility.yul\":6017:6026 */\n dup4\n /* \"#utility.yul\":6013:6030 */\n add\n /* \"#utility.yul\":6006:6053 */\n mstore\n /* \"#utility.yul\":6070:6201 */\n tag_213\n /* \"#utility.yul\":6196:6200 */\n dup2\n /* \"#utility.yul\":6070:6201 */\n tag_179\n jump\t// in\n tag_213:\n /* \"#utility.yul\":6062:6201 */\n swap1\n pop\n /* \"#utility.yul\":5960:6208 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6214:6633 */\n tag_114:\n 0x00\n /* \"#utility.yul\":6418:6420 */\n 0x20\n /* \"#utility.yul\":6407:6416 */\n dup3\n /* \"#utility.yul\":6403:6421 */\n add\n /* \"#utility.yul\":6395:6421 */\n swap1\n pop\n /* \"#utility.yul\":6467:6476 */\n dup2\n /* \"#utility.yul\":6461:6465 */\n dup2\n /* \"#utility.yul\":6457:6477 */\n sub\n /* \"#utility.yul\":6453:6454 */\n 0x00\n /* \"#utility.yul\":6442:6451 */\n dup4\n /* \"#utility.yul\":6438:6455 */\n add\n /* \"#utility.yul\":6431:6478 */\n mstore\n /* \"#utility.yul\":6495:6626 */\n tag_215\n /* \"#utility.yul\":6621:6625 */\n dup2\n /* \"#utility.yul\":6495:6626 */\n tag_182\n jump\t// in\n tag_215:\n /* \"#utility.yul\":6487:6626 */\n swap1\n pop\n /* \"#utility.yul\":6385:6633 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6639:7058 */\n tag_121:\n 0x00\n /* \"#utility.yul\":6843:6845 */\n 0x20\n /* \"#utility.yul\":6832:6841 */\n dup3\n /* \"#utility.yul\":6828:6846 */\n add\n /* \"#utility.yul\":6820:6846 */\n swap1\n pop\n /* \"#utility.yul\":6892:6901 */\n dup2\n /* \"#utility.yul\":6886:6890 */\n dup2\n /* \"#utility.yul\":6882:6902 */\n sub\n /* \"#utility.yul\":6878:6879 */\n 0x00\n /* \"#utility.yul\":6867:6876 */\n dup4\n /* \"#utility.yul\":6863:6880 */\n add\n /* \"#utility.yul\":6856:6903 */\n mstore\n /* \"#utility.yul\":6920:7051 */\n tag_217\n /* \"#utility.yul\":7046:7050 */\n dup2\n /* \"#utility.yul\":6920:7051 */\n tag_185\n jump\t// in\n tag_217:\n /* \"#utility.yul\":6912:7051 */\n swap1\n pop\n /* \"#utility.yul\":6810:7058 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7064:7483 */\n tag_134:\n 0x00\n /* \"#utility.yul\":7268:7270 */\n 0x20\n /* \"#utility.yul\":7257:7266 */\n dup3\n /* \"#utility.yul\":7253:7271 */\n add\n /* \"#utility.yul\":7245:7271 */\n swap1\n pop\n /* \"#utility.yul\":7317:7326 */\n dup2\n /* \"#utility.yul\":7311:7315 */\n dup2\n /* \"#utility.yul\":7307:7327 */\n sub\n /* \"#utility.yul\":7303:7304 */\n 0x00\n /* \"#utility.yul\":7292:7301 */\n dup4\n /* \"#utility.yul\":7288:7305 */\n add\n /* \"#utility.yul\":7281:7328 */\n mstore\n /* \"#utility.yul\":7345:7476 */\n tag_219\n /* \"#utility.yul\":7471:7475 */\n dup2\n /* \"#utility.yul\":7345:7476 */\n tag_188\n jump\t// in\n tag_219:\n /* \"#utility.yul\":7337:7476 */\n swap1\n pop\n /* \"#utility.yul\":7235:7483 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7489:7908 */\n tag_126:\n 0x00\n /* \"#utility.yul\":7693:7695 */\n 0x20\n /* \"#utility.yul\":7682:7691 */\n dup3\n /* \"#utility.yul\":7678:7696 */\n add\n /* \"#utility.yul\":7670:7696 */\n swap1\n pop\n /* \"#utility.yul\":7742:7751 */\n dup2\n /* \"#utility.yul\":7736:7740 */\n dup2\n /* \"#utility.yul\":7732:7752 */\n sub\n /* \"#utility.yul\":7728:7729 */\n 0x00\n /* \"#utility.yul\":7717:7726 */\n dup4\n /* \"#utility.yul\":7713:7730 */\n add\n /* \"#utility.yul\":7706:7753 */\n mstore\n /* \"#utility.yul\":7770:7901 */\n tag_221\n /* \"#utility.yul\":7896:7900 */\n dup2\n /* \"#utility.yul\":7770:7901 */\n tag_191\n jump\t// in\n tag_221:\n /* \"#utility.yul\":7762:7901 */\n swap1\n pop\n /* \"#utility.yul\":7660:7908 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7914:8333 */\n tag_111:\n 0x00\n /* \"#utility.yul\":8118:8120 */\n 0x20\n /* \"#utility.yul\":8107:8116 */\n dup3\n /* \"#utility.yul\":8103:8121 */\n add\n /* \"#utility.yul\":8095:8121 */\n swap1\n pop\n /* \"#utility.yul\":8167:8176 */\n dup2\n /* \"#utility.yul\":8161:8165 */\n dup2\n /* \"#utility.yul\":8157:8177 */\n sub\n /* \"#utility.yul\":8153:8154 */\n 0x00\n /* \"#utility.yul\":8142:8151 */\n dup4\n /* \"#utility.yul\":8138:8155 */\n add\n /* \"#utility.yul\":8131:8178 */\n mstore\n /* \"#utility.yul\":8195:8326 */\n tag_223\n /* \"#utility.yul\":8321:8325 */\n dup2\n /* \"#utility.yul\":8195:8326 */\n tag_194\n jump\t// in\n tag_223:\n /* \"#utility.yul\":8187:8326 */\n swap1\n pop\n /* \"#utility.yul\":8085:8333 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8339:8758 */\n tag_101:\n 0x00\n /* \"#utility.yul\":8543:8545 */\n 0x20\n /* \"#utility.yul\":8532:8541 */\n dup3\n /* \"#utility.yul\":8528:8546 */\n add\n /* \"#utility.yul\":8520:8546 */\n swap1\n pop\n /* \"#utility.yul\":8592:8601 */\n dup2\n /* \"#utility.yul\":8586:8590 */\n dup2\n /* \"#utility.yul\":8582:8602 */\n sub\n /* \"#utility.yul\":8578:8579 */\n 0x00\n /* \"#utility.yul\":8567:8576 */\n dup4\n /* \"#utility.yul\":8563:8580 */\n add\n /* \"#utility.yul\":8556:8603 */\n mstore\n /* \"#utility.yul\":8620:8751 */\n tag_225\n /* \"#utility.yul\":8746:8750 */\n dup2\n /* \"#utility.yul\":8620:8751 */\n tag_197\n jump\t// in\n tag_225:\n /* \"#utility.yul\":8612:8751 */\n swap1\n pop\n /* \"#utility.yul\":8510:8758 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8764:8986 */\n tag_28:\n 0x00\n /* \"#utility.yul\":8895:8897 */\n 0x20\n /* \"#utility.yul\":8884:8893 */\n dup3\n /* \"#utility.yul\":8880:8898 */\n add\n /* \"#utility.yul\":8872:8898 */\n swap1\n pop\n /* \"#utility.yul\":8908:8979 */\n tag_227\n /* \"#utility.yul\":8976:8977 */\n 0x00\n /* \"#utility.yul\":8965:8974 */\n dup4\n /* \"#utility.yul\":8961:8978 */\n add\n /* \"#utility.yul\":8952:8958 */\n dup5\n /* \"#utility.yul\":8908:8979 */\n tag_200\n jump\t// in\n tag_227:\n /* \"#utility.yul\":8862:8986 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8992:9206 */\n tag_37:\n 0x00\n /* \"#utility.yul\":9119:9121 */\n 0x20\n /* \"#utility.yul\":9108:9117 */\n dup3\n /* \"#utility.yul\":9104:9122 */\n add\n /* \"#utility.yul\":9096:9122 */\n swap1\n pop\n /* \"#utility.yul\":9132:9199 */\n tag_229\n /* \"#utility.yul\":9196:9197 */\n 0x00\n /* \"#utility.yul\":9185:9194 */\n dup4\n /* \"#utility.yul\":9181:9198 */\n add\n /* \"#utility.yul\":9172:9178 */\n dup5\n /* \"#utility.yul\":9132:9199 */\n tag_204\n jump\t// in\n tag_229:\n /* \"#utility.yul\":9086:9206 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9212:9311 */\n tag_172:\n 0x00\n /* \"#utility.yul\":9298:9303 */\n dup2\n /* \"#utility.yul\":9292:9304 */\n mload\n /* \"#utility.yul\":9282:9304 */\n swap1\n pop\n /* \"#utility.yul\":9271:9311 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9317:9486 */\n tag_174:\n 0x00\n /* \"#utility.yul\":9435:9441 */\n dup3\n /* \"#utility.yul\":9430:9433 */\n dup3\n /* \"#utility.yul\":9423:9442 */\n mstore\n /* \"#utility.yul\":9475:9479 */\n 0x20\n /* \"#utility.yul\":9470:9473 */\n dup3\n /* \"#utility.yul\":9466:9480 */\n add\n /* \"#utility.yul\":9451:9480 */\n swap1\n pop\n /* \"#utility.yul\":9413:9486 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9492:9797 */\n tag_88:\n 0x00\n /* \"#utility.yul\":9551:9571 */\n tag_233\n /* \"#utility.yul\":9569:9570 */\n dup3\n /* \"#utility.yul\":9551:9571 */\n tag_203\n jump\t// in\n tag_233:\n /* \"#utility.yul\":9546:9571 */\n swap2\n pop\n /* \"#utility.yul\":9585:9605 */\n tag_234\n /* \"#utility.yul\":9603:9604 */\n dup4\n /* \"#utility.yul\":9585:9605 */\n tag_203\n jump\t// in\n tag_234:\n /* \"#utility.yul\":9580:9605 */\n swap3\n pop\n /* \"#utility.yul\":9739:9740 */\n dup3\n /* \"#utility.yul\":9671:9737 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":9667:9741 */\n sub\n /* \"#utility.yul\":9664:9665 */\n dup3\n /* \"#utility.yul\":9661:9742 */\n gt\n /* \"#utility.yul\":9658:9660 */\n iszero\n tag_235\n jumpi\n /* \"#utility.yul\":9745:9763 */\n tag_236\n tag_237\n jump\t// in\n tag_236:\n /* \"#utility.yul\":9658:9660 */\n tag_235:\n /* \"#utility.yul\":9789:9790 */\n dup3\n /* \"#utility.yul\":9786:9787 */\n dup3\n /* \"#utility.yul\":9782:9791 */\n add\n /* \"#utility.yul\":9775:9791 */\n swap1\n pop\n /* \"#utility.yul\":9536:9797 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9803:9899 */\n tag_238:\n 0x00\n /* \"#utility.yul\":9869:9893 */\n tag_240\n /* \"#utility.yul\":9887:9892 */\n dup3\n /* \"#utility.yul\":9869:9893 */\n tag_241\n jump\t// in\n tag_240:\n /* \"#utility.yul\":9858:9893 */\n swap1\n pop\n /* \"#utility.yul\":9848:9899 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9905:9995 */\n tag_168:\n 0x00\n /* \"#utility.yul\":9982:9987 */\n dup2\n /* \"#utility.yul\":9975:9988 */\n iszero\n /* \"#utility.yul\":9968:9989 */\n iszero\n /* \"#utility.yul\":9957:9989 */\n swap1\n pop\n /* \"#utility.yul\":9947:9995 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10001:10127 */\n tag_241:\n 0x00\n /* \"#utility.yul\":10078:10120 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":10071:10076 */\n dup3\n /* \"#utility.yul\":10067:10121 */\n and\n /* \"#utility.yul\":10056:10121 */\n swap1\n pop\n /* \"#utility.yul\":10046:10127 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10133:10210 */\n tag_203:\n 0x00\n /* \"#utility.yul\":10199:10204 */\n dup2\n /* \"#utility.yul\":10188:10204 */\n swap1\n pop\n /* \"#utility.yul\":10178:10210 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10216:10302 */\n tag_207:\n 0x00\n /* \"#utility.yul\":10291:10295 */\n 0xff\n /* \"#utility.yul\":10284:10289 */\n dup3\n /* \"#utility.yul\":10280:10296 */\n and\n /* \"#utility.yul\":10269:10296 */\n swap1\n pop\n /* \"#utility.yul\":10259:10302 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10308:10615 */\n tag_176:\n /* \"#utility.yul\":10376:10377 */\n 0x00\n /* \"#utility.yul\":10386:10499 */\n tag_247:\n /* \"#utility.yul\":10400:10406 */\n dup4\n /* \"#utility.yul\":10397:10398 */\n dup2\n /* \"#utility.yul\":10394:10407 */\n lt\n /* \"#utility.yul\":10386:10499 */\n iszero\n tag_249\n jumpi\n /* \"#utility.yul\":10485:10486 */\n dup1\n /* \"#utility.yul\":10480:10483 */\n dup3\n /* \"#utility.yul\":10476:10487 */\n add\n /* \"#utility.yul\":10470:10488 */\n mload\n /* \"#utility.yul\":10466:10467 */\n dup2\n /* \"#utility.yul\":10461:10464 */\n dup5\n /* \"#utility.yul\":10457:10468 */\n add\n /* \"#utility.yul\":10450:10489 */\n mstore\n /* \"#utility.yul\":10422:10424 */\n 0x20\n /* \"#utility.yul\":10419:10420 */\n dup2\n /* \"#utility.yul\":10415:10425 */\n add\n /* \"#utility.yul\":10410:10425 */\n swap1\n pop\n /* \"#utility.yul\":10386:10499 */\n jump(tag_247)\n tag_249:\n /* \"#utility.yul\":10517:10523 */\n dup4\n /* \"#utility.yul\":10514:10515 */\n dup2\n /* \"#utility.yul\":10511:10524 */\n gt\n /* \"#utility.yul\":10508:10510 */\n iszero\n tag_250\n jumpi\n /* \"#utility.yul\":10597:10598 */\n 0x00\n /* \"#utility.yul\":10588:10594 */\n dup5\n /* \"#utility.yul\":10583:10586 */\n dup5\n /* \"#utility.yul\":10579:10595 */\n add\n /* \"#utility.yul\":10572:10599 */\n mstore\n /* \"#utility.yul\":10508:10510 */\n tag_250:\n /* \"#utility.yul\":10357:10615 */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10621:10941 */\n tag_65:\n 0x00\n /* \"#utility.yul\":10702:10703 */\n 0x02\n /* \"#utility.yul\":10696:10700 */\n dup3\n /* \"#utility.yul\":10692:10704 */\n div\n /* \"#utility.yul\":10682:10704 */\n swap1\n pop\n /* \"#utility.yul\":10749:10750 */\n 0x01\n /* \"#utility.yul\":10743:10747 */\n dup3\n /* \"#utility.yul\":10739:10751 */\n and\n /* \"#utility.yul\":10770:10788 */\n dup1\n /* \"#utility.yul\":10760:10762 */\n tag_252\n jumpi\n /* \"#utility.yul\":10826:10830 */\n 0x7f\n /* \"#utility.yul\":10818:10824 */\n dup3\n /* \"#utility.yul\":10814:10831 */\n and\n /* \"#utility.yul\":10804:10831 */\n swap2\n pop\n /* \"#utility.yul\":10760:10762 */\n tag_252:\n /* \"#utility.yul\":10888:10890 */\n 0x20\n /* \"#utility.yul\":10880:10886 */\n dup3\n /* \"#utility.yul\":10877:10891 */\n lt\n /* \"#utility.yul\":10857:10875 */\n dup2\n /* \"#utility.yul\":10854:10892 */\n eq\n /* \"#utility.yul\":10851:10853 */\n iszero\n tag_253\n jumpi\n /* \"#utility.yul\":10907:10925 */\n tag_254\n tag_255\n jump\t// in\n tag_254:\n /* \"#utility.yul\":10851:10853 */\n tag_253:\n /* \"#utility.yul\":10672:10941 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10947:11127 */\n tag_237:\n /* \"#utility.yul\":10995:11072 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10992:10993 */\n 0x00\n /* \"#utility.yul\":10985:11073 */\n mstore\n /* \"#utility.yul\":11092:11096 */\n 0x11\n /* \"#utility.yul\":11089:11090 */\n 0x04\n /* \"#utility.yul\":11082:11097 */\n mstore\n /* \"#utility.yul\":11116:11120 */\n 0x24\n /* \"#utility.yul\":11113:11114 */\n 0x00\n /* \"#utility.yul\":11106:11121 */\n revert\n /* \"#utility.yul\":11133:11313 */\n tag_255:\n /* \"#utility.yul\":11181:11258 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11178:11179 */\n 0x00\n /* \"#utility.yul\":11171:11259 */\n mstore\n /* \"#utility.yul\":11278:11282 */\n 0x22\n /* \"#utility.yul\":11275:11276 */\n 0x04\n /* \"#utility.yul\":11268:11283 */\n mstore\n /* \"#utility.yul\":11302:11306 */\n 0x24\n /* \"#utility.yul\":11299:11300 */\n 0x00\n /* \"#utility.yul\":11292:11307 */\n revert\n /* \"#utility.yul\":11319:11421 */\n tag_178:\n 0x00\n /* \"#utility.yul\":11411:11413 */\n 0x1f\n /* \"#utility.yul\":11407:11414 */\n not\n /* \"#utility.yul\":11402:11404 */\n 0x1f\n /* \"#utility.yul\":11395:11400 */\n dup4\n /* \"#utility.yul\":11391:11405 */\n add\n /* \"#utility.yul\":11387:11415 */\n and\n /* \"#utility.yul\":11377:11415 */\n swap1\n pop\n /* \"#utility.yul\":11367:11421 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11427:11549 */\n tag_144:\n /* \"#utility.yul\":11500:11524 */\n tag_260\n /* \"#utility.yul\":11518:11523 */\n dup2\n /* \"#utility.yul\":11500:11524 */\n tag_238\n jump\t// in\n tag_260:\n /* \"#utility.yul\":11493:11498 */\n dup2\n /* \"#utility.yul\":11490:11525 */\n eq\n /* \"#utility.yul\":11480:11482 */\n tag_261\n jumpi\n /* \"#utility.yul\":11539:11540 */\n 0x00\n /* \"#utility.yul\":11536:11537 */\n dup1\n /* \"#utility.yul\":11529:11541 */\n revert\n /* \"#utility.yul\":11480:11482 */\n tag_261:\n /* \"#utility.yul\":11470:11549 */\n pop\n jump\t// out\n /* \"#utility.yul\":11555:11677 */\n tag_148:\n /* \"#utility.yul\":11628:11652 */\n tag_263\n /* \"#utility.yul\":11646:11651 */\n dup2\n /* \"#utility.yul\":11628:11652 */\n tag_203\n jump\t// in\n tag_263:\n /* \"#utility.yul\":11621:11626 */\n dup2\n /* \"#utility.yul\":11618:11653 */\n eq\n /* \"#utility.yul\":11608:11610 */\n tag_264\n jumpi\n /* \"#utility.yul\":11667:11668 */\n 0x00\n /* \"#utility.yul\":11664:11665 */\n dup1\n /* \"#utility.yul\":11657:11669 */\n revert\n /* \"#utility.yul\":11608:11610 */\n tag_264:\n /* \"#utility.yul\":11598:11677 */\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220665ccb43423a002886c0ede553cf6c9448819aa7bb72ed5c21af8cf83cb793ed64736f6c63430008000033\n}\n",
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2967:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:258:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:74:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "178:6:5"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "136:41:5"
},
"nodeType": "YulFunctionCall",
"src": "136:49:5"
}
],
"functionName": {
"name": "allocateMemory",
"nodeType": "YulIdentifier",
"src": "121:14:5"
},
"nodeType": "YulFunctionCall",
"src": "121:65:5"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "202:5:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "209:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "195:6:5"
},
"nodeType": "YulFunctionCall",
"src": "195:21:5"
},
"nodeType": "YulExpressionStatement",
"src": "195:21:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "225:27:5",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "240:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "247:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "236:3:5"
},
"nodeType": "YulFunctionCall",
"src": "236:16:5"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "229:3:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "290:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "299:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "302:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "292:6:5"
},
"nodeType": "YulFunctionCall",
"src": "292:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "292:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "271:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "276:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "267:3:5"
},
"nodeType": "YulFunctionCall",
"src": "267:16:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "285:3:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "264:2:5"
},
"nodeType": "YulFunctionCall",
"src": "264:25:5"
},
"nodeType": "YulIf",
"src": "261:2:5"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "337:3:5"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "342:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "347:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "315:21:5"
},
"nodeType": "YulFunctionCall",
"src": "315:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "315:39:5"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:5",
"type": ""
}
],
"src": "7:353:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "453:215:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "502:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "511:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "514:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "504:6:5"
},
"nodeType": "YulFunctionCall",
"src": "504:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "504:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "481:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "489:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "477:3:5"
},
"nodeType": "YulFunctionCall",
"src": "477:17:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "496:3:5"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "473:3:5"
},
"nodeType": "YulFunctionCall",
"src": "473:27:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "466:6:5"
},
"nodeType": "YulFunctionCall",
"src": "466:35:5"
},
"nodeType": "YulIf",
"src": "463:2:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "527:27:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "547:6:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "541:5:5"
},
"nodeType": "YulFunctionCall",
"src": "541:13:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "531:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "563:99:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "635:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "643:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "631:3:5"
},
"nodeType": "YulFunctionCall",
"src": "631:17:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "650:6:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "658:3:5"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "572:58:5"
},
"nodeType": "YulFunctionCall",
"src": "572:90:5"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "563:5:5"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "431:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "439:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "447:5:5",
"type": ""
}
],
"src": "380:288:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "788:538:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "834:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "843:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "846:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "836:6:5"
},
"nodeType": "YulFunctionCall",
"src": "836:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "836:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "809:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "818:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "805:3:5"
},
"nodeType": "YulFunctionCall",
"src": "805:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "801:3:5"
},
"nodeType": "YulFunctionCall",
"src": "801:32:5"
},
"nodeType": "YulIf",
"src": "798:2:5"
},
{
"nodeType": "YulBlock",
"src": "860:224:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "875:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "899:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "910:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "895:3:5"
},
"nodeType": "YulFunctionCall",
"src": "895:17:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "889:5:5"
},
"nodeType": "YulFunctionCall",
"src": "889:24:5"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "879:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "960:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "969:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "972:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "962:6:5"
},
"nodeType": "YulFunctionCall",
"src": "962:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "962:12:5"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "932:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "940:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "929:2:5"
},
"nodeType": "YulFunctionCall",
"src": "929:30:5"
},
"nodeType": "YulIf",
"src": "926:2:5"
},
{
"nodeType": "YulAssignment",
"src": "990:84:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1046:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1057:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1042:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1042:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1066:7:5"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1000:41:5"
},
"nodeType": "YulFunctionCall",
"src": "1000:74:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "990:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1094:225:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1109:39:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1133:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1144:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1129:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1129:18:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1123:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1123:25:5"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1113:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1195:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1204:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1207:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1197:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1197:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1197:12:5"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1167:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1175:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1164:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1164:30:5"
},
"nodeType": "YulIf",
"src": "1161:2:5"
},
{
"nodeType": "YulAssignment",
"src": "1225:84:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1281:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1292:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1277:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1277:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1301:7:5"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1235:41:5"
},
"nodeType": "YulFunctionCall",
"src": "1235:74:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1225:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "750:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "761:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "773:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "781:6:5",
"type": ""
}
],
"src": "674:652:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1372:243:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1382:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1398:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1392:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1392:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1382:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1410:35:5",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1432:6:5"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1440:4:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1428:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1428:17:5"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1414:10:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1556:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1558:16:5"
},
"nodeType": "YulFunctionCall",
"src": "1558:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "1558:18:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1499:10:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1511:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1496:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1496:34:5"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1535:10:5"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1547:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1532:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1532:22:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1493:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1493:62:5"
},
"nodeType": "YulIf",
"src": "1490:2:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1594:2:5",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1598:10:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1587:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1587:22:5"
},
"nodeType": "YulExpressionStatement",
"src": "1587:22:5"
}
]
},
"name": "allocateMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1356:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1365:6:5",
"type": ""
}
],
"src": "1332:283:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1688:265:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1793:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1795:16:5"
},
"nodeType": "YulFunctionCall",
"src": "1795:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "1795:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1765:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1773:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1762:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1762:30:5"
},
"nodeType": "YulIf",
"src": "1759:2:5"
},
{
"nodeType": "YulAssignment",
"src": "1845:41:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1861:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1869:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1857:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1857:17:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1880:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1876:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1876:9:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1853:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1853:33:5"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1845:4:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1923:23:5",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1935:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1941:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1931:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1931:15:5"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1923:4:5"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1672:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1683:4:5",
"type": ""
}
],
"src": "1621:332:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2008:258:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2018:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2027:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2022:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2087:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2112:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2117:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2108:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2108:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2131:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2136:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2127:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2127:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2121:5:5"
},
"nodeType": "YulFunctionCall",
"src": "2121:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2101:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2101:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "2101:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2048:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2051:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2045:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2045:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2059:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2061:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2070:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2073:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2066:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2066:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2061:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2041:3:5",
"statements": []
},
"src": "2037:113:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2184:76:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2234:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2239:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2230:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2230:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2248:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2223:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2223:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "2223:27:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2165:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2168:6:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2162:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2162:13:5"
},
"nodeType": "YulIf",
"src": "2159:2:5"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1990:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1995:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2000:6:5",
"type": ""
}
],
"src": "1959:307:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2323:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2333:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2347:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2353:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2343:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2343:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2333:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2364:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2394:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2400:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2390:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2390:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2368:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2441:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2455:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2469:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2477:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2465:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2465:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2455:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2421:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2414:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2414:26:5"
},
"nodeType": "YulIf",
"src": "2411:2:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2544:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2558:16:5"
},
"nodeType": "YulFunctionCall",
"src": "2558:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "2558:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2508:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2531:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2539:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2528:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2528:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2505:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2505:38:5"
},
"nodeType": "YulIf",
"src": "2502:2:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2307:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2316:6:5",
"type": ""
}
],
"src": "2272:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2626:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2643:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2646:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2636:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2636:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "2636:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2743:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2733:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2733:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "2733:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2764:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2767:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2757:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2757:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "2757:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "2598:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2812:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2829:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2832:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2822:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2822:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "2822:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2926:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2929:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2919:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2919:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "2919:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2950:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2953:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2943:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2943:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "2943:15:5"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "2784:180:5"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocateMemory(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(0, 0) }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocateMemory(size) -> memPtr {\n memPtr := mload(64)\n let newFreePtr := add(memPtr, 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 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 // round up\n size := and(add(length, 0x1f), not(0x1f))\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function 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 function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040516200153d3803806200153d833981810160405281019062000037919062000193565b81600390805190602001906200004f92919062000071565b5080600490805190602001906200006892919062000071565b50505062000337565b8280546200007f90620002a3565b90600052602060002090601f016020900481019282620000a35760008555620000ef565b82601f10620000be57805160ff1916838001178555620000ef565b82800160010185558215620000ef579182015b82811115620000ee578251825591602001919060010190620000d1565b5b509050620000fe919062000102565b5090565b5b808211156200011d57600081600090555060010162000103565b5090565b60006200013862000132846200023a565b62000206565b9050828152602081018484840111156200015157600080fd5b6200015e8482856200026d565b509392505050565b600082601f8301126200017857600080fd5b81516200018a84826020860162000121565b91505092915050565b60008060408385031215620001a757600080fd5b600083015167ffffffffffffffff811115620001c257600080fd5b620001d08582860162000166565b925050602083015167ffffffffffffffff811115620001ee57600080fd5b620001fc8582860162000166565b9150509250929050565b6000604051905081810181811067ffffffffffffffff8211171562000230576200022f62000308565b5b8060405250919050565b600067ffffffffffffffff82111562000258576200025762000308565b5b601f19601f8301169050602081019050919050565b60005b838110156200028d57808201518184015260208101905062000270565b838111156200029d576000848401525b50505050565b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d2620002d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6111f680620003476000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ebf565b60405180910390f35b6100e660048036038101906100e19190610b5e565b610308565b6040516100f39190610ea4565b60405180910390f35b61010461032b565b6040516101119190610fc1565b60405180910390f35b610134600480360381019061012f9190610b0f565b610335565b6040516101419190610ea4565b60405180910390f35b610152610364565b60405161015f9190610fdc565b60405180910390f35b610182600480360381019061017d9190610b5e565b61036d565b60405161018f9190610ea4565b60405180910390f35b6101b260048036038101906101ad9190610aaa565b6103a4565b6040516101bf9190610fc1565b60405180910390f35b6101d06103ec565b6040516101dd9190610ebf565b60405180910390f35b61020060048036038101906101fb9190610b5e565b61047e565b60405161020d9190610ea4565b60405180910390f35b610230600480360381019061022b9190610b5e565b6104f5565b60405161023d9190610ea4565b60405180910390f35b610260600480360381019061025b9190610ad3565b610518565b60405161026d9190610fc1565b60405180910390f35b606060038054610285906110f1565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110f1565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190611013565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb906110f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906110f1565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610fa1565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610f81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610f01565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610fc1565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190610f21565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590610f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590610ee1565b60405180910390fd5b6108e9838383610a76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690610f41565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5d9190610fc1565b60405180910390a3610a70848484610a7b565b50505050565b505050565b505050565b600081359050610a8f81611192565b92915050565b600081359050610aa4816111a9565b92915050565b600060208284031215610abc57600080fd5b6000610aca84828501610a80565b91505092915050565b60008060408385031215610ae657600080fd5b6000610af485828601610a80565b9250506020610b0585828601610a80565b9150509250929050565b600080600060608486031215610b2457600080fd5b6000610b3286828701610a80565b9350506020610b4386828701610a80565b9250506040610b5486828701610a95565b9150509250925092565b60008060408385031215610b7157600080fd5b6000610b7f85828601610a80565b9250506020610b9085828601610a95565b9150509250929050565b610ba38161107b565b82525050565b6000610bb482610ff7565b610bbe8185611002565b9350610bce8185602086016110be565b610bd781611181565b840191505092915050565b6000610bef602383611002565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610c55602283611002565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610cbb601d83611002565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000610cfb602683611002565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d61602583611002565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610dc7602483611002565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e2d602583611002565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610e8f816110a7565b82525050565b610e9e816110b1565b82525050565b6000602082019050610eb96000830184610b9a565b92915050565b60006020820190508181036000830152610ed98184610ba9565b905092915050565b60006020820190508181036000830152610efa81610be2565b9050919050565b60006020820190508181036000830152610f1a81610c48565b9050919050565b60006020820190508181036000830152610f3a81610cae565b9050919050565b60006020820190508181036000830152610f5a81610cee565b9050919050565b60006020820190508181036000830152610f7a81610d54565b9050919050565b60006020820190508181036000830152610f9a81610dba565b9050919050565b60006020820190508181036000830152610fba81610e20565b9050919050565b6000602082019050610fd66000830184610e86565b92915050565b6000602082019050610ff16000830184610e95565b92915050565b600081519050919050565b600082825260208201905092915050565b600061101e826110a7565b9150611029836110a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561105e5761105d611123565b5b828201905092915050565b600061107482611087565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156110dc5780820151818401526020810190506110c1565b838111156110eb576000848401525b50505050565b6000600282049050600182168061110957607f821691505b6020821081141561111d5761111c611152565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61119b81611069565b81146111a657600080fd5b50565b6111b2816110a7565b81146111bd57600080fd5b5056fea2646970667358221220665ccb43423a002886c0ede553cf6c9448819aa7bb72ed5c21af8cf83cb793ed64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x153D CODESIZE SUB DUP1 PUSH3 0x153D DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x193 JUMP JUMPDEST DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x68 SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP POP POP PUSH3 0x337 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x7F SWAP1 PUSH3 0x2A3 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xA3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xBE JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xEF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xEE JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xD1 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xFE SWAP2 SWAP1 PUSH3 0x102 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x11D JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x103 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x138 PUSH3 0x132 DUP5 PUSH3 0x23A JUMP JUMPDEST PUSH3 0x206 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x151 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x15E DUP5 DUP3 DUP6 PUSH3 0x26D JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x178 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0x18A DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x121 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1D0 DUP6 DUP3 DUP7 ADD PUSH3 0x166 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1FC DUP6 DUP3 DUP7 ADD PUSH3 0x166 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP DUP2 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x230 JUMPI PUSH3 0x22F PUSH3 0x308 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x258 JUMPI PUSH3 0x257 PUSH3 0x308 JUMP JUMPDEST JUMPDEST PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x28D JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x270 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x29D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2BC JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x2D3 JUMPI PUSH3 0x2D2 PUSH3 0x2D9 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x11F6 DUP1 PUSH3 0x347 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 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xB0F JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xFDC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xAAA JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xAD3 JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x10F1 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 0x2B1 SWAP1 PUSH2 0x10F1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE 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 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x772 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0x1013 JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0x10F1 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 0x427 SWAP1 PUSH2 0x10F1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 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 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xFA1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x617 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60E SWAP1 PUSH2 0xF81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x687 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67E SWAP1 PUSH2 0xF01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x765 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77E DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F8 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E1 SWAP1 PUSH2 0xF21 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F7 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x865 SWAP1 PUSH2 0xF61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D5 SWAP1 PUSH2 0xEE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA76 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x966 SWAP1 PUSH2 0xF41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA5D SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA70 DUP5 DUP5 DUP5 PUSH2 0xA7B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA8F DUP2 PUSH2 0x1192 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAA4 DUP2 PUSH2 0x11A9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xABC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xACA DUP5 DUP3 DUP6 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAF4 DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB05 DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB24 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB32 DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB43 DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB54 DUP7 DUP3 DUP8 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB7F DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB90 DUP6 DUP3 DUP7 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA3 DUP2 PUSH2 0x107B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBB4 DUP3 PUSH2 0xFF7 JUMP JUMPDEST PUSH2 0xBBE DUP2 DUP6 PUSH2 0x1002 JUMP JUMPDEST SWAP4 POP PUSH2 0xBCE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10BE JUMP JUMPDEST PUSH2 0xBD7 DUP2 PUSH2 0x1181 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBEF PUSH1 0x23 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC55 PUSH1 0x22 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCBB PUSH1 0x1D DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCFB PUSH1 0x26 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD61 PUSH1 0x25 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDC7 PUSH1 0x24 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE2D PUSH1 0x25 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE8F DUP2 PUSH2 0x10A7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xE9E DUP2 PUSH2 0x10B1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEB9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xED9 DUP2 DUP5 PUSH2 0xBA9 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEFA DUP2 PUSH2 0xBE2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF1A DUP2 PUSH2 0xC48 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF3A DUP2 PUSH2 0xCAE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF5A DUP2 PUSH2 0xCEE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF7A DUP2 PUSH2 0xD54 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF9A DUP2 PUSH2 0xDBA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFBA DUP2 PUSH2 0xE20 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFD6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE86 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFF1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE95 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x101E DUP3 PUSH2 0x10A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1029 DUP4 PUSH2 0x10A7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x105E JUMPI PUSH2 0x105D PUSH2 0x1123 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1074 DUP3 PUSH2 0x1087 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10DC JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10C1 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10EB JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1109 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x111D JUMPI PUSH2 0x111C PUSH2 0x1152 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x119B DUP2 PUSH2 0x1069 JUMP JUMPDEST DUP2 EQ PUSH2 0x11A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11B2 DUP2 PUSH2 0x10A7 JUMP JUMPDEST DUP2 EQ PUSH2 0x11BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH7 0x5CCB43423A0028 DUP7 0xC0 0xED 0xE5 MSTORE8 0xCF PUSH13 0x9448819AA7BB72ED5C21AF8CF8 EXTCODECOPY 0xB7 SWAP4 0xED PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "1401:11610:0:-:0;;;1976:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2050:5;2042;:13;;;;;;;;;;;;:::i;:::-;;2075:7;2065;:17;;;;;;;;;;;;:::i;:::-;;1976:113;;1401:11610;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:353:5:-;;121:65;136:49;178:6;136:49;:::i;:::-;121:65;:::i;:::-;112:74;;209:6;202:5;195:21;247:4;240:5;236:16;285:3;276:6;271:3;267:16;264:25;261:2;;;302:1;299;292:12;261:2;315:39;347:6;342:3;337;315:39;:::i;:::-;102:258;;;;;;:::o;380:288::-;;496:3;489:4;481:6;477:17;473:27;463:2;;514:1;511;504:12;463:2;547:6;541:13;572:90;658:3;650:6;643:4;635:6;631:17;572:90;:::i;:::-;563:99;;453:215;;;;;:::o;674:652::-;;;830:2;818:9;809:7;805:23;801:32;798:2;;;846:1;843;836:12;798:2;910:1;899:9;895:17;889:24;940:18;932:6;929:30;926:2;;;972:1;969;962:12;926:2;1000:74;1066:7;1057:6;1046:9;1042:22;1000:74;:::i;:::-;990:84;;860:224;1144:2;1133:9;1129:18;1123:25;1175:18;1167:6;1164:30;1161:2;;;1207:1;1204;1197:12;1161:2;1235:74;1301:7;1292:6;1281:9;1277:22;1235:74;:::i;:::-;1225:84;;1094:225;788:538;;;;;:::o;1332:283::-;;1398:2;1392:9;1382:19;;1440:4;1432:6;1428:17;1547:6;1535:10;1532:22;1511:18;1499:10;1496:34;1493:62;1490:2;;;1558:18;;:::i;:::-;1490:2;1598:10;1594:2;1587:22;1372:243;;;;:::o;1621:332::-;;1773:18;1765:6;1762:30;1759:2;;;1795:18;;:::i;:::-;1759:2;1880:4;1876:9;1869:4;1861:6;1857:17;1853:33;1845:41;;1941:4;1935;1931:15;1923:23;;1688:265;;;:::o;1959:307::-;2027:1;2037:113;2051:6;2048:1;2045:13;2037:113;;;2136:1;2131:3;2127:11;2121:18;2117:1;2112:3;2108:11;2101:39;2073:2;2070:1;2066:10;2061:15;;2037:113;;;2168:6;2165:1;2162:13;2159:2;;;2248:1;2239:6;2234:3;2230:16;2223:27;2159:2;2008:258;;;;:::o;2272:320::-;;2353:1;2347:4;2343:12;2333:22;;2400:1;2394:4;2390:12;2421:18;2411:2;;2477:4;2469:6;2465:17;2455:27;;2411:2;2539;2531:6;2528:14;2508:18;2505:38;2502:2;;;2558:18;;:::i;:::-;2502:2;2323:269;;;;:::o;2598:180::-;2646:77;2643:1;2636:88;2743:4;2740:1;2733:15;2767:4;2764:1;2757:15;2784:180;2832:77;2829:1;2822:88;2929:4;2926:1;2919:15;2953:4;2950:1;2943:15;1401:11610:0;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11680:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:5"
},
"nodeType": "YulFunctionCall",
"src": "78:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:5"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:5"
},
"nodeType": "YulFunctionCall",
"src": "107:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:5"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:5",
"type": ""
}
],
"src": "7:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:5"
},
"nodeType": "YulFunctionCall",
"src": "223:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:5"
},
"nodeType": "YulFunctionCall",
"src": "252:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:5"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:5",
"type": ""
}
],
"src": "152:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:5"
},
"nodeType": "YulFunctionCall",
"src": "411:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:5"
},
"nodeType": "YulFunctionCall",
"src": "380:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:5"
},
"nodeType": "YulFunctionCall",
"src": "376:32:5"
},
"nodeType": "YulIf",
"src": "373:2:5"
},
{
"nodeType": "YulBlock",
"src": "435:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:5"
},
"nodeType": "YulFunctionCall",
"src": "510:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:5"
},
"nodeType": "YulFunctionCall",
"src": "489:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:5",
"type": ""
}
],
"src": "297:262:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:5"
},
"nodeType": "YulFunctionCall",
"src": "696:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:5"
},
"nodeType": "YulFunctionCall",
"src": "665:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:5"
},
"nodeType": "YulFunctionCall",
"src": "661:32:5"
},
"nodeType": "YulIf",
"src": "658:2:5"
},
{
"nodeType": "YulBlock",
"src": "720:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:5"
},
"nodeType": "YulFunctionCall",
"src": "795:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:5"
},
"nodeType": "YulFunctionCall",
"src": "774:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:5"
},
"nodeType": "YulFunctionCall",
"src": "923:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:5"
},
"nodeType": "YulFunctionCall",
"src": "902:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:5",
"type": ""
}
],
"src": "565:407:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:5"
},
"nodeType": "YulIf",
"src": "1088:2:5"
},
{
"nodeType": "YulBlock",
"src": "1150:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:5",
"type": ""
}
],
"src": "978:552:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:5"
},
"nodeType": "YulIf",
"src": "1629:2:5"
},
{
"nodeType": "YulBlock",
"src": "1691:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:5"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:5",
"type": ""
}
],
"src": "1536:407:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2008:50:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2025:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2045:5:5"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2030:14:5"
},
"nodeType": "YulFunctionCall",
"src": "2030:21:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2018:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2018:34:5"
},
"nodeType": "YulExpressionStatement",
"src": "2018:34:5"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1996:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2003:3:5",
"type": ""
}
],
"src": "1949:109:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2156:272:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2166:53:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2213:5:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2180:32:5"
},
"nodeType": "YulFunctionCall",
"src": "2180:39:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2170:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2228:78:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2294:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2299:6:5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2235:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2235:71:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2228:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2341:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2348:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2337:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2337:16:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2355:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2360:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2315:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2315:52:5"
},
"nodeType": "YulExpressionStatement",
"src": "2315:52:5"
},
{
"nodeType": "YulAssignment",
"src": "2376:46:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2387:3:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2414:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2392:21:5"
},
"nodeType": "YulFunctionCall",
"src": "2392:29:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2383:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2383:39:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2376:3:5"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2137:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2144:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2152:3:5",
"type": ""
}
],
"src": "2064:364:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2580:221:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2590:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2656:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2661:2:5",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2597:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2597:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2590:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2685:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2690:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2681:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2681:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2694:34:5",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2674:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2674:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "2674:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2750:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2755:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2746:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2746:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2760:5:5",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2739:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2739:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "2739:27:5"
},
{
"nodeType": "YulAssignment",
"src": "2776:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2787:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2792:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2783:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2783:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2776:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2568:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2576:3:5",
"type": ""
}
],
"src": "2434:367:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2953:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2963:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3029:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3034:2:5",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2970:58:5"
},
"nodeType": "YulFunctionCall",
"src": "2970:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2963:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3058:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3063:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3054:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3054:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3067:34:5",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3047:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3047:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "3047:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3123:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3128:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3119:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3119:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3133:4:5",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3112:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3112:26:5"
},
"nodeType": "YulExpressionStatement",
"src": "3112:26:5"
},
{
"nodeType": "YulAssignment",
"src": "3148:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3159:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3164:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3155:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3155:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3148:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2941:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2949:3:5",
"type": ""
}
],
"src": "2807:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3325:181:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3335:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3401:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3406:2:5",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3342:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3342:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3335:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3430:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3435:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3426:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3426:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3439:31:5",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3419:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3419:52:5"
},
"nodeType": "YulExpressionStatement",
"src": "3419:52:5"
},
{
"nodeType": "YulAssignment",
"src": "3481:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3492:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3497:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3488:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3488:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3481:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3313:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3321:3:5",
"type": ""
}
],
"src": "3179:327:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3658:224:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3668:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3734:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3739:2:5",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3675:58:5"
},
"nodeType": "YulFunctionCall",
"src": "3675:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3668:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3763:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3768:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3759:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3759:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3772:34:5",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3752:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3752:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "3752:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3828:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3833:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3824:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3824:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3838:8:5",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3817:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3817:30:5"
},
"nodeType": "YulExpressionStatement",
"src": "3817:30:5"
},
{
"nodeType": "YulAssignment",
"src": "3857:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3868:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3873:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3864:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3864:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3857:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3646:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3654:3:5",
"type": ""
}
],
"src": "3512:370:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4034:223:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4044:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4110:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4115:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4051:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4051:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4044:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4139:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4144:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4135:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4135:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4148:34:5",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4128:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4128:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "4128:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4204:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4209:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4200:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4200:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4214:7:5",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4193:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4193:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "4193:29:5"
},
{
"nodeType": "YulAssignment",
"src": "4232:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4243:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4248:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4239:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4239:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4232:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4022:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4030:3:5",
"type": ""
}
],
"src": "3888:369:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4409:222:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4419:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4485:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4490:2:5",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4426:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4426:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4419:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4514:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4519:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4510:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4510:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4523:34:5",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4503:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4503:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "4503:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4579:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4584:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4575:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4575:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4589:6:5",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4568:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4568:28:5"
},
"nodeType": "YulExpressionStatement",
"src": "4568:28:5"
},
{
"nodeType": "YulAssignment",
"src": "4606:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4617:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4622:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4613:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4613:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4606:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4397:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4405:3:5",
"type": ""
}
],
"src": "4263:368:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4783:223:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4793:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4859:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4864:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4800:58:5"
},
"nodeType": "YulFunctionCall",
"src": "4800:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4793:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4888:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4893:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4884:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4884:11:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4897:34:5",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4877:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4877:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "4877:55:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4953:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4958:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4949:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4949:12:5"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4963:7:5",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4942:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4942:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "4942:29:5"
},
{
"nodeType": "YulAssignment",
"src": "4981:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4992:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4997:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4988:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4988:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4981:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4771:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4779:3:5",
"type": ""
}
],
"src": "4637:369:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5077:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5094:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5117:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5099:17:5"
},
"nodeType": "YulFunctionCall",
"src": "5099:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5087:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5087:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "5087:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5065:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5072:3:5",
"type": ""
}
],
"src": "5012:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5197:51:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5214:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5235:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "5219:15:5"
},
"nodeType": "YulFunctionCall",
"src": "5219:22:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5207:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5207:35:5"
},
"nodeType": "YulExpressionStatement",
"src": "5207:35:5"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5185:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5192:3:5",
"type": ""
}
],
"src": "5136:112:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5346:118:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5356:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5368:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5379:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5364:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5364:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5356:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5430:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5443:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5454:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5439:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5439:17:5"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "5392:37:5"
},
"nodeType": "YulFunctionCall",
"src": "5392:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "5392:65:5"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5318:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5330:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5341:4:5",
"type": ""
}
],
"src": "5254:210:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5588:195:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5598:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5610:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5621:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5606:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5606:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5598:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5645:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5656:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5641:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5641:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5664:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5670:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5660:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5660:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5634:6:5"
},
"nodeType": "YulFunctionCall",
"src": "5634:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "5634:47:5"
},
{
"nodeType": "YulAssignment",
"src": "5690:86:5",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5762:6:5"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5771:4:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5698:63:5"
},
"nodeType": "YulFunctionCall",
"src": "5698:78:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5690:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5560:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5572:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5583:4:5",
"type": ""
}
],
"src": "5470:313:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5960:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5970:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5982:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5993:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5978:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5978:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5970:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6017:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6028:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6013:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6013:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6036:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6042:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6032:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6032:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6006:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6006:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6006:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6062:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6196:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6070:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6070:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6062:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5940:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5955:4:5",
"type": ""
}
],
"src": "5789:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6385:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6395:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6407:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6418:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6403:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6403:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6395:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6442:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6453:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6438:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6438:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6461:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6467:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6457:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6457:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6431:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6431:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6431:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6487:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6621:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6495:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6495:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6487:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6365:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6380:4:5",
"type": ""
}
],
"src": "6214:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6810:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6820:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6832:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6843:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6828:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6828:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6820:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6867:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6878:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6863:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6863:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6886:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6892:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6882:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6882:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6856:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6856:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "6856:47:5"
},
{
"nodeType": "YulAssignment",
"src": "6912:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7046:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6920:124:5"
},
"nodeType": "YulFunctionCall",
"src": "6920:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6912:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6790:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6805:4:5",
"type": ""
}
],
"src": "6639:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7235:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7245:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7257:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7268:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7253:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7253:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7245:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7292:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7303:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7288:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7288:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7311:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7317:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7307:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7307:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7281:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7281:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7281:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7337:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7471:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7345:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7345:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7337:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7215:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7230:4:5",
"type": ""
}
],
"src": "7064:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7660:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7670:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7682:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7693:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7678:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7678:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7670:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7717:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7728:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7713:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7713:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7736:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7742:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7732:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7732:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7706:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7706:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7706:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7762:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7896:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7770:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7770:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7762:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7640:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7655:4:5",
"type": ""
}
],
"src": "7489:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8085:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8095:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8107:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8118:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8103:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8103:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8095:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8142:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8153:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8138:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8138:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8161:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8167:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8157:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8157:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8131:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8131:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8131:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8187:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8321:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8195:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8195:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8187:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8065:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8080:4:5",
"type": ""
}
],
"src": "7914:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8510:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8520:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8532:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8543:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8528:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8528:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8520:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8567:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8578:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8563:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8563:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8586:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8592:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8582:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8582:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8556:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8556:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "8556:47:5"
},
{
"nodeType": "YulAssignment",
"src": "8612:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8746:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8620:124:5"
},
"nodeType": "YulFunctionCall",
"src": "8620:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8612:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8490:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8505:4:5",
"type": ""
}
],
"src": "8339:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8862:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8872:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8884:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8895:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8880:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8880:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8872:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8952:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8965:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8976:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8961:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8961:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "8908:43:5"
},
"nodeType": "YulFunctionCall",
"src": "8908:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "8908:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8834:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8846:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8857:4:5",
"type": ""
}
],
"src": "8764:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9086:120:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9096:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9108:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9119:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9104:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9104:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9096:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9172:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9185:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9196:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9181:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9181:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "9132:39:5"
},
"nodeType": "YulFunctionCall",
"src": "9132:67:5"
},
"nodeType": "YulExpressionStatement",
"src": "9132:67:5"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9058:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9070:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9081:4:5",
"type": ""
}
],
"src": "8992:214:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9271:40:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9282:22:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9298:5:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9292:5:5"
},
"nodeType": "YulFunctionCall",
"src": "9292:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9282:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9254:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9264:6:5",
"type": ""
}
],
"src": "9212:99:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9413:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9430:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9435:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9423:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9423:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "9423:19:5"
},
{
"nodeType": "YulAssignment",
"src": "9451:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9470:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9475:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9466:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9466:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9451:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9385:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9390:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9401:11:5",
"type": ""
}
],
"src": "9317:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9536:261:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9546:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9569:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9551:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9551:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9546:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9580:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9603:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9585:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9585:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9580:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9743:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9745:16:5"
},
"nodeType": "YulFunctionCall",
"src": "9745:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "9745:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9664:1:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9671:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9739:1:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9667:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9667:74:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9661:2:5"
},
"nodeType": "YulFunctionCall",
"src": "9661:81:5"
},
"nodeType": "YulIf",
"src": "9658:2:5"
},
{
"nodeType": "YulAssignment",
"src": "9775:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9786:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9789:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9782:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9782:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9775:3:5"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9523:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9526:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "9532:3:5",
"type": ""
}
],
"src": "9492:305:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9848:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9858:35:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9887:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "9869:17:5"
},
"nodeType": "YulFunctionCall",
"src": "9869:24:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9858:7:5"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9830:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9840:7:5",
"type": ""
}
],
"src": "9803:96:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9947:48:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9957:32:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9982:5:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "9975:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9975:13:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "9968:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9968:21:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9957:7:5"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9929:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9939:7:5",
"type": ""
}
],
"src": "9905:90:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10046:81:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10056:65:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10071:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10078:42:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10067:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10067:54:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10056:7:5"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10028:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10038:7:5",
"type": ""
}
],
"src": "10001:126:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10178:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10188:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "10199:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10188:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10160:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10170:7:5",
"type": ""
}
],
"src": "10133:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10259:43:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10269:27:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10284:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10291:4:5",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10280:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10280:16:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10269:7:5"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10241:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10251:7:5",
"type": ""
}
],
"src": "10216:86:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10357:258:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10367:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10376:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10371:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10436:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10461:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10466:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10457:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10457:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10480:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10485:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10476:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10476:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10470:5:5"
},
"nodeType": "YulFunctionCall",
"src": "10470:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10450:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10450:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "10450:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10397:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10400:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10394:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10394:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10408:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10410:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10419:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10422:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10415:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10415:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10410:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10390:3:5",
"statements": []
},
"src": "10386:113:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10533:76:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10583:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10588:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10579:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10579:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10597:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10572:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10572:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "10572:27:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10514:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10517:6:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10511:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10511:13:5"
},
"nodeType": "YulIf",
"src": "10508:2:5"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10339:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10344:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10349:6:5",
"type": ""
}
],
"src": "10308:307:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10672:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10682:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10696:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10702:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10692:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10692:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10682:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10713:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10743:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10749:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10739:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10739:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10717:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10790:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10804:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10818:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10826:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10814:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10814:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10804:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10770:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10763:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10763:26:5"
},
"nodeType": "YulIf",
"src": "10760:2:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10893:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10907:16:5"
},
"nodeType": "YulFunctionCall",
"src": "10907:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "10907:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10857:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10880:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10888:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10877:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10877:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10854:2:5"
},
"nodeType": "YulFunctionCall",
"src": "10854:38:5"
},
"nodeType": "YulIf",
"src": "10851:2:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10656:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10665:6:5",
"type": ""
}
],
"src": "10621:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10975:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10992:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10995:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10985:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10985:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "10985:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11089:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11092:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11082:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11082:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11082:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11113:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11116:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11106:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11106:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11106:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "10947:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11161:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11178:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11181:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11171:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11171:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "11171:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11275:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11278:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11268:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11268:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11268:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11299:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11302:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11292:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11292:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "11292:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "11133:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11367:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11377:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11395:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11402:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11391:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11391:14:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11411:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "11407:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11407:7:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11387:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11387:28:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "11377:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11350:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "11360:6:5",
"type": ""
}
],
"src": "11319:102:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11470:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11527:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11536:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11539:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11529:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11529:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "11529:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11493:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11518:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "11500:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11500:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11490:2:5"
},
"nodeType": "YulFunctionCall",
"src": "11490:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11483:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11483:43:5"
},
"nodeType": "YulIf",
"src": "11480:2:5"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11463:5:5",
"type": ""
}
],
"src": "11427:122:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11598:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11655:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11664:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11667:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11657:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11657:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "11657:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11621:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11646:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11628:17:5"
},
"nodeType": "YulFunctionCall",
"src": "11628:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11618:2:5"
},
"nodeType": "YulFunctionCall",
"src": "11618:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11611:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11611:43:5"
},
"nodeType": "YulIf",
"src": "11608:2:5"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11591:5:5",
"type": ""
}
],
"src": "11555:122:5"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n\n mstore(add(pos, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(pos, 32), \"ess\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n\n mstore(add(pos, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(pos, 32), \"ss\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n\n mstore(add(pos, 0), \"ERC20: insufficient allowance\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n\n mstore(add(pos, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(pos, 32), \"alance\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(pos, 32), \"dress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n\n mstore(add(pos, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(pos, 32), \"ress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(pos, 32), \" zero\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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 array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function 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_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ebf565b60405180910390f35b6100e660048036038101906100e19190610b5e565b610308565b6040516100f39190610ea4565b60405180910390f35b61010461032b565b6040516101119190610fc1565b60405180910390f35b610134600480360381019061012f9190610b0f565b610335565b6040516101419190610ea4565b60405180910390f35b610152610364565b60405161015f9190610fdc565b60405180910390f35b610182600480360381019061017d9190610b5e565b61036d565b60405161018f9190610ea4565b60405180910390f35b6101b260048036038101906101ad9190610aaa565b6103a4565b6040516101bf9190610fc1565b60405180910390f35b6101d06103ec565b6040516101dd9190610ebf565b60405180910390f35b61020060048036038101906101fb9190610b5e565b61047e565b60405161020d9190610ea4565b60405180910390f35b610230600480360381019061022b9190610b5e565b6104f5565b60405161023d9190610ea4565b60405180910390f35b610260600480360381019061025b9190610ad3565b610518565b60405161026d9190610fc1565b60405180910390f35b606060038054610285906110f1565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110f1565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190611013565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb906110f1565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906110f1565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610fa1565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610f81565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610f01565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610fc1565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190610f21565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590610f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590610ee1565b60405180910390fd5b6108e9838383610a76565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690610f41565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a5d9190610fc1565b60405180910390a3610a70848484610a7b565b50505050565b505050565b505050565b600081359050610a8f81611192565b92915050565b600081359050610aa4816111a9565b92915050565b600060208284031215610abc57600080fd5b6000610aca84828501610a80565b91505092915050565b60008060408385031215610ae657600080fd5b6000610af485828601610a80565b9250506020610b0585828601610a80565b9150509250929050565b600080600060608486031215610b2457600080fd5b6000610b3286828701610a80565b9350506020610b4386828701610a80565b9250506040610b5486828701610a95565b9150509250925092565b60008060408385031215610b7157600080fd5b6000610b7f85828601610a80565b9250506020610b9085828601610a95565b9150509250929050565b610ba38161107b565b82525050565b6000610bb482610ff7565b610bbe8185611002565b9350610bce8185602086016110be565b610bd781611181565b840191505092915050565b6000610bef602383611002565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610c55602283611002565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610cbb601d83611002565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000610cfb602683611002565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d61602583611002565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610dc7602483611002565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e2d602583611002565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610e8f816110a7565b82525050565b610e9e816110b1565b82525050565b6000602082019050610eb96000830184610b9a565b92915050565b60006020820190508181036000830152610ed98184610ba9565b905092915050565b60006020820190508181036000830152610efa81610be2565b9050919050565b60006020820190508181036000830152610f1a81610c48565b9050919050565b60006020820190508181036000830152610f3a81610cae565b9050919050565b60006020820190508181036000830152610f5a81610cee565b9050919050565b60006020820190508181036000830152610f7a81610d54565b9050919050565b60006020820190508181036000830152610f9a81610dba565b9050919050565b60006020820190508181036000830152610fba81610e20565b9050919050565b6000602082019050610fd66000830184610e86565b92915050565b6000602082019050610ff16000830184610e95565b92915050565b600081519050919050565b600082825260208201905092915050565b600061101e826110a7565b9150611029836110a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561105e5761105d611123565b5b828201905092915050565b600061107482611087565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156110dc5780820151818401526020810190506110c1565b838111156110eb576000848401525b50505050565b6000600282049050600182168061110957607f821691505b6020821081141561111d5761111c611152565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61119b81611069565b81146111a657600080fd5b50565b6111b2816110a7565b81146111bd57600080fd5b5056fea2646970667358221220665ccb43423a002886c0ede553cf6c9448819aa7bb72ed5c21af8cf83cb793ed64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x168 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x198 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1C8 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x1E6 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x216 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x246 JUMPI PUSH2 0xA9 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x11A JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x14A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x32B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x111 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x134 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12F SWAP2 SWAP1 PUSH2 0xB0F JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x152 PUSH2 0x364 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15F SWAP2 SWAP1 PUSH2 0xFDC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x182 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17D SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AD SWAP2 SWAP1 PUSH2 0xAAA JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1D0 PUSH2 0x3EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP2 SWAP1 PUSH2 0xEBF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x200 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FB SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xEA4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x25B SWAP2 SWAP1 PUSH2 0xAD3 JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x10F1 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 0x2B1 SWAP1 PUSH2 0x10F1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2FE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2D3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2FE 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 0x2E1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x313 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x320 DUP2 DUP6 DUP6 PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x340 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x34D DUP6 DUP3 DUP6 PUSH2 0x772 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x378 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP2 DUP6 DUP6 PUSH2 0x38A DUP6 DUP10 PUSH2 0x518 JUMP JUMPDEST PUSH2 0x394 SWAP2 SWAP1 PUSH2 0x1013 JUMP JUMPDEST PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x3FB SWAP1 PUSH2 0x10F1 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 0x427 SWAP1 PUSH2 0x10F1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x474 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x449 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x474 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 0x457 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x489 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x497 DUP3 DUP7 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4D3 SWAP1 PUSH2 0xFA1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4E9 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x500 PUSH2 0x59F JUMP JUMPDEST SWAP1 POP PUSH2 0x50D DUP2 DUP6 DUP6 PUSH2 0x7FE JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x617 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60E SWAP1 PUSH2 0xF81 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x687 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67E SWAP1 PUSH2 0xF01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x765 SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77E DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F8 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7EA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7E1 SWAP1 PUSH2 0xF21 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F7 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x5A7 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x86E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x865 SWAP1 PUSH2 0xF61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D5 SWAP1 PUSH2 0xEE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA76 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0x96F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x966 SWAP1 PUSH2 0xF41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA5D SWAP2 SWAP1 PUSH2 0xFC1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA70 DUP5 DUP5 DUP5 PUSH2 0xA7B JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA8F DUP2 PUSH2 0x1192 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAA4 DUP2 PUSH2 0x11A9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xABC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xACA DUP5 DUP3 DUP6 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAF4 DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB05 DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB24 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB32 DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB43 DUP7 DUP3 DUP8 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB54 DUP7 DUP3 DUP8 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB7F DUP6 DUP3 DUP7 ADD PUSH2 0xA80 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB90 DUP6 DUP3 DUP7 ADD PUSH2 0xA95 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA3 DUP2 PUSH2 0x107B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBB4 DUP3 PUSH2 0xFF7 JUMP JUMPDEST PUSH2 0xBBE DUP2 DUP6 PUSH2 0x1002 JUMP JUMPDEST SWAP4 POP PUSH2 0xBCE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10BE JUMP JUMPDEST PUSH2 0xBD7 DUP2 PUSH2 0x1181 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBEF PUSH1 0x23 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC55 PUSH1 0x22 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCBB PUSH1 0x1D DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCFB PUSH1 0x26 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD61 PUSH1 0x25 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDC7 PUSH1 0x24 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE2D PUSH1 0x25 DUP4 PUSH2 0x1002 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE8F DUP2 PUSH2 0x10A7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xE9E DUP2 PUSH2 0x10B1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEB9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB9A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xED9 DUP2 DUP5 PUSH2 0xBA9 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEFA DUP2 PUSH2 0xBE2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF1A DUP2 PUSH2 0xC48 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF3A DUP2 PUSH2 0xCAE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF5A DUP2 PUSH2 0xCEE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF7A DUP2 PUSH2 0xD54 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF9A DUP2 PUSH2 0xDBA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFBA DUP2 PUSH2 0xE20 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFD6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE86 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFF1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE95 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x101E DUP3 PUSH2 0x10A7 JUMP JUMPDEST SWAP2 POP PUSH2 0x1029 DUP4 PUSH2 0x10A7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x105E JUMPI PUSH2 0x105D PUSH2 0x1123 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1074 DUP3 PUSH2 0x1087 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10DC JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10C1 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10EB JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1109 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x111D JUMPI PUSH2 0x111C PUSH2 0x1152 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x119B DUP2 PUSH2 0x1069 JUMP JUMPDEST DUP2 EQ PUSH2 0x11A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11B2 DUP2 PUSH2 0x10A7 JUMP JUMPDEST DUP2 EQ PUSH2 0x11BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH7 0x5CCB43423A0028 DUP7 0xC0 0xED 0xE5 MSTORE8 0xCF PUSH13 0x9448819AA7BB72ED5C21AF8CF8 EXTCODECOPY 0xB7 SWAP4 0xED PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "1401:11610:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3242:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5190:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3091:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5871:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3406:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2365:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6592:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3727:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3974:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:98;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;4530:13;4546:12;:10;:12::i;:::-;4530:28;;4568:32;4577:5;4584:7;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;:::o;3242:106::-;3303:7;3329:12;;3322:19;;3242:106;:::o;5190:286::-;5317:4;5333:15;5351:12;:10;:12::i;:::-;5333:30;;5373:38;5389:4;5395:7;5404:6;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;5465:4;5458:11;;;5190:286;;;;;:::o;3091:91::-;3149:5;3173:2;3166:9;;3091:91;:::o;5871:234::-;5959:4;5975:13;5991:12;:10;:12::i;:::-;5975:28;;6013:64;6022:5;6029:7;6066:10;6038:25;6048:5;6055:7;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;:::-;6094:4;6087:11;;;5871:234;;;;:::o;3406:125::-;3480:7;3506:9;:18;3516:7;3506:18;;;;;;;;;;;;;;;;3499:25;;3406:125;;;:::o;2365:102::-;2421:13;2453:7;2446:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2365:102;:::o;6592:427::-;6685:4;6701:13;6717:12;:10;:12::i;:::-;6701:28;;6739:24;6766:25;6776:5;6783:7;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;:::-;7008:4;7001:11;;;;6592:427;;;;:::o;3727:189::-;3806:4;3822:13;3838:12;:10;:12::i;:::-;3822:28;;3860;3870:5;3877:2;3881:6;3860:9;:28::i;:::-;3905:4;3898:11;;;3727:189;;;;:::o;3974:149::-;4063:7;4089:11;:18;4101:5;4089:18;;;;;;;;;;;;;;;:27;4108:7;4089:27;;;;;;;;;;;;;;;;4082:34;;3974:149;;;;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;10504:370:0:-;10652:1;10635:19;;:5;:19;;;;10627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10732:1;10713:21;;:7;:21;;;;10705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10814:6;10784:11;:18;10796:5;10784:18;;;;;;;;;;;;;;;:27;10803:7;10784:27;;;;;;;;;;;;;;;:36;;;;10851:7;10835:32;;10844:5;10835:32;;;10860:6;10835:32;;;;;;:::i;:::-;;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;11371:17;11351:16;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11347:243;11155:441;;;;:::o;7473:818::-;7615:1;7599:18;;:4;:18;;;;7591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7691:1;7677:16;;:2;:16;;;;7669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;7793:19;7815:9;:15;7825:4;7815:15;;;;;;;;;;;;;;;;7793:37;;7863:6;7848:11;:21;;7840:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7978:6;7964:11;:20;7946:9;:15;7956:4;7946:15;;;;;;;;;;;;;;;:38;;;;8178:6;8161:9;:13;8171:2;8161:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8225:2;8210:26;;8219:4;8210:26;;;8229:6;8210:26;;;;;;:::i;:::-;;;;;;;;8247:37;8267:4;8273:2;8277:6;8247:19;:37::i;:::-;7473:818;;;;:::o;12180:121::-;;;;:::o;12889:120::-;;;;:::o;7:139:5:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:367::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2694:34;2690:1;2685:3;2681:11;2674:55;2760:5;2755:2;2750:3;2746:12;2739:27;2792:2;2787:3;2783:12;2776:19;;2580:221;;;:::o;2807:366::-;;2970:67;3034:2;3029:3;2970:67;:::i;:::-;2963:74;;3067:34;3063:1;3058:3;3054:11;3047:55;3133:4;3128:2;3123:3;3119:12;3112:26;3164:2;3159:3;3155:12;3148:19;;2953:220;;;:::o;3179:327::-;;3342:67;3406:2;3401:3;3342:67;:::i;:::-;3335:74;;3439:31;3435:1;3430:3;3426:11;3419:52;3497:2;3492:3;3488:12;3481:19;;3325:181;;;:::o;3512:370::-;;3675:67;3739:2;3734:3;3675:67;:::i;:::-;3668:74;;3772:34;3768:1;3763:3;3759:11;3752:55;3838:8;3833:2;3828:3;3824:12;3817:30;3873:2;3868:3;3864:12;3857:19;;3658:224;;;:::o;3888:369::-;;4051:67;4115:2;4110:3;4051:67;:::i;:::-;4044:74;;4148:34;4144:1;4139:3;4135:11;4128:55;4214:7;4209:2;4204:3;4200:12;4193:29;4248:2;4243:3;4239:12;4232:19;;4034:223;;;:::o;4263:368::-;;4426:67;4490:2;4485:3;4426:67;:::i;:::-;4419:74;;4523:34;4519:1;4514:3;4510:11;4503:55;4589:6;4584:2;4579:3;4575:12;4568:28;4622:2;4617:3;4613:12;4606:19;;4409:222;;;:::o;4637:369::-;;4800:67;4864:2;4859:3;4800:67;:::i;:::-;4793:74;;4897:34;4893:1;4888:3;4884:11;4877:55;4963:7;4958:2;4953:3;4949:12;4942:29;4997:2;4992:3;4988:12;4981:19;;4783:223;;;:::o;5012:118::-;5099:24;5117:5;5099:24;:::i;:::-;5094:3;5087:37;5077:53;;:::o;5136:112::-;5219:22;5235:5;5219:22;:::i;:::-;5214:3;5207:35;5197:51;;:::o;5254:210::-;;5379:2;5368:9;5364:18;5356:26;;5392:65;5454:1;5443:9;5439:17;5430:6;5392:65;:::i;:::-;5346:118;;;;:::o;5470:313::-;;5621:2;5610:9;5606:18;5598:26;;5670:9;5664:4;5660:20;5656:1;5645:9;5641:17;5634:47;5698:78;5771:4;5762:6;5698:78;:::i;:::-;5690:86;;5588:195;;;;:::o;5789:419::-;;5993:2;5982:9;5978:18;5970:26;;6042:9;6036:4;6032:20;6028:1;6017:9;6013:17;6006:47;6070:131;6196:4;6070:131;:::i;:::-;6062:139;;5960:248;;;:::o;6214:419::-;;6418:2;6407:9;6403:18;6395:26;;6467:9;6461:4;6457:20;6453:1;6442:9;6438:17;6431:47;6495:131;6621:4;6495:131;:::i;:::-;6487:139;;6385:248;;;:::o;6639:419::-;;6843:2;6832:9;6828:18;6820:26;;6892:9;6886:4;6882:20;6878:1;6867:9;6863:17;6856:47;6920:131;7046:4;6920:131;:::i;:::-;6912:139;;6810:248;;;:::o;7064:419::-;;7268:2;7257:9;7253:18;7245:26;;7317:9;7311:4;7307:20;7303:1;7292:9;7288:17;7281:47;7345:131;7471:4;7345:131;:::i;:::-;7337:139;;7235:248;;;:::o;7489:419::-;;7693:2;7682:9;7678:18;7670:26;;7742:9;7736:4;7732:20;7728:1;7717:9;7713:17;7706:47;7770:131;7896:4;7770:131;:::i;:::-;7762:139;;7660:248;;;:::o;7914:419::-;;8118:2;8107:9;8103:18;8095:26;;8167:9;8161:4;8157:20;8153:1;8142:9;8138:17;8131:47;8195:131;8321:4;8195:131;:::i;:::-;8187:139;;8085:248;;;:::o;8339:419::-;;8543:2;8532:9;8528:18;8520:26;;8592:9;8586:4;8582:20;8578:1;8567:9;8563:17;8556:47;8620:131;8746:4;8620:131;:::i;:::-;8612:139;;8510:248;;;:::o;8764:222::-;;8895:2;8884:9;8880:18;8872:26;;8908:71;8976:1;8965:9;8961:17;8952:6;8908:71;:::i;:::-;8862:124;;;;:::o;8992:214::-;;9119:2;9108:9;9104:18;9096:26;;9132:67;9196:1;9185:9;9181:17;9172:6;9132:67;:::i;:::-;9086:120;;;;:::o;9212:99::-;;9298:5;9292:12;9282:22;;9271:40;;;:::o;9317:169::-;;9435:6;9430:3;9423:19;9475:4;9470:3;9466:14;9451:29;;9413:73;;;;:::o;9492:305::-;;9551:20;9569:1;9551:20;:::i;:::-;9546:25;;9585:20;9603:1;9585:20;:::i;:::-;9580:25;;9739:1;9671:66;9667:74;9664:1;9661:81;9658:2;;;9745:18;;:::i;:::-;9658:2;9789:1;9786;9782:9;9775:16;;9536:261;;;;:::o;9803:96::-;;9869:24;9887:5;9869:24;:::i;:::-;9858:35;;9848:51;;;:::o;9905:90::-;;9982:5;9975:13;9968:21;9957:32;;9947:48;;;:::o;10001:126::-;;10078:42;10071:5;10067:54;10056:65;;10046:81;;;:::o;10133:77::-;;10199:5;10188:16;;10178:32;;;:::o;10216:86::-;;10291:4;10284:5;10280:16;10269:27;;10259:43;;;:::o;10308:307::-;10376:1;10386:113;10400:6;10397:1;10394:13;10386:113;;;10485:1;10480:3;10476:11;10470:18;10466:1;10461:3;10457:11;10450:39;10422:2;10419:1;10415:10;10410:15;;10386:113;;;10517:6;10514:1;10511:13;10508:2;;;10597:1;10588:6;10583:3;10579:16;10572:27;10508:2;10357:258;;;;:::o;10621:320::-;;10702:1;10696:4;10692:12;10682:22;;10749:1;10743:4;10739:12;10770:18;10760:2;;10826:4;10818:6;10814:17;10804:27;;10760:2;10888;10880:6;10877:14;10857:18;10854:38;10851:2;;;10907:18;;:::i;:::-;10851:2;10672:269;;;;:::o;10947:180::-;10995:77;10992:1;10985:88;11092:4;11089:1;11082:15;11116:4;11113:1;11106:15;11133:180;11181:77;11178:1;11171:88;11278:4;11275:1;11268:15;11302:4;11299:1;11292:15;11319:102;;11411:2;11407:7;11402:2;11395:5;11391:14;11387:28;11377:38;;11367:54;;;:::o;11427:122::-;11500:24;11518:5;11500:24;:::i;:::-;11493:5;11490:35;11480:2;;11539:1;11536;11529:12;11480:2;11470:79;:::o;11555:122::-;11628:24;11646:5;11628:24;:::i;:::-;11621:5;11618:35;11608:2;;11667:1;11664;11657:12;11608:2;11598:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "919600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1563",
"decimals()": "432",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "1182",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_afterTokenTransfer(address,address,uint256)": "15",
"_approve(address,address,uint256)": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "15",
"_burn(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_spendAllowance(address,address,uint256)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1401,
"end": 13011,
"name": "MSTORE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "ISZERO",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 1976,
"end": 2089,
"name": "JUMPI",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1976,
"end": 2089,
"name": "DUP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "REVERT",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 1976,
"end": 2089,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "POP",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1976,
"end": 2089,
"name": "MLOAD",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "CODESIZE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "SUB",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP4",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "CODECOPY",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP2",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP2",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "ADD",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1976,
"end": 2089,
"name": "MSTORE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP2",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "ADD",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "SWAP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 1976,
"end": 2089,
"name": "SWAP2",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "SWAP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 1976,
"end": 2089,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1976,
"end": 2089,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 1976,
"end": 2089,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2050,
"end": 2055,
"name": "DUP2",
"source": 0
},
{
"begin": 2042,
"end": 2047,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 2042,
"end": 2055,
"name": "SWAP1",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "DUP1",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "MLOAD",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "SWAP1",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2042,
"end": 2055,
"name": "ADD",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "SWAP1",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 2042,
"end": 2055,
"name": "SWAP3",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "SWAP2",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "SWAP1",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 2042,
"end": 2055,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2042,
"end": 2055,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 2042,
"end": 2055,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "POP",
"source": 0
},
{
"begin": 2075,
"end": 2082,
"name": "DUP1",
"source": 0
},
{
"begin": 2065,
"end": 2072,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 2065,
"end": 2082,
"name": "SWAP1",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "DUP1",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "MLOAD",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "SWAP1",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2065,
"end": 2082,
"name": "ADD",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "SWAP1",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 2065,
"end": 2082,
"name": "SWAP3",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "SWAP2",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "SWAP1",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 2065,
"end": 2082,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2065,
"end": 2082,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 2065,
"end": 2082,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "POP",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "POP",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SLOAD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "MSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DIV",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP6",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1401,
"end": 13011,
"name": "LT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "MLOAD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 1401,
"end": 13011,
"name": "NOT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "AND",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP4",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "OR",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP6",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP6",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ISZERO",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "GT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ISZERO",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "MLOAD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "GT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ISZERO",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 360,
"name": "tag",
"source": 5,
"value": "22"
},
{
"begin": 7,
"end": 360,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 7,
"end": 360,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 121,
"end": 186,
"name": "PUSH [tag]",
"source": 5,
"value": "24"
},
{
"begin": 136,
"end": 185,
"name": "PUSH [tag]",
"source": 5,
"value": "25"
},
{
"begin": 178,
"end": 184,
"name": "DUP5",
"source": 5
},
{
"begin": 136,
"end": 185,
"name": "PUSH [tag]",
"source": 5,
"value": "26"
},
{
"begin": 136,
"end": 185,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 136,
"end": 185,
"name": "tag",
"source": 5,
"value": "25"
},
{
"begin": 136,
"end": 185,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 121,
"end": 186,
"name": "PUSH [tag]",
"source": 5,
"value": "27"
},
{
"begin": 121,
"end": 186,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 121,
"end": 186,
"name": "tag",
"source": 5,
"value": "24"
},
{
"begin": 121,
"end": 186,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 112,
"end": 186,
"name": "SWAP1",
"source": 5
},
{
"begin": 112,
"end": 186,
"name": "POP",
"source": 5
},
{
"begin": 209,
"end": 215,
"name": "DUP3",
"source": 5
},
{
"begin": 202,
"end": 207,
"name": "DUP2",
"source": 5
},
{
"begin": 195,
"end": 216,
"name": "MSTORE",
"source": 5
},
{
"begin": 247,
"end": 251,
"name": "PUSH",
"source": 5,
"value": "20"
},
{
"begin": 240,
"end": 245,
"name": "DUP2",
"source": 5
},
{
"begin": 236,
"end": 252,
"name": "ADD",
"source": 5
},
{
"begin": 285,
"end": 288,
"name": "DUP5",
"source": 5
},
{
"begin": 276,
"end": 282,
"name": "DUP5",
"source": 5
},
{
"begin": 271,
"end": 274,
"name": "DUP5",
"source": 5
},
{
"begin": 267,
"end": 283,
"name": "ADD",
"source": 5
},
{
"begin": 264,
"end": 289,
"name": "GT",
"source": 5
},
{
"begin": 261,
"end": 263,
"name": "ISZERO",
"source": 5
},
{
"begin": 261,
"end": 263,
"name": "PUSH [tag]",
"source": 5,
"value": "28"
},
{
"begin": 261,
"end": 263,
"name": "JUMPI",
"source": 5
},
{
"begin": 302,
"end": 303,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 299,
"end": 300,
"name": "DUP1",
"source": 5
},
{
"begin": 292,
"end": 304,
"name": "REVERT",
"source": 5
},
{
"begin": 261,
"end": 263,
"name": "tag",
"source": 5,
"value": "28"
},
{
"begin": 261,
"end": 263,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 315,
"end": 354,
"name": "PUSH [tag]",
"source": 5,
"value": "29"
},
{
"begin": 347,
"end": 353,
"name": "DUP5",
"source": 5
},
{
"begin": 342,
"end": 345,
"name": "DUP3",
"source": 5
},
{
"begin": 337,
"end": 340,
"name": "DUP6",
"source": 5
},
{
"begin": 315,
"end": 354,
"name": "PUSH [tag]",
"source": 5,
"value": "30"
},
{
"begin": 315,
"end": 354,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 315,
"end": 354,
"name": "tag",
"source": 5,
"value": "29"
},
{
"begin": 315,
"end": 354,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 102,
"end": 360,
"name": "POP",
"source": 5
},
{
"begin": 102,
"end": 360,
"name": "SWAP4",
"source": 5
},
{
"begin": 102,
"end": 360,
"name": "SWAP3",
"source": 5
},
{
"begin": 102,
"end": 360,
"name": "POP",
"source": 5
},
{
"begin": 102,
"end": 360,
"name": "POP",
"source": 5
},
{
"begin": 102,
"end": 360,
"name": "POP",
"source": 5
},
{
"begin": 102,
"end": 360,
"name": "JUMP",
"source": 5,
"value": "[out]"
},
{
"begin": 380,
"end": 668,
"name": "tag",
"source": 5,
"value": "31"
},
{
"begin": 380,
"end": 668,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 380,
"end": 668,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 496,
"end": 499,
"name": "DUP3",
"source": 5
},
{
"begin": 489,
"end": 493,
"name": "PUSH",
"source": 5,
"value": "1F"
},
{
"begin": 481,
"end": 487,
"name": "DUP4",
"source": 5
},
{
"begin": 477,
"end": 494,
"name": "ADD",
"source": 5
},
{
"begin": 473,
"end": 500,
"name": "SLT",
"source": 5
},
{
"begin": 463,
"end": 465,
"name": "PUSH [tag]",
"source": 5,
"value": "33"
},
{
"begin": 463,
"end": 465,
"name": "JUMPI",
"source": 5
},
{
"begin": 514,
"end": 515,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 511,
"end": 512,
"name": "DUP1",
"source": 5
},
{
"begin": 504,
"end": 516,
"name": "REVERT",
"source": 5
},
{
"begin": 463,
"end": 465,
"name": "tag",
"source": 5,
"value": "33"
},
{
"begin": 463,
"end": 465,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 547,
"end": 553,
"name": "DUP2",
"source": 5
},
{
"begin": 541,
"end": 554,
"name": "MLOAD",
"source": 5
},
{
"begin": 572,
"end": 662,
"name": "PUSH [tag]",
"source": 5,
"value": "34"
},
{
"begin": 658,
"end": 661,
"name": "DUP5",
"source": 5
},
{
"begin": 650,
"end": 656,
"name": "DUP3",
"source": 5
},
{
"begin": 643,
"end": 647,
"name": "PUSH",
"source": 5,
"value": "20"
},
{
"begin": 635,
"end": 641,
"name": "DUP7",
"source": 5
},
{
"begin": 631,
"end": 648,
"name": "ADD",
"source": 5
},
{
"begin": 572,
"end": 662,
"name": "PUSH [tag]",
"source": 5,
"value": "22"
},
{
"begin": 572,
"end": 662,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 572,
"end": 662,
"name": "tag",
"source": 5,
"value": "34"
},
{
"begin": 572,
"end": 662,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 563,
"end": 662,
"name": "SWAP2",
"source": 5
},
{
"begin": 563,
"end": 662,
"name": "POP",
"source": 5
},
{
"begin": 453,
"end": 668,
"name": "POP",
"source": 5
},
{
"begin": 453,
"end": 668,
"name": "SWAP3",
"source": 5
},
{
"begin": 453,
"end": 668,
"name": "SWAP2",
"source": 5
},
{
"begin": 453,
"end": 668,
"name": "POP",
"source": 5
},
{
"begin": 453,
"end": 668,
"name": "POP",
"source": 5
},
{
"begin": 453,
"end": 668,
"name": "JUMP",
"source": 5,
"value": "[out]"
},
{
"begin": 674,
"end": 1326,
"name": "tag",
"source": 5,
"value": "3"
},
{
"begin": 674,
"end": 1326,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 674,
"end": 1326,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 674,
"end": 1326,
"name": "DUP1",
"source": 5
},
{
"begin": 830,
"end": 832,
"name": "PUSH",
"source": 5,
"value": "40"
},
{
"begin": 818,
"end": 827,
"name": "DUP4",
"source": 5
},
{
"begin": 809,
"end": 816,
"name": "DUP6",
"source": 5
},
{
"begin": 805,
"end": 828,
"name": "SUB",
"source": 5
},
{
"begin": 801,
"end": 833,
"name": "SLT",
"source": 5
},
{
"begin": 798,
"end": 800,
"name": "ISZERO",
"source": 5
},
{
"begin": 798,
"end": 800,
"name": "PUSH [tag]",
"source": 5,
"value": "36"
},
{
"begin": 798,
"end": 800,
"name": "JUMPI",
"source": 5
},
{
"begin": 846,
"end": 847,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 843,
"end": 844,
"name": "DUP1",
"source": 5
},
{
"begin": 836,
"end": 848,
"name": "REVERT",
"source": 5
},
{
"begin": 798,
"end": 800,
"name": "tag",
"source": 5,
"value": "36"
},
{
"begin": 798,
"end": 800,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 910,
"end": 911,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 899,
"end": 908,
"name": "DUP4",
"source": 5
},
{
"begin": 895,
"end": 912,
"name": "ADD",
"source": 5
},
{
"begin": 889,
"end": 913,
"name": "MLOAD",
"source": 5
},
{
"begin": 940,
"end": 958,
"name": "PUSH",
"source": 5,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 932,
"end": 938,
"name": "DUP2",
"source": 5
},
{
"begin": 929,
"end": 959,
"name": "GT",
"source": 5
},
{
"begin": 926,
"end": 928,
"name": "ISZERO",
"source": 5
},
{
"begin": 926,
"end": 928,
"name": "PUSH [tag]",
"source": 5,
"value": "37"
},
{
"begin": 926,
"end": 928,
"name": "JUMPI",
"source": 5
},
{
"begin": 972,
"end": 973,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 969,
"end": 970,
"name": "DUP1",
"source": 5
},
{
"begin": 962,
"end": 974,
"name": "REVERT",
"source": 5
},
{
"begin": 926,
"end": 928,
"name": "tag",
"source": 5,
"value": "37"
},
{
"begin": 926,
"end": 928,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1000,
"end": 1074,
"name": "PUSH [tag]",
"source": 5,
"value": "38"
},
{
"begin": 1066,
"end": 1073,
"name": "DUP6",
"source": 5
},
{
"begin": 1057,
"end": 1063,
"name": "DUP3",
"source": 5
},
{
"begin": 1046,
"end": 1055,
"name": "DUP7",
"source": 5
},
{
"begin": 1042,
"end": 1064,
"name": "ADD",
"source": 5
},
{
"begin": 1000,
"end": 1074,
"name": "PUSH [tag]",
"source": 5,
"value": "31"
},
{
"begin": 1000,
"end": 1074,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 1000,
"end": 1074,
"name": "tag",
"source": 5,
"value": "38"
},
{
"begin": 1000,
"end": 1074,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 990,
"end": 1074,
"name": "SWAP3",
"source": 5
},
{
"begin": 990,
"end": 1074,
"name": "POP",
"source": 5
},
{
"begin": 860,
"end": 1084,
"name": "POP",
"source": 5
},
{
"begin": 1144,
"end": 1146,
"name": "PUSH",
"source": 5,
"value": "20"
},
{
"begin": 1133,
"end": 1142,
"name": "DUP4",
"source": 5
},
{
"begin": 1129,
"end": 1147,
"name": "ADD",
"source": 5
},
{
"begin": 1123,
"end": 1148,
"name": "MLOAD",
"source": 5
},
{
"begin": 1175,
"end": 1193,
"name": "PUSH",
"source": 5,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1167,
"end": 1173,
"name": "DUP2",
"source": 5
},
{
"begin": 1164,
"end": 1194,
"name": "GT",
"source": 5
},
{
"begin": 1161,
"end": 1163,
"name": "ISZERO",
"source": 5
},
{
"begin": 1161,
"end": 1163,
"name": "PUSH [tag]",
"source": 5,
"value": "39"
},
{
"begin": 1161,
"end": 1163,
"name": "JUMPI",
"source": 5
},
{
"begin": 1207,
"end": 1208,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 1204,
"end": 1205,
"name": "DUP1",
"source": 5
},
{
"begin": 1197,
"end": 1209,
"name": "REVERT",
"source": 5
},
{
"begin": 1161,
"end": 1163,
"name": "tag",
"source": 5,
"value": "39"
},
{
"begin": 1161,
"end": 1163,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1235,
"end": 1309,
"name": "PUSH [tag]",
"source": 5,
"value": "40"
},
{
"begin": 1301,
"end": 1308,
"name": "DUP6",
"source": 5
},
{
"begin": 1292,
"end": 1298,
"name": "DUP3",
"source": 5
},
{
"begin": 1281,
"end": 1290,
"name": "DUP7",
"source": 5
},
{
"begin": 1277,
"end": 1299,
"name": "ADD",
"source": 5
},
{
"begin": 1235,
"end": 1309,
"name": "PUSH [tag]",
"source": 5,
"value": "31"
},
{
"begin": 1235,
"end": 1309,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 1235,
"end": 1309,
"name": "tag",
"source": 5,
"value": "40"
},
{
"begin": 1235,
"end": 1309,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1225,
"end": 1309,
"name": "SWAP2",
"source": 5
},
{
"begin": 1225,
"end": 1309,
"name": "POP",
"source": 5
},
{
"begin": 1094,
"end": 1319,
"name": "POP",
"source": 5
},
{
"begin": 788,
"end": 1326,
"name": "SWAP3",
"source": 5
},
{
"begin": 788,
"end": 1326,
"name": "POP",
"source": 5
},
{
"begin": 788,
"end": 1326,
"name": "SWAP3",
"source": 5
},
{
"begin": 788,
"end": 1326,
"name": "SWAP1",
"source": 5
},
{
"begin": 788,
"end": 1326,
"name": "POP",
"source": 5
},
{
"begin": 788,
"end": 1326,
"name": "JUMP",
"source": 5,
"value": "[out]"
},
{
"begin": 1332,
"end": 1615,
"name": "tag",
"source": 5,
"value": "27"
},
{
"begin": 1332,
"end": 1615,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1332,
"end": 1615,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 1398,
"end": 1400,
"name": "PUSH",
"source": 5,
"value": "40"
},
{
"begin": 1392,
"end": 1401,
"name": "MLOAD",
"source": 5
},
{
"begin": 1382,
"end": 1401,
"name": "SWAP1",
"source": 5
},
{
"begin": 1382,
"end": 1401,
"name": "POP",
"source": 5
},
{
"begin": 1440,
"end": 1444,
"name": "DUP2",
"source": 5
},
{
"begin": 1432,
"end": 1438,
"name": "DUP2",
"source": 5
},
{
"begin": 1428,
"end": 1445,
"name": "ADD",
"source": 5
},
{
"begin": 1547,
"end": 1553,
"name": "DUP2",
"source": 5
},
{
"begin": 1535,
"end": 1545,
"name": "DUP2",
"source": 5
},
{
"begin": 1532,
"end": 1554,
"name": "LT",
"source": 5
},
{
"begin": 1511,
"end": 1529,
"name": "PUSH",
"source": 5,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1499,
"end": 1509,
"name": "DUP3",
"source": 5
},
{
"begin": 1496,
"end": 1530,
"name": "GT",
"source": 5
},
{
"begin": 1493,
"end": 1555,
"name": "OR",
"source": 5
},
{
"begin": 1490,
"end": 1492,
"name": "ISZERO",
"source": 5
},
{
"begin": 1490,
"end": 1492,
"name": "PUSH [tag]",
"source": 5,
"value": "42"
},
{
"begin": 1490,
"end": 1492,
"name": "JUMPI",
"source": 5
},
{
"begin": 1558,
"end": 1576,
"name": "PUSH [tag]",
"source": 5,
"value": "43"
},
{
"begin": 1558,
"end": 1576,
"name": "PUSH [tag]",
"source": 5,
"value": "44"
},
{
"begin": 1558,
"end": 1576,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 1558,
"end": 1576,
"name": "tag",
"source": 5,
"value": "43"
},
{
"begin": 1558,
"end": 1576,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1490,
"end": 1492,
"name": "tag",
"source": 5,
"value": "42"
},
{
"begin": 1490,
"end": 1492,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1598,
"end": 1608,
"name": "DUP1",
"source": 5
},
{
"begin": 1594,
"end": 1596,
"name": "PUSH",
"source": 5,
"value": "40"
},
{
"begin": 1587,
"end": 1609,
"name": "MSTORE",
"source": 5
},
{
"begin": 1372,
"end": 1615,
"name": "POP",
"source": 5
},
{
"begin": 1372,
"end": 1615,
"name": "SWAP2",
"source": 5
},
{
"begin": 1372,
"end": 1615,
"name": "SWAP1",
"source": 5
},
{
"begin": 1372,
"end": 1615,
"name": "POP",
"source": 5
},
{
"begin": 1372,
"end": 1615,
"name": "JUMP",
"source": 5,
"value": "[out]"
},
{
"begin": 1621,
"end": 1953,
"name": "tag",
"source": 5,
"value": "26"
},
{
"begin": 1621,
"end": 1953,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1621,
"end": 1953,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 1773,
"end": 1791,
"name": "PUSH",
"source": 5,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1765,
"end": 1771,
"name": "DUP3",
"source": 5
},
{
"begin": 1762,
"end": 1792,
"name": "GT",
"source": 5
},
{
"begin": 1759,
"end": 1761,
"name": "ISZERO",
"source": 5
},
{
"begin": 1759,
"end": 1761,
"name": "PUSH [tag]",
"source": 5,
"value": "46"
},
{
"begin": 1759,
"end": 1761,
"name": "JUMPI",
"source": 5
},
{
"begin": 1795,
"end": 1813,
"name": "PUSH [tag]",
"source": 5,
"value": "47"
},
{
"begin": 1795,
"end": 1813,
"name": "PUSH [tag]",
"source": 5,
"value": "44"
},
{
"begin": 1795,
"end": 1813,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 1795,
"end": 1813,
"name": "tag",
"source": 5,
"value": "47"
},
{
"begin": 1795,
"end": 1813,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1759,
"end": 1761,
"name": "tag",
"source": 5,
"value": "46"
},
{
"begin": 1759,
"end": 1761,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 1880,
"end": 1884,
"name": "PUSH",
"source": 5,
"value": "1F"
},
{
"begin": 1876,
"end": 1885,
"name": "NOT",
"source": 5
},
{
"begin": 1869,
"end": 1873,
"name": "PUSH",
"source": 5,
"value": "1F"
},
{
"begin": 1861,
"end": 1867,
"name": "DUP4",
"source": 5
},
{
"begin": 1857,
"end": 1874,
"name": "ADD",
"source": 5
},
{
"begin": 1853,
"end": 1886,
"name": "AND",
"source": 5
},
{
"begin": 1845,
"end": 1886,
"name": "SWAP1",
"source": 5
},
{
"begin": 1845,
"end": 1886,
"name": "POP",
"source": 5
},
{
"begin": 1941,
"end": 1945,
"name": "PUSH",
"source": 5,
"value": "20"
},
{
"begin": 1935,
"end": 1939,
"name": "DUP2",
"source": 5
},
{
"begin": 1931,
"end": 1946,
"name": "ADD",
"source": 5
},
{
"begin": 1923,
"end": 1946,
"name": "SWAP1",
"source": 5
},
{
"begin": 1923,
"end": 1946,
"name": "POP",
"source": 5
},
{
"begin": 1688,
"end": 1953,
"name": "SWAP2",
"source": 5
},
{
"begin": 1688,
"end": 1953,
"name": "SWAP1",
"source": 5
},
{
"begin": 1688,
"end": 1953,
"name": "POP",
"source": 5
},
{
"begin": 1688,
"end": 1953,
"name": "JUMP",
"source": 5,
"value": "[out]"
},
{
"begin": 1959,
"end": 2266,
"name": "tag",
"source": 5,
"value": "30"
},
{
"begin": 1959,
"end": 2266,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2027,
"end": 2028,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 2037,
"end": 2150,
"name": "tag",
"source": 5,
"value": "49"
},
{
"begin": 2037,
"end": 2150,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2051,
"end": 2057,
"name": "DUP4",
"source": 5
},
{
"begin": 2048,
"end": 2049,
"name": "DUP2",
"source": 5
},
{
"begin": 2045,
"end": 2058,
"name": "LT",
"source": 5
},
{
"begin": 2037,
"end": 2150,
"name": "ISZERO",
"source": 5
},
{
"begin": 2037,
"end": 2150,
"name": "PUSH [tag]",
"source": 5,
"value": "51"
},
{
"begin": 2037,
"end": 2150,
"name": "JUMPI",
"source": 5
},
{
"begin": 2136,
"end": 2137,
"name": "DUP1",
"source": 5
},
{
"begin": 2131,
"end": 2134,
"name": "DUP3",
"source": 5
},
{
"begin": 2127,
"end": 2138,
"name": "ADD",
"source": 5
},
{
"begin": 2121,
"end": 2139,
"name": "MLOAD",
"source": 5
},
{
"begin": 2117,
"end": 2118,
"name": "DUP2",
"source": 5
},
{
"begin": 2112,
"end": 2115,
"name": "DUP5",
"source": 5
},
{
"begin": 2108,
"end": 2119,
"name": "ADD",
"source": 5
},
{
"begin": 2101,
"end": 2140,
"name": "MSTORE",
"source": 5
},
{
"begin": 2073,
"end": 2075,
"name": "PUSH",
"source": 5,
"value": "20"
},
{
"begin": 2070,
"end": 2071,
"name": "DUP2",
"source": 5
},
{
"begin": 2066,
"end": 2076,
"name": "ADD",
"source": 5
},
{
"begin": 2061,
"end": 2076,
"name": "SWAP1",
"source": 5
},
{
"begin": 2061,
"end": 2076,
"name": "POP",
"source": 5
},
{
"begin": 2037,
"end": 2150,
"name": "PUSH [tag]",
"source": 5,
"value": "49"
},
{
"begin": 2037,
"end": 2150,
"name": "JUMP",
"source": 5
},
{
"begin": 2037,
"end": 2150,
"name": "tag",
"source": 5,
"value": "51"
},
{
"begin": 2037,
"end": 2150,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2168,
"end": 2174,
"name": "DUP4",
"source": 5
},
{
"begin": 2165,
"end": 2166,
"name": "DUP2",
"source": 5
},
{
"begin": 2162,
"end": 2175,
"name": "GT",
"source": 5
},
{
"begin": 2159,
"end": 2161,
"name": "ISZERO",
"source": 5
},
{
"begin": 2159,
"end": 2161,
"name": "PUSH [tag]",
"source": 5,
"value": "52"
},
{
"begin": 2159,
"end": 2161,
"name": "JUMPI",
"source": 5
},
{
"begin": 2248,
"end": 2249,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 2239,
"end": 2245,
"name": "DUP5",
"source": 5
},
{
"begin": 2234,
"end": 2237,
"name": "DUP5",
"source": 5
},
{
"begin": 2230,
"end": 2246,
"name": "ADD",
"source": 5
},
{
"begin": 2223,
"end": 2250,
"name": "MSTORE",
"source": 5
},
{
"begin": 2159,
"end": 2161,
"name": "tag",
"source": 5,
"value": "52"
},
{
"begin": 2159,
"end": 2161,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2008,
"end": 2266,
"name": "POP",
"source": 5
},
{
"begin": 2008,
"end": 2266,
"name": "POP",
"source": 5
},
{
"begin": 2008,
"end": 2266,
"name": "POP",
"source": 5
},
{
"begin": 2008,
"end": 2266,
"name": "POP",
"source": 5
},
{
"begin": 2008,
"end": 2266,
"name": "JUMP",
"source": 5,
"value": "[out]"
},
{
"begin": 2272,
"end": 2592,
"name": "tag",
"source": 5,
"value": "11"
},
{
"begin": 2272,
"end": 2592,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2272,
"end": 2592,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 2353,
"end": 2354,
"name": "PUSH",
"source": 5,
"value": "2"
},
{
"begin": 2347,
"end": 2351,
"name": "DUP3",
"source": 5
},
{
"begin": 2343,
"end": 2355,
"name": "DIV",
"source": 5
},
{
"begin": 2333,
"end": 2355,
"name": "SWAP1",
"source": 5
},
{
"begin": 2333,
"end": 2355,
"name": "POP",
"source": 5
},
{
"begin": 2400,
"end": 2401,
"name": "PUSH",
"source": 5,
"value": "1"
},
{
"begin": 2394,
"end": 2398,
"name": "DUP3",
"source": 5
},
{
"begin": 2390,
"end": 2402,
"name": "AND",
"source": 5
},
{
"begin": 2421,
"end": 2439,
"name": "DUP1",
"source": 5
},
{
"begin": 2411,
"end": 2413,
"name": "PUSH [tag]",
"source": 5,
"value": "54"
},
{
"begin": 2411,
"end": 2413,
"name": "JUMPI",
"source": 5
},
{
"begin": 2477,
"end": 2481,
"name": "PUSH",
"source": 5,
"value": "7F"
},
{
"begin": 2469,
"end": 2475,
"name": "DUP3",
"source": 5
},
{
"begin": 2465,
"end": 2482,
"name": "AND",
"source": 5
},
{
"begin": 2455,
"end": 2482,
"name": "SWAP2",
"source": 5
},
{
"begin": 2455,
"end": 2482,
"name": "POP",
"source": 5
},
{
"begin": 2411,
"end": 2413,
"name": "tag",
"source": 5,
"value": "54"
},
{
"begin": 2411,
"end": 2413,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2539,
"end": 2541,
"name": "PUSH",
"source": 5,
"value": "20"
},
{
"begin": 2531,
"end": 2537,
"name": "DUP3",
"source": 5
},
{
"begin": 2528,
"end": 2542,
"name": "LT",
"source": 5
},
{
"begin": 2508,
"end": 2526,
"name": "DUP2",
"source": 5
},
{
"begin": 2505,
"end": 2543,
"name": "EQ",
"source": 5
},
{
"begin": 2502,
"end": 2504,
"name": "ISZERO",
"source": 5
},
{
"begin": 2502,
"end": 2504,
"name": "PUSH [tag]",
"source": 5,
"value": "55"
},
{
"begin": 2502,
"end": 2504,
"name": "JUMPI",
"source": 5
},
{
"begin": 2558,
"end": 2576,
"name": "PUSH [tag]",
"source": 5,
"value": "56"
},
{
"begin": 2558,
"end": 2576,
"name": "PUSH [tag]",
"source": 5,
"value": "57"
},
{
"begin": 2558,
"end": 2576,
"name": "JUMP",
"source": 5,
"value": "[in]"
},
{
"begin": 2558,
"end": 2576,
"name": "tag",
"source": 5,
"value": "56"
},
{
"begin": 2558,
"end": 2576,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2502,
"end": 2504,
"name": "tag",
"source": 5,
"value": "55"
},
{
"begin": 2502,
"end": 2504,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2323,
"end": 2592,
"name": "POP",
"source": 5
},
{
"begin": 2323,
"end": 2592,
"name": "SWAP2",
"source": 5
},
{
"begin": 2323,
"end": 2592,
"name": "SWAP1",
"source": 5
},
{
"begin": 2323,
"end": 2592,
"name": "POP",
"source": 5
},
{
"begin": 2323,
"end": 2592,
"name": "JUMP",
"source": 5,
"value": "[out]"
},
{
"begin": 2598,
"end": 2778,
"name": "tag",
"source": 5,
"value": "57"
},
{
"begin": 2598,
"end": 2778,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2646,
"end": 2723,
"name": "PUSH",
"source": 5,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 2643,
"end": 2644,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 2636,
"end": 2724,
"name": "MSTORE",
"source": 5
},
{
"begin": 2743,
"end": 2747,
"name": "PUSH",
"source": 5,
"value": "22"
},
{
"begin": 2740,
"end": 2741,
"name": "PUSH",
"source": 5,
"value": "4"
},
{
"begin": 2733,
"end": 2748,
"name": "MSTORE",
"source": 5
},
{
"begin": 2767,
"end": 2771,
"name": "PUSH",
"source": 5,
"value": "24"
},
{
"begin": 2764,
"end": 2765,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 2757,
"end": 2772,
"name": "REVERT",
"source": 5
},
{
"begin": 2784,
"end": 2964,
"name": "tag",
"source": 5,
"value": "44"
},
{
"begin": 2784,
"end": 2964,
"name": "JUMPDEST",
"source": 5
},
{
"begin": 2832,
"end": 2909,
"name": "PUSH",
"source": 5,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 2829,
"end": 2830,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 2822,
"end": 2910,
"name": "MSTORE",
"source": 5
},
{
"begin": 2929,
"end": 2933,
"name": "PUSH",
"source": 5,
"value": "41"
},
{
"begin": 2926,
"end": 2927,
"name": "PUSH",
"source": 5,
"value": "4"
},
{
"begin": 2919,
"end": 2934,
"name": "MSTORE",
"source": 5
},
{
"begin": 2953,
"end": 2957,
"name": "PUSH",
"source": 5,
"value": "24"
},
{
"begin": 2950,
"end": 2951,
"name": "PUSH",
"source": 5,
"value": "0"
},
{
"begin": 2943,
"end": 2958,
"name": "REVERT",
"source": 5
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "CODECOPY",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220665ccb43423a002886c0ede553cf6c9448819aa7bb72ed5c21af8cf83cb793ed64736f6c63430008000033",
".code": [
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1401,
"end": 13011,
"name": "MSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ISZERO",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "REVERT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1401,
"end": 13011,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "LT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 1401,
"end": 13011,
"name": "SHR",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "39509351"
},
{
"begin": 1401,
"end": 13011,
"name": "GT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "39509351"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "70A08231"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "95D89B41"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "A457C2D7"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "A9059CBB"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "DD62ED3E"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "6FDDE03"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "95EA7B3"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "18160DDD"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "23B872DD"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "313CE567"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "REVERT",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2154,
"end": 2252,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2154,
"end": 2252,
"name": "MLOAD",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP2",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP1",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2154,
"end": 2252,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2154,
"end": 2252,
"name": "MLOAD",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "DUP1",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP2",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SUB",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP1",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "RETURN",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 4431,
"end": 4628,
"name": "DUP1",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "SUB",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "DUP2",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "ADD",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "SWAP1",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 4431,
"end": 4628,
"name": "SWAP2",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "SWAP1",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 4431,
"end": 4628,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 4431,
"end": 4628,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 4431,
"end": 4628,
"name": "MLOAD",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 4431,
"end": 4628,
"name": "SWAP2",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "SWAP1",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 4431,
"end": 4628,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 4431,
"end": 4628,
"name": "MLOAD",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "DUP1",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "SWAP2",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "SUB",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "SWAP1",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "RETURN",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 3242,
"end": 3348,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 3242,
"end": 3348,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 3242,
"end": 3348,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3242,
"end": 3348,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 3242,
"end": 3348,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3242,
"end": 3348,
"name": "MLOAD",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 3242,
"end": 3348,
"name": "SWAP2",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "SWAP1",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 3242,
"end": 3348,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3242,
"end": 3348,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 3242,
"end": 3348,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3242,
"end": 3348,
"name": "MLOAD",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "DUP1",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "SWAP2",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "SUB",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "SWAP1",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "RETURN",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 5190,
"end": 5476,
"name": "DUP1",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "SUB",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "DUP2",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "ADD",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "SWAP1",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 5190,
"end": 5476,
"name": "SWAP2",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "SWAP1",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 5190,
"end": 5476,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 5190,
"end": 5476,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 5190,
"end": 5476,
"name": "MLOAD",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 5190,
"end": 5476,
"name": "SWAP2",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "SWAP1",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 5190,
"end": 5476,
"name": "tag",
"source": 0,
"value": "33"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 5190,
"end": 5476,
"name": "MLOAD",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "DUP1",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "SWAP2",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "SUB",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "SWAP1",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "RETURN",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 3091,
"end": 3182,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 3091,
"end": 3182,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 3091,
"end": 3182,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3091,
"end": 3182,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 3091,
"end": 3182,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3091,
"end": 3182,
"name": "MLOAD",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 3091,
"end": 3182,
"name": "SWAP2",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "SWAP1",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 3091,
"end": 3182,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3091,
"end": 3182,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 3091,
"end": 3182,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3091,
"end": 3182,
"name": "MLOAD",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "DUP1",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "SWAP2",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "SUB",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "SWAP1",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "RETURN",
"source": 0
},
{
"begin": 5871,
"end": 6105,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 5871,
"end": 6105,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5871,
"end": 6105,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 5871,
"end": 6105,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 5871,
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

(Sorry about that, but we can’t show 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