Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save junaid109/b010adf57ecf41c4d6b3f84bf99f1542 to your computer and use it in GitHub Desktop.
Save junaid109/b010adf57ecf41c4d6b3f84bf99f1542 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.2+commit.661d1103.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/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;
}
_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;
_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;
}
_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;
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"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": "60806040523480156200001157600080fd5b506040516200172d3803806200172d83398181016040528101906200003791906200033a565b6040518060400160405280601181526020017f477265656e20456172746820546f6b656e0000000000000000000000000000008152506040518060400160405280600381526020017f47455400000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000273565b508060049080519060200190620000d492919062000273565b505050620000e93382620000f060201b60201c565b506200051e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000163576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015a90620003b9565b60405180910390fd5b62000177600083836200026960201b60201c565b80600260008282546200018b919062000409565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001e2919062000409565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002499190620003db565b60405180910390a362000265600083836200026e60201b60201c565b5050565b505050565b505050565b828054620002819062000470565b90600052602060002090601f016020900481019282620002a55760008555620002f1565b82601f10620002c057805160ff1916838001178555620002f1565b82800160010185558215620002f1579182015b82811115620002f0578251825591602001919060010190620002d3565b5b50905062000300919062000304565b5090565b5b808211156200031f57600081600090555060010162000305565b5090565b600081519050620003348162000504565b92915050565b6000602082840312156200034d57600080fd5b60006200035d8482850162000323565b91505092915050565b600062000375601f83620003f8565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620003b38162000466565b82525050565b60006020820190508181036000830152620003d48162000366565b9050919050565b6000602082019050620003f26000830184620003a8565b92915050565b600082825260208201905092915050565b6000620004168262000466565b9150620004238362000466565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200045b576200045a620004a6565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200048957607f821691505b60208210811415620004a0576200049f620004d5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6200050f8162000466565b81146200051b57600080fd5b50565b6111ff806200052e6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ec8565b60405180910390f35b6100e660048036038101906100e19190610b67565b610308565b6040516100f39190610ead565b60405180910390f35b61010461032b565b6040516101119190610fca565b60405180910390f35b610134600480360381019061012f9190610b18565b610335565b6040516101419190610ead565b60405180910390f35b610152610364565b60405161015f9190610fe5565b60405180910390f35b610182600480360381019061017d9190610b67565b61036d565b60405161018f9190610ead565b60405180910390f35b6101b260048036038101906101ad9190610ab3565b6103a4565b6040516101bf9190610fca565b60405180910390f35b6101d06103ec565b6040516101dd9190610ec8565b60405180910390f35b61020060048036038101906101fb9190610b67565b61047e565b60405161020d9190610ead565b60405180910390f35b610230600480360381019061022b9190610b67565b6104f5565b60405161023d9190610ead565b60405180910390f35b610260600480360381019061025b9190610adc565b610518565b60405161026d9190610fca565b60405180910390f35b606060038054610285906110fa565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110fa565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b610394919061101c565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb906110fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906110fa565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610faa565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610f8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610f0a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610fca565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190610f2a565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590610f6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590610eea565b60405180910390fd5b6108e9838383610a7f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690610f4a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a02919061101c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a669190610fca565b60405180910390a3610a79848484610a84565b50505050565b505050565b505050565b600081359050610a988161119b565b92915050565b600081359050610aad816111b2565b92915050565b600060208284031215610ac557600080fd5b6000610ad384828501610a89565b91505092915050565b60008060408385031215610aef57600080fd5b6000610afd85828601610a89565b9250506020610b0e85828601610a89565b9150509250929050565b600080600060608486031215610b2d57600080fd5b6000610b3b86828701610a89565b9350506020610b4c86828701610a89565b9250506040610b5d86828701610a9e565b9150509250925092565b60008060408385031215610b7a57600080fd5b6000610b8885828601610a89565b9250506020610b9985828601610a9e565b9150509250929050565b610bac81611084565b82525050565b6000610bbd82611000565b610bc7818561100b565b9350610bd78185602086016110c7565b610be08161118a565b840191505092915050565b6000610bf860238361100b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610c5e60228361100b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610cc4601d8361100b565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000610d0460268361100b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d6a60258361100b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610dd060248361100b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e3660258361100b565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610e98816110b0565b82525050565b610ea7816110ba565b82525050565b6000602082019050610ec26000830184610ba3565b92915050565b60006020820190508181036000830152610ee28184610bb2565b905092915050565b60006020820190508181036000830152610f0381610beb565b9050919050565b60006020820190508181036000830152610f2381610c51565b9050919050565b60006020820190508181036000830152610f4381610cb7565b9050919050565b60006020820190508181036000830152610f6381610cf7565b9050919050565b60006020820190508181036000830152610f8381610d5d565b9050919050565b60006020820190508181036000830152610fa381610dc3565b9050919050565b60006020820190508181036000830152610fc381610e29565b9050919050565b6000602082019050610fdf6000830184610e8f565b92915050565b6000602082019050610ffa6000830184610e9e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611027826110b0565b9150611032836110b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110675761106661112c565b5b828201905092915050565b600061107d82611090565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156110e55780820151818401526020810190506110ca565b838111156110f4576000848401525b50505050565b6000600282049050600182168061111257607f821691505b602082108114156111265761112561115b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6111a481611072565b81146111af57600080fd5b50565b6111bb816110b0565b81146111c657600080fd5b5056fea264697066735822122036fa8e5751e4a094f48162547dd217f1f089d381eed5acdb3a33fa2c5ab44d6064736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x172D CODESIZE SUB DUP1 PUSH3 0x172D DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x33A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x11 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x477265656E20456172746820546F6B656E000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4745540000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xBB SWAP3 SWAP2 SWAP1 PUSH3 0x273 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xD4 SWAP3 SWAP2 SWAP1 PUSH3 0x273 JUMP JUMPDEST POP POP POP PUSH3 0xE9 CALLER DUP3 PUSH3 0xF0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH3 0x51E 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 0x3B9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x177 PUSH1 0x0 DUP4 DUP4 PUSH3 0x269 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x18B SWAP2 SWAP1 PUSH3 0x409 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 PUSH3 0x1E2 SWAP2 SWAP1 PUSH3 0x409 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x249 SWAP2 SWAP1 PUSH3 0x3DB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x265 PUSH1 0x0 DUP4 DUP4 PUSH3 0x26E 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 0x281 SWAP1 PUSH3 0x470 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x2A5 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x2F1 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x2C0 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x2F1 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x2F1 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x2F0 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x2D3 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x300 SWAP2 SWAP1 PUSH3 0x304 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x31F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x305 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x334 DUP2 PUSH3 0x504 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x34D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x35D DUP5 DUP3 DUP6 ADD PUSH3 0x323 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x375 PUSH1 0x1F DUP4 PUSH3 0x3F8 JUMP JUMPDEST SWAP2 POP PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3B3 DUP2 PUSH3 0x466 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 0x3D4 DUP2 PUSH3 0x366 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x3F2 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x3A8 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 0x416 DUP3 PUSH3 0x466 JUMP JUMPDEST SWAP2 POP PUSH3 0x423 DUP4 PUSH3 0x466 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x45B JUMPI PUSH3 0x45A PUSH3 0x4A6 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 0x489 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x4A0 JUMPI PUSH3 0x49F PUSH3 0x4D5 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 0x50F DUP2 PUSH3 0x466 JUMP JUMPDEST DUP2 EQ PUSH3 0x51B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11FF DUP1 PUSH3 0x52E 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 0xEC8 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 0xB67 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xEAD 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 0xFCA 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 0xB18 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xEAD 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 0xFE5 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 0xB67 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xEAD 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 0xAB3 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xFCA 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 0xEC8 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 0xB67 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xEAD 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 0xB67 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xEAD 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 0xADC JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x10FA 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 0x10FA 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 0x101C 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 0x10FA 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 0x10FA 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 0xFAA 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 0xF8A 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 0xF0A 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 0xFCA 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 0xF2A 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 0xF6A 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 0xEEA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA7F 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 0xF4A 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 PUSH2 0xA02 SWAP2 SWAP1 PUSH2 0x101C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA66 SWAP2 SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA79 DUP5 DUP5 DUP5 PUSH2 0xA84 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 0xA98 DUP2 PUSH2 0x119B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAAD DUP2 PUSH2 0x11B2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAD3 DUP5 DUP3 DUP6 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAFD DUP6 DUP3 DUP7 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB0E DUP6 DUP3 DUP7 ADD PUSH2 0xA89 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 0xB2D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB3B DUP7 DUP3 DUP8 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB4C DUP7 DUP3 DUP8 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB5D DUP7 DUP3 DUP8 ADD PUSH2 0xA9E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB7A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB88 DUP6 DUP3 DUP7 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB99 DUP6 DUP3 DUP7 ADD PUSH2 0xA9E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBAC DUP2 PUSH2 0x1084 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBBD DUP3 PUSH2 0x1000 JUMP JUMPDEST PUSH2 0xBC7 DUP2 DUP6 PUSH2 0x100B JUMP JUMPDEST SWAP4 POP PUSH2 0xBD7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10C7 JUMP JUMPDEST PUSH2 0xBE0 DUP2 PUSH2 0x118A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBF8 PUSH1 0x23 DUP4 PUSH2 0x100B 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 0xC5E PUSH1 0x22 DUP4 PUSH2 0x100B 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 0xCC4 PUSH1 0x1D DUP4 PUSH2 0x100B 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 0xD04 PUSH1 0x26 DUP4 PUSH2 0x100B 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 0xD6A PUSH1 0x25 DUP4 PUSH2 0x100B 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 0xDD0 PUSH1 0x24 DUP4 PUSH2 0x100B 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 0xE36 PUSH1 0x25 DUP4 PUSH2 0x100B 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 0xE98 DUP2 PUSH2 0x10B0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xEA7 DUP2 PUSH2 0x10BA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEC2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xBA3 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 0xEE2 DUP2 DUP5 PUSH2 0xBB2 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 0xF03 DUP2 PUSH2 0xBEB 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 0xF23 DUP2 PUSH2 0xC51 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 0xF43 DUP2 PUSH2 0xCB7 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 0xF63 DUP2 PUSH2 0xCF7 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 0xF83 DUP2 PUSH2 0xD5D 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 0xFA3 DUP2 PUSH2 0xDC3 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 0xFC3 DUP2 PUSH2 0xE29 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFDF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE8F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFFA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE9E 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 0x1027 DUP3 PUSH2 0x10B0 JUMP JUMPDEST SWAP2 POP PUSH2 0x1032 DUP4 PUSH2 0x10B0 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1067 JUMPI PUSH2 0x1066 PUSH2 0x112C JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x107D DUP3 PUSH2 0x1090 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 0x10E5 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10CA JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10F4 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 0x1112 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1126 JUMPI PUSH2 0x1125 PUSH2 0x115B 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 0x11A4 DUP2 PUSH2 0x1072 JUMP JUMPDEST DUP2 EQ PUSH2 0x11AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11BB DUP2 PUSH2 0x10B0 JUMP JUMPDEST DUP2 EQ PUSH2 0x11C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATASIZE STATICCALL DUP15 JUMPI MLOAD 0xE4 LOG0 SWAP5 DELEGATECALL DUP2 PUSH3 0x547DD2 OR CALL CREATE DUP10 0xD3 DUP2 0xEE 0xD5 0xAC 0xDB GASPRICE CALLER STATICCALL 0x2C GAS 0xB4 0x4D PUSH1 0x64 PUSH20 0x6F6C634300080000330000000000000000000000 ",
"sourceMap": "139:154:4:-:0;;;170:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1978:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2052:5;2044;:13;;;;;;;;;;;;:::i;:::-;;2077:7;2067;:17;;;;;;;;;;;;:::i;:::-;;1978:113;;250:32:4::1;256:10;268:13;250:5;;;:32;;:::i;:::-;170:120:::0;139:154;;8402:389:0;8504:1;8485:21;;:7;:21;;;;8477:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8553:49;8582:1;8586:7;8595:6;8553:20;;;:49;;:::i;:::-;8629:6;8613:12;;:22;;;;;;;:::i;:::-;;;;;;;;8667:6;8645:9;:18;8655:7;8645:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8709:7;8688:37;;8705:1;8688:37;;;8718:6;8688:37;;;;;;:::i;:::-;;;;;;;;8736:48;8764:1;8768:7;8777:6;8736:19;;;:48;;:::i;:::-;8402:389;;:::o;11786:121::-;;;;:::o;12495:120::-;;;;:::o;139:154: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;139:154: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": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ec8565b60405180910390f35b6100e660048036038101906100e19190610b67565b610308565b6040516100f39190610ead565b60405180910390f35b61010461032b565b6040516101119190610fca565b60405180910390f35b610134600480360381019061012f9190610b18565b610335565b6040516101419190610ead565b60405180910390f35b610152610364565b60405161015f9190610fe5565b60405180910390f35b610182600480360381019061017d9190610b67565b61036d565b60405161018f9190610ead565b60405180910390f35b6101b260048036038101906101ad9190610ab3565b6103a4565b6040516101bf9190610fca565b60405180910390f35b6101d06103ec565b6040516101dd9190610ec8565b60405180910390f35b61020060048036038101906101fb9190610b67565b61047e565b60405161020d9190610ead565b60405180910390f35b610230600480360381019061022b9190610b67565b6104f5565b60405161023d9190610ead565b60405180910390f35b610260600480360381019061025b9190610adc565b610518565b60405161026d9190610fca565b60405180910390f35b606060038054610285906110fa565b80601f01602080910402602001604051908101604052809291908181526020018280546102b1906110fa565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610772565b6103588585856107fe565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b610394919061101c565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb906110fa565b80601f0160208091040260200160405190810160405280929190818152602001828054610427906110fa565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610faa565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fe565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90610f8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90610f0a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107659190610fca565b60405180910390a3505050565b600061077e8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f857818110156107ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e190610f2a565b60405180910390fd5b6107f784848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561086e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086590610f6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d590610eea565b60405180910390fd5b6108e9838383610a7f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096690610f4a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a02919061101c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a669190610fca565b60405180910390a3610a79848484610a84565b50505050565b505050565b505050565b600081359050610a988161119b565b92915050565b600081359050610aad816111b2565b92915050565b600060208284031215610ac557600080fd5b6000610ad384828501610a89565b91505092915050565b60008060408385031215610aef57600080fd5b6000610afd85828601610a89565b9250506020610b0e85828601610a89565b9150509250929050565b600080600060608486031215610b2d57600080fd5b6000610b3b86828701610a89565b9350506020610b4c86828701610a89565b9250506040610b5d86828701610a9e565b9150509250925092565b60008060408385031215610b7a57600080fd5b6000610b8885828601610a89565b9250506020610b9985828601610a9e565b9150509250929050565b610bac81611084565b82525050565b6000610bbd82611000565b610bc7818561100b565b9350610bd78185602086016110c7565b610be08161118a565b840191505092915050565b6000610bf860238361100b565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610c5e60228361100b565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610cc4601d8361100b565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000610d0460268361100b565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d6a60258361100b565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610dd060248361100b565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e3660258361100b565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610e98816110b0565b82525050565b610ea7816110ba565b82525050565b6000602082019050610ec26000830184610ba3565b92915050565b60006020820190508181036000830152610ee28184610bb2565b905092915050565b60006020820190508181036000830152610f0381610beb565b9050919050565b60006020820190508181036000830152610f2381610c51565b9050919050565b60006020820190508181036000830152610f4381610cb7565b9050919050565b60006020820190508181036000830152610f6381610cf7565b9050919050565b60006020820190508181036000830152610f8381610d5d565b9050919050565b60006020820190508181036000830152610fa381610dc3565b9050919050565b60006020820190508181036000830152610fc381610e29565b9050919050565b6000602082019050610fdf6000830184610e8f565b92915050565b6000602082019050610ffa6000830184610e9e565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611027826110b0565b9150611032836110b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156110675761106661112c565b5b828201905092915050565b600061107d82611090565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156110e55780820151818401526020810190506110ca565b838111156110f4576000848401525b50505050565b6000600282049050600182168061111257607f821691505b602082108114156111265761112561115b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6111a481611072565b81146111af57600080fd5b50565b6111bb816110b0565b81146111c657600080fd5b5056fea264697066735822122036fa8e5751e4a094f48162547dd217f1f089d381eed5acdb3a33fa2c5ab44d6064736f6c63430008000033",
"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 0xEC8 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 0xB67 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xEAD 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 0xFCA 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 0xB18 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xEAD 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 0xFE5 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 0xB67 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xEAD 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 0xAB3 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xFCA 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 0xEC8 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 0xB67 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xEAD 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 0xB67 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xEAD 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 0xADC JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0x10FA 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 0x10FA 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 0x101C 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 0x10FA 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 0x10FA 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 0xFAA 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 0xF8A 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 0xF0A 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 0xFCA 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 0xF2A 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 0xF6A 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 0xEEA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E9 DUP4 DUP4 DUP4 PUSH2 0xA7F 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 0xF4A 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 PUSH2 0xA02 SWAP2 SWAP1 PUSH2 0x101C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA66 SWAP2 SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA79 DUP5 DUP5 DUP5 PUSH2 0xA84 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 0xA98 DUP2 PUSH2 0x119B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAAD DUP2 PUSH2 0x11B2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAD3 DUP5 DUP3 DUP6 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xAEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAFD DUP6 DUP3 DUP7 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB0E DUP6 DUP3 DUP7 ADD PUSH2 0xA89 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 0xB2D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB3B DUP7 DUP3 DUP8 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB4C DUP7 DUP3 DUP8 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB5D DUP7 DUP3 DUP8 ADD PUSH2 0xA9E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB7A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB88 DUP6 DUP3 DUP7 ADD PUSH2 0xA89 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB99 DUP6 DUP3 DUP7 ADD PUSH2 0xA9E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBAC DUP2 PUSH2 0x1084 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBBD DUP3 PUSH2 0x1000 JUMP JUMPDEST PUSH2 0xBC7 DUP2 DUP6 PUSH2 0x100B JUMP JUMPDEST SWAP4 POP PUSH2 0xBD7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x10C7 JUMP JUMPDEST PUSH2 0xBE0 DUP2 PUSH2 0x118A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBF8 PUSH1 0x23 DUP4 PUSH2 0x100B 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 0xC5E PUSH1 0x22 DUP4 PUSH2 0x100B 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 0xCC4 PUSH1 0x1D DUP4 PUSH2 0x100B 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 0xD04 PUSH1 0x26 DUP4 PUSH2 0x100B 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 0xD6A PUSH1 0x25 DUP4 PUSH2 0x100B 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 0xDD0 PUSH1 0x24 DUP4 PUSH2 0x100B 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 0xE36 PUSH1 0x25 DUP4 PUSH2 0x100B 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 0xE98 DUP2 PUSH2 0x10B0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xEA7 DUP2 PUSH2 0x10BA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEC2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xBA3 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 0xEE2 DUP2 DUP5 PUSH2 0xBB2 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 0xF03 DUP2 PUSH2 0xBEB 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 0xF23 DUP2 PUSH2 0xC51 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 0xF43 DUP2 PUSH2 0xCB7 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 0xF63 DUP2 PUSH2 0xCF7 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 0xF83 DUP2 PUSH2 0xD5D 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 0xFA3 DUP2 PUSH2 0xDC3 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 0xFC3 DUP2 PUSH2 0xE29 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFDF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE8F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xFFA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE9E 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 0x1027 DUP3 PUSH2 0x10B0 JUMP JUMPDEST SWAP2 POP PUSH2 0x1032 DUP4 PUSH2 0x10B0 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1067 JUMPI PUSH2 0x1066 PUSH2 0x112C JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x107D DUP3 PUSH2 0x1090 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 0x10E5 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10CA JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x10F4 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 0x1112 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1126 JUMPI PUSH2 0x1125 PUSH2 0x115B 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 0x11A4 DUP2 PUSH2 0x1072 JUMP JUMPDEST DUP2 EQ PUSH2 0x11AF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x11BB DUP2 PUSH2 0x10B0 JUMP JUMPDEST DUP2 EQ PUSH2 0x11C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATASIZE STATICCALL DUP15 JUMPI MLOAD 0xE4 LOG0 SWAP5 DELEGATECALL DUP2 PUSH3 0x547DD2 OR CALL CREATE DUP10 0xD3 DUP2 0xEE 0xD5 0xAC 0xDB GASPRICE CALLER STATICCALL 0x2C GAS 0xB4 0x4D PUSH1 0x64 PUSH20 0x6F6C634300080000330000000000000000000000 ",
"sourceMap": "139:154:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4433:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3244:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5192:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3093:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5873:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3408:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2367:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6594:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3729:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3976:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2156:98;2210:13;2242:5;2235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98;:::o;4433:197::-;4516:4;4532:13;4548:12;:10;:12::i;:::-;4532:28;;4570:32;4579:5;4586:7;4595:6;4570:8;:32::i;:::-;4619:4;4612:11;;;4433:197;;;;:::o;3244:106::-;3305:7;3331:12;;3324:19;;3244:106;:::o;5192:286::-;5319:4;5335:15;5353:12;:10;:12::i;:::-;5335:30;;5375:38;5391:4;5397:7;5406:6;5375:15;:38::i;:::-;5423:27;5433:4;5439:2;5443:6;5423:9;:27::i;:::-;5467:4;5460:11;;;5192:286;;;;;:::o;3093:91::-;3151:5;3175:2;3168:9;;3093:91;:::o;5873:234::-;5961:4;5977:13;5993:12;:10;:12::i;:::-;5977:28;;6015:64;6024:5;6031:7;6068:10;6040:25;6050:5;6057:7;6040:9;:25::i;:::-;:38;;;;:::i;:::-;6015:8;:64::i;:::-;6096:4;6089:11;;;5873:234;;;;:::o;3408:125::-;3482:7;3508:9;:18;3518:7;3508:18;;;;;;;;;;;;;;;;3501:25;;3408:125;;;:::o;2367:102::-;2423:13;2455:7;2448:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2367:102;:::o;6594:427::-;6687:4;6703:13;6719:12;:10;:12::i;:::-;6703:28;;6741:24;6768:25;6778:5;6785:7;6768:9;:25::i;:::-;6741:52;;6831:15;6811:16;:35;;6803:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6922:60;6931:5;6938:7;6966:15;6947:16;:34;6922:8;:60::i;:::-;7010:4;7003:11;;;;6594:427;;;;:::o;3729:189::-;3808:4;3824:13;3840:12;:10;:12::i;:::-;3824:28;;3862;3872:5;3879:2;3883:6;3862:9;:28::i;:::-;3907:4;3900:11;;;3729:189;;;;:::o;3976:149::-;4065:7;4091:11;:18;4103:5;4091:18;;;;;;;;;;;;;;;:27;4110:7;4091:27;;;;;;;;;;;;;;;;4084:34;;3976:149;;;;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;10110:370:0:-;10258:1;10241:19;;:5;:19;;;;10233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10338:1;10319:21;;:7;:21;;;;10311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10420:6;10390:11;:18;10402:5;10390:18;;;;;;;;;;;;;;;:27;10409:7;10390:27;;;;;;;;;;;;;;;:36;;;;10457:7;10441:32;;10450:5;10441:32;;;10466:6;10441:32;;;;;;:::i;:::-;;;;;;;;10110:370;;;:::o;10761:441::-;10891:24;10918:25;10928:5;10935:7;10918:9;:25::i;:::-;10891:52;;10977:17;10957:16;:37;10953:243;;11038:6;11018:16;:26;;11010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11120:51;11129:5;11136:7;11164:6;11145:16;:25;11120:8;:51::i;:::-;10953:243;10761:441;;;;:::o;7475:651::-;7617:1;7601:18;;:4;:18;;;;7593:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7693:1;7679:16;;:2;:16;;;;7671:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7746:38;7767:4;7773:2;7777:6;7746:20;:38::i;:::-;7795:19;7817:9;:15;7827:4;7817:15;;;;;;;;;;;;;;;;7795:37;;7865:6;7850:11;:21;;7842:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7980:6;7966:11;:20;7948:9;:15;7958:4;7948:15;;;;;;;;;;;;;;;:38;;;;8023:6;8006:9;:13;8016:2;8006:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8060:2;8045:26;;8054:4;8045:26;;;8064:6;8045:26;;;;;;:::i;:::-;;;;;;;;8082:37;8102:4;8108:2;8112:6;8082:19;:37::i;:::-;7475:651;;;;:::o;11786:121::-;;;;:::o;12495: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": "921400",
"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/GET.sol": "BEP20"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x24b04b8aacaaf1a4a0719117b29c9c3647b1f479c5ac2a60f5ff1bb6d839c238",
"license": "MIT",
"urls": [
"bzz-raw://43e46da9d9f49741ecd876a269e71bc7494058d7a8e9478429998adb5bc3eaa0",
"dweb:/ipfs/QmUtp4cqzf22C5rJ76AabKADquGWcjsc33yjYXxXC4sDvy"
]
},
"@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/GET.sol": {
"keccak256": "0xc1d71ed79d042de2af3a9ecb17481168ba6c0b3f314ccf3c4fe6011f7e216639",
"license": "MIT",
"urls": [
"bzz-raw://325e6805e3f378569f503ef5d954a588972a7bea720799f9c48d5f13f1b67190",
"dweb:/ipfs/Qmc1xWuDK4jFwL5TNXuHRHUPMkHXoWiz4zm4GQ7TcmWpKg"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:1"
},
"nodeType": "YulFunctionCall",
"src": "78:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "125:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:1"
},
"nodeType": "YulFunctionCall",
"src": "200:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:1"
},
"nodeType": "YulFunctionCall",
"src": "149:26:1"
},
"nodeType": "YulIf",
"src": "146:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:1"
},
"nodeType": "YulFunctionCall",
"src": "293:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:1"
},
"nodeType": "YulFunctionCall",
"src": "263:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:1"
},
"nodeType": "YulFunctionCall",
"src": "240:38:1"
},
"nodeType": "YulIf",
"src": "237:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:1",
"type": ""
}
],
"src": "7:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:1"
},
"nodeType": "YulFunctionCall",
"src": "371:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:1"
},
"nodeType": "YulFunctionCall",
"src": "468:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:1"
},
"nodeType": "YulFunctionCall",
"src": "492:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:1"
}
]
},
"contents": "{\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526b033b2e3c9fd0803ce80000006002556040518060400160405280601181526020017f477265656e20456172746820546f6b656e00000000000000000000000000000081525060039080519060200190620000619291906200010e565b506040518060400160405280600381526020017f474554000000000000000000000000000000000000000000000000000000000081525060049080519060200190620000af9291906200010e565b506012600555348015620000c257600080fd5b506002546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000223565b8280546200011c90620001be565b90600052602060002090601f0160209004810192826200014057600085556200018c565b82601f106200015b57805160ff19168380011785556200018c565b828001600101855582156200018c579182015b828111156200018b5782518255916020019190600101906200016e565b5b5090506200019b91906200019f565b5090565b5b80821115620001ba576000816000905550600101620001a0565b5090565b60006002820490506001821680620001d757607f821691505b60208210811415620001ee57620001ed620001f4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b610f7a80620002336000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806340c10f191161007157806340c10f19146101a357806370a08231146101d357806395d89b41146102035780639dc29fac14610221578063a9059cbb14610251578063dd62ed3e14610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd1461012557806327e235e314610155578063313ce56714610185575b600080fd5b6100c16102b1565b6040516100ce9190610c85565b60405180910390f35b6100f160048036038101906100ec9190610b91565b61033f565b6040516100fe9190610c6a565b60405180910390f35b61010f610431565b60405161011c9190610ce7565b60405180910390f35b61013f600480360381019061013a9190610b42565b610437565b60405161014c9190610c6a565b60405180910390f35b61016f600480360381019061016a9190610add565b61065d565b60405161017c9190610ce7565b60405180910390f35b61018d610675565b60405161019a9190610ce7565b60405180910390f35b6101bd60048036038101906101b89190610b91565b61067b565b6040516101ca9190610c6a565b60405180910390f35b6101ed60048036038101906101e89190610add565b610741565b6040516101fa9190610ce7565b60405180910390f35b61020b610789565b6040516102189190610c85565b60405180910390f35b61023b60048036038101906102369190610b91565b610817565b6040516102489190610c6a565b60405180910390f35b61026b60048036038101906102669190610b91565b610928565b6040516102789190610c6a565b60405180910390f35b61029b60048036038101906102969190610b06565b610a8e565b6040516102a89190610ce7565b60405180910390f35b600380546102be90610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546102ea90610e23565b80156103375780601f1061030c57610100808354040283529160200191610337565b820191906000526020600020905b81548152906001019060200180831161031a57829003601f168201915b505050505081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161041f9190610ce7565b60405180910390a36001905092915050565b60025481565b60008161044385610741565b1015610484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047b90610ca7565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053a90610cc7565b60405180910390fd5b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105919190610d1e565b92505081905550816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105e69190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161064a9190610ce7565b60405180910390a3600190509392505050565b60006020528060005260406000206000915090505481565b60055481565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106cb9190610d1e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161072f9190610ce7565b60405180910390a36001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6004805461079690610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546107c290610e23565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b505050505081565b60008161082333610741565b1015610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b90610ca7565b60405180910390fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108b29190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109169190610ce7565b60405180910390a36001905092915050565b60008161093433610741565b1015610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90610ca7565b60405180910390fd5b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109c39190610d1e565b92505081905550816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a189190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7c9190610ce7565b60405180910390a36001905092915050565b6001602052816000526040600020602052806000526040600020600091509150505481565b600081359050610ac281610f16565b92915050565b600081359050610ad781610f2d565b92915050565b600060208284031215610aef57600080fd5b6000610afd84828501610ab3565b91505092915050565b60008060408385031215610b1957600080fd5b6000610b2785828601610ab3565b9250506020610b3885828601610ab3565b9150509250929050565b600080600060608486031215610b5757600080fd5b6000610b6586828701610ab3565b9350506020610b7686828701610ab3565b9250506040610b8786828701610ac8565b9150509250925092565b60008060408385031215610ba457600080fd5b6000610bb285828601610ab3565b9250506020610bc385828601610ac8565b9150509250929050565b610bd681610dba565b82525050565b6000610be782610d02565b610bf18185610d0d565b9350610c01818560208601610df0565b610c0a81610eb3565b840191505092915050565b6000610c22600f83610d0d565b9150610c2d82610ec4565b602082019050919050565b6000610c45601183610d0d565b9150610c5082610eed565b602082019050919050565b610c6481610de6565b82525050565b6000602082019050610c7f6000830184610bcd565b92915050565b60006020820190508181036000830152610c9f8184610bdc565b905092915050565b60006020820190508181036000830152610cc081610c15565b9050919050565b60006020820190508181036000830152610ce081610c38565b9050919050565b6000602082019050610cfc6000830184610c5b565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610d2982610de6565b9150610d3483610de6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610d6957610d68610e55565b5b828201905092915050565b6000610d7f82610de6565b9150610d8a83610de6565b925082821015610d9d57610d9c610e55565b5b828203905092915050565b6000610db382610dc6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015610e0e578082015181840152602081019050610df3565b83811115610e1d576000848401525b50505050565b60006002820490506001821680610e3b57607f821691505b60208210811415610e4f57610e4e610e84565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f62616c616e636520746f6f206c6f770000000000000000000000000000000000600082015250565b7f616c6c6f77616e636520746f6f206c6f77000000000000000000000000000000600082015250565b610f1f81610da8565b8114610f2a57600080fd5b50565b610f3681610de6565b8114610f4157600080fd5b5056fea2646970667358221220ec032b694d8393ee26d5715242f23f1450effcb48c09b44ed6afcec82e7e8af264736f6c63430008020033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH12 0x33B2E3C9FD0803CE8000000 PUSH1 0x2 SSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x11 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x477265656E20456172746820546F6B656E000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x61 SWAP3 SWAP2 SWAP1 PUSH3 0x10E JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4745540000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x10E JUMP JUMPDEST POP PUSH1 0x12 PUSH1 0x5 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x2 SLOAD PUSH1 0x0 DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH3 0x223 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x11C SWAP1 PUSH3 0x1BE JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x140 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x18C JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x15B JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x18C JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x18C JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x18B JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x16E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x19B SWAP2 SWAP1 PUSH3 0x19F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x1BA JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x1A0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x1D7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x1EE JUMPI PUSH3 0x1ED PUSH3 0x1F4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xF7A DUP1 PUSH3 0x233 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 0xB4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x203 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x281 JUMPI PUSH2 0xB4 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xD7 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x107 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x125 JUMPI DUP1 PUSH4 0x27E235E3 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x185 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC1 PUSH2 0x2B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xEC SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x33F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFE SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10F PUSH2 0x431 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13A SWAP2 SWAP1 PUSH2 0xB42 JUMP JUMPDEST PUSH2 0x437 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14C SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16A SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18D PUSH2 0x675 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19A SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B8 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x67B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CA SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1ED PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x741 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FA SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH2 0x789 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x236 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x817 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x248 SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x928 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0xB06 JUMP JUMPDEST PUSH2 0xA8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH2 0x2BE SWAP1 PUSH2 0xE23 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 0x2EA SWAP1 PUSH2 0xE23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x337 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x30C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x337 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 0x31A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x41F SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x443 DUP6 PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x484 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x47B SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x543 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x53A SWAP1 PUSH2 0xCC7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH2 0x591 SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP7 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 PUSH2 0x5E6 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x64A SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 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 PUSH2 0x6CB SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x72F SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 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 0x4 DUP1 SLOAD PUSH2 0x796 SWAP1 PUSH2 0xE23 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 0x7C2 SWAP1 PUSH2 0xE23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x80F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7E4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x80F 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 0x7F2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x823 CALLER PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x864 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x85B SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x0 DUP1 CALLER 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 PUSH2 0x8B2 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x916 SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x934 CALLER PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x975 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x96C SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH2 0x9C3 SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 CALLER 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 PUSH2 0xA18 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA7C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP2 POP POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAC2 DUP2 PUSH2 0xF16 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAD7 DUP2 PUSH2 0xF2D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAFD DUP5 DUP3 DUP6 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB27 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB38 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 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 0xB57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB65 DUP7 DUP3 DUP8 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB76 DUP7 DUP3 DUP8 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB87 DUP7 DUP3 DUP8 ADD PUSH2 0xAC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBB2 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBC3 DUP6 DUP3 DUP7 ADD PUSH2 0xAC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBD6 DUP2 PUSH2 0xDBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBE7 DUP3 PUSH2 0xD02 JUMP JUMPDEST PUSH2 0xBF1 DUP2 DUP6 PUSH2 0xD0D JUMP JUMPDEST SWAP4 POP PUSH2 0xC01 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xDF0 JUMP JUMPDEST PUSH2 0xC0A DUP2 PUSH2 0xEB3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC22 PUSH1 0xF DUP4 PUSH2 0xD0D JUMP JUMPDEST SWAP2 POP PUSH2 0xC2D DUP3 PUSH2 0xEC4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC45 PUSH1 0x11 DUP4 PUSH2 0xD0D JUMP JUMPDEST SWAP2 POP PUSH2 0xC50 DUP3 PUSH2 0xEED JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC64 DUP2 PUSH2 0xDE6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC7F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xBCD 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 0xC9F DUP2 DUP5 PUSH2 0xBDC 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 0xCC0 DUP2 PUSH2 0xC15 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 0xCE0 DUP2 PUSH2 0xC38 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCFC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC5B 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 0xD29 DUP3 PUSH2 0xDE6 JUMP JUMPDEST SWAP2 POP PUSH2 0xD34 DUP4 PUSH2 0xDE6 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xD69 JUMPI PUSH2 0xD68 PUSH2 0xE55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD7F DUP3 PUSH2 0xDE6 JUMP JUMPDEST SWAP2 POP PUSH2 0xD8A DUP4 PUSH2 0xDE6 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xD9D JUMPI PUSH2 0xD9C PUSH2 0xE55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDB3 DUP3 PUSH2 0xDC6 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE0E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xDF3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xE1D 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 0xE3B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xE4F JUMPI PUSH2 0xE4E PUSH2 0xE84 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 PUSH32 0x62616C616E636520746F6F206C6F770000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x616C6C6F77616E636520746F6F206C6F77000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0xF1F DUP2 PUSH2 0xDA8 JUMP JUMPDEST DUP2 EQ PUSH2 0xF2A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xF36 DUP2 PUSH2 0xDE6 JUMP JUMPDEST DUP2 EQ PUSH2 0xF41 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xEC SUB 0x2B PUSH10 0x4D8393EE26D5715242F2 EXTCODEHASH EQ POP 0xEF 0xFC 0xB4 DUP13 MULMOD 0xB4 0x4E 0xD6 0xAF 0xCE 0xC8 0x2E PUSH31 0x8AF264736F6C63430008020033000000000000000000000000000000000000 ",
"sourceMap": "86:2088:0:-:0;;;249:21;223:47;;277:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;324:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;382:2;359:25;;667:67;;;;;;;;;;715:11;;692:8;:20;701:10;692:20;;;;;;;;;;;;;;;:34;;;;86:2088;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:1:-;;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:2;;212:4;204:6;200:17;190:27;;146:2;274;266:6;263:14;243:18;240:38;237:2;;;293:18;;:::i;:::-;237:2;58:269;;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;86:2088:0;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7832:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:1"
},
"nodeType": "YulFunctionCall",
"src": "78:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:1"
},
"nodeType": "YulFunctionCall",
"src": "107:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:1",
"type": ""
}
],
"src": "7:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:1"
},
"nodeType": "YulFunctionCall",
"src": "223:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:1"
},
"nodeType": "YulFunctionCall",
"src": "252:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:1",
"type": ""
}
],
"src": "152:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:1"
},
"nodeType": "YulFunctionCall",
"src": "411:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:1"
},
"nodeType": "YulFunctionCall",
"src": "380:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:1"
},
"nodeType": "YulFunctionCall",
"src": "376:32:1"
},
"nodeType": "YulIf",
"src": "373:2:1"
},
{
"nodeType": "YulBlock",
"src": "435:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:1"
},
"nodeType": "YulFunctionCall",
"src": "510:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:1"
},
"nodeType": "YulFunctionCall",
"src": "489:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:1",
"type": ""
}
],
"src": "297:262:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:1"
},
"nodeType": "YulFunctionCall",
"src": "696:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:1"
},
"nodeType": "YulFunctionCall",
"src": "665:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:1"
},
"nodeType": "YulFunctionCall",
"src": "661:32:1"
},
"nodeType": "YulIf",
"src": "658:2:1"
},
{
"nodeType": "YulBlock",
"src": "720:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:1"
},
"nodeType": "YulFunctionCall",
"src": "795:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:1"
},
"nodeType": "YulFunctionCall",
"src": "774:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:1"
},
"nodeType": "YulFunctionCall",
"src": "923:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:1"
},
"nodeType": "YulFunctionCall",
"src": "902:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:1",
"type": ""
}
],
"src": "565:407:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:1"
},
"nodeType": "YulIf",
"src": "1088:2:1"
},
{
"nodeType": "YulBlock",
"src": "1150:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:1",
"type": ""
}
],
"src": "978:552:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:1"
},
"nodeType": "YulIf",
"src": "1629:2:1"
},
{
"nodeType": "YulBlock",
"src": "1691:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:1",
"type": ""
}
],
"src": "1536:407:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2008:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2025:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2045:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2030:14:1"
},
"nodeType": "YulFunctionCall",
"src": "2030:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2018:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2018:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "2018:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1996:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2003:3:1",
"type": ""
}
],
"src": "1949:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2156:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2166:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2213:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2180:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2180:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2170:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2228:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2294:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2299:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2235:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2235:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2228:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2341:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2348:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2337:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2337:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2355:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2360:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2315:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2315:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2315:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2376:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2387:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2414:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2392:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2392:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2383:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2383:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2376:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2137:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2144:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2152:3:1",
"type": ""
}
],
"src": "2064:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2580:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2590:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2656:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2661:2:1",
"type": "",
"value": "15"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2597:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2597:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2590:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2762:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825",
"nodeType": "YulIdentifier",
"src": "2673:88:1"
},
"nodeType": "YulFunctionCall",
"src": "2673:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "2673:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2775:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2786:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2791:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2782:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2782:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2775:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2568:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2576:3:1",
"type": ""
}
],
"src": "2434:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2952:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2962:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3028:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3033:2:1",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2969:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2969:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2962:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3134:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8",
"nodeType": "YulIdentifier",
"src": "3045:88:1"
},
"nodeType": "YulFunctionCall",
"src": "3045:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "3045:93:1"
},
{
"nodeType": "YulAssignment",
"src": "3147:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3158:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3163:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3154:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3154:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3147:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2940:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2948:3:1",
"type": ""
}
],
"src": "2806:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3243:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3260:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3283:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3265:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3265:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3253:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3253:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "3253:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3231:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3238:3:1",
"type": ""
}
],
"src": "3178:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3394:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3404:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3416:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3427:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3412:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3412:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3404:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3478:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3491:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3502:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3487:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3487:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3440:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3440:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "3440:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3366:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3378:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3389:4:1",
"type": ""
}
],
"src": "3302:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3636:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3646:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3658:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3669:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3654:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3654:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3646:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3693:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3704:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3689:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3689:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3712:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3718:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3708:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3708:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3682:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3682:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "3682:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3738:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3810:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3819:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3746:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3746:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3738:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3608:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3620:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3631:4:1",
"type": ""
}
],
"src": "3518:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4008:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4018:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4030:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4041:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4026:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4026:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4018:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4065:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4076:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4061:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4061:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4084:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4090:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4080:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4080:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4054:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4054:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "4054:47:1"
},
{
"nodeType": "YulAssignment",
"src": "4110:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4244:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4118:124:1"
},
"nodeType": "YulFunctionCall",
"src": "4118:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4110:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3988:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4003:4:1",
"type": ""
}
],
"src": "3837:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4433:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4443:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4455:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4466:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4451:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4451:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4443:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4490:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4501:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4486:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4486:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4509:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4515:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4505:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4479:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4479:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "4479:47:1"
},
{
"nodeType": "YulAssignment",
"src": "4535:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4669:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4543:124:1"
},
"nodeType": "YulFunctionCall",
"src": "4543:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4535:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4413:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4428:4:1",
"type": ""
}
],
"src": "4262:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4785:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4795:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4807:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4818:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4803:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4803:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4795:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4875:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4888:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4899:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4884:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4884:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4831:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4831:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "4831:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4757:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4769:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4780:4:1",
"type": ""
}
],
"src": "4687:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4974:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4985:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5001:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4995:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4995:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4985:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4957:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4967:6:1",
"type": ""
}
],
"src": "4915:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5116:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5133:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5138:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5126:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5126:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "5126:19:1"
},
{
"nodeType": "YulAssignment",
"src": "5154:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5173:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5178:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5169:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5169:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5154:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5088:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5093:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5104:11:1",
"type": ""
}
],
"src": "5020:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5239:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5249:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5272:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5254:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5254:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5249:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5283:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5306:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5288:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5288:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5283:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5446:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5448:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5448:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5448:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5367:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5374:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5442:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5370:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5370:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5364:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5364:81:1"
},
"nodeType": "YulIf",
"src": "5361:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5478:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5489:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5492:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5485:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5485:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5478:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5226:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5229:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5235:3:1",
"type": ""
}
],
"src": "5195:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5551:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5561:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5584:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5566:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5566:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5561:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5595:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5618:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5600:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5600:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5595:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5642:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5644:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5644:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5644:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5636:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5639:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5633:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5633:8:1"
},
"nodeType": "YulIf",
"src": "5630:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5674:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5686:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5689:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5682:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5682:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5674:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5537:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5540:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5546:4:1",
"type": ""
}
],
"src": "5506:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5748:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5758:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5787:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5769:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5769:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5758:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5730:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5740:7:1",
"type": ""
}
],
"src": "5703:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5847:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5857:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5882:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5875:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5875:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5868:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5868:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5857:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5829:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5839:7:1",
"type": ""
}
],
"src": "5805:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5946:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5956:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5971:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5978:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5967:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5956:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5928:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5938:7:1",
"type": ""
}
],
"src": "5901:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6078:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6088:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "6099:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6088:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6060:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6070:7:1",
"type": ""
}
],
"src": "6033:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6165:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6175:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6184:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "6179:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6244:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "6269:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6274:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6265:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "6288:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6293:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6284:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6284:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6278:5:1"
},
"nodeType": "YulFunctionCall",
"src": "6278:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6258:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6258:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "6258:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6205:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6208:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6202:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6202:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6216:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6218:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6227:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6230:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6223:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6223:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6218:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "6198:3:1",
"statements": []
},
"src": "6194:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6341:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "6391:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6396:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6387:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6387:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6405:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6380:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6380:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "6380:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6322:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6325:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6319:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6319:13:1"
},
"nodeType": "YulIf",
"src": "6316:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "6147:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "6152:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6157:6:1",
"type": ""
}
],
"src": "6116:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6480:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6490:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6504:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6510:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6500:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6500:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6490:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6521:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6551:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6557:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6547:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6547:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6525:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6598:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6612:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6626:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6634:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6622:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6622:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6612:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6578:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6571:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6571:26:1"
},
"nodeType": "YulIf",
"src": "6568:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6701:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6715:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6715:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6715:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6665:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6688:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6696:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6685:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6685:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6662:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6662:38:1"
},
"nodeType": "YulIf",
"src": "6659:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6464:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6473:6:1",
"type": ""
}
],
"src": "6429:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6783:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6800:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6803:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6793:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6793:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6793:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6897:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6900:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6890:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6890:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6890:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6921:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6924:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6914:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6914:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6914:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6755:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6969:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6986:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6989:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6979:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6979:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6979:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7083:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7086:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7076:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7076:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7076:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7107:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7110:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7100:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7100:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6941:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7175:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7185:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7203:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7210:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7199:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7219:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7215:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7215:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7195:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7195:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7185:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7158:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7168:6:1",
"type": ""
}
],
"src": "7127:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7341:59:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7363:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7371:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7359:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7359:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7375:17:1",
"type": "",
"value": "balance too low"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7352:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7352:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "7352:41:1"
}
]
},
"name": "store_literal_in_memory_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7333:6:1",
"type": ""
}
],
"src": "7235:165:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7512:61:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7534:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7542:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7530:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7530:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7546:19:1",
"type": "",
"value": "allowance too low"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7523:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7523:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "7523:43:1"
}
]
},
"name": "store_literal_in_memory_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7504:6:1",
"type": ""
}
],
"src": "7406:167:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7622:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7679:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7688:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7691:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7681:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7681:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7681:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7645:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7670:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "7652:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7652:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7642:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7642:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7635:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7635:43:1"
},
"nodeType": "YulIf",
"src": "7632:2:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7615:5:1",
"type": ""
}
],
"src": "7579:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7750:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7807:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7816:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7819:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7809:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7809:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7809:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7773:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7798:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7780:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7780:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7770:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7770:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7763:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7763:43:1"
},
"nodeType": "YulIf",
"src": "7760:2:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7743:5:1",
"type": ""
}
],
"src": "7707:122:1"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_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_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 15)\n store_literal_in_memory_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 17)\n store_literal_in_memory_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8(pos)\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_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_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825__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_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8__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_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8_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_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function 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 store_literal_in_memory_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825(memPtr) {\n\n mstore(add(memPtr, 0), \"balance too low\")\n\n }\n\n function store_literal_in_memory_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8(memPtr) {\n\n mstore(add(memPtr, 0), \"allowance too low\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100b45760003560e01c806340c10f191161007157806340c10f19146101a357806370a08231146101d357806395d89b41146102035780639dc29fac14610221578063a9059cbb14610251578063dd62ed3e14610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd1461012557806327e235e314610155578063313ce56714610185575b600080fd5b6100c16102b1565b6040516100ce9190610c85565b60405180910390f35b6100f160048036038101906100ec9190610b91565b61033f565b6040516100fe9190610c6a565b60405180910390f35b61010f610431565b60405161011c9190610ce7565b60405180910390f35b61013f600480360381019061013a9190610b42565b610437565b60405161014c9190610c6a565b60405180910390f35b61016f600480360381019061016a9190610add565b61065d565b60405161017c9190610ce7565b60405180910390f35b61018d610675565b60405161019a9190610ce7565b60405180910390f35b6101bd60048036038101906101b89190610b91565b61067b565b6040516101ca9190610c6a565b60405180910390f35b6101ed60048036038101906101e89190610add565b610741565b6040516101fa9190610ce7565b60405180910390f35b61020b610789565b6040516102189190610c85565b60405180910390f35b61023b60048036038101906102369190610b91565b610817565b6040516102489190610c6a565b60405180910390f35b61026b60048036038101906102669190610b91565b610928565b6040516102789190610c6a565b60405180910390f35b61029b60048036038101906102969190610b06565b610a8e565b6040516102a89190610ce7565b60405180910390f35b600380546102be90610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546102ea90610e23565b80156103375780601f1061030c57610100808354040283529160200191610337565b820191906000526020600020905b81548152906001019060200180831161031a57829003601f168201915b505050505081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161041f9190610ce7565b60405180910390a36001905092915050565b60025481565b60008161044385610741565b1015610484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047b90610ca7565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053a90610cc7565b60405180910390fd5b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105919190610d1e565b92505081905550816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105e69190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161064a9190610ce7565b60405180910390a3600190509392505050565b60006020528060005260406000206000915090505481565b60055481565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106cb9190610d1e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161072f9190610ce7565b60405180910390a36001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6004805461079690610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546107c290610e23565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b505050505081565b60008161082333610741565b1015610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b90610ca7565b60405180910390fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108b29190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109169190610ce7565b60405180910390a36001905092915050565b60008161093433610741565b1015610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90610ca7565b60405180910390fd5b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109c39190610d1e565b92505081905550816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a189190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7c9190610ce7565b60405180910390a36001905092915050565b6001602052816000526040600020602052806000526040600020600091509150505481565b600081359050610ac281610f16565b92915050565b600081359050610ad781610f2d565b92915050565b600060208284031215610aef57600080fd5b6000610afd84828501610ab3565b91505092915050565b60008060408385031215610b1957600080fd5b6000610b2785828601610ab3565b9250506020610b3885828601610ab3565b9150509250929050565b600080600060608486031215610b5757600080fd5b6000610b6586828701610ab3565b9350506020610b7686828701610ab3565b9250506040610b8786828701610ac8565b9150509250925092565b60008060408385031215610ba457600080fd5b6000610bb285828601610ab3565b9250506020610bc385828601610ac8565b9150509250929050565b610bd681610dba565b82525050565b6000610be782610d02565b610bf18185610d0d565b9350610c01818560208601610df0565b610c0a81610eb3565b840191505092915050565b6000610c22600f83610d0d565b9150610c2d82610ec4565b602082019050919050565b6000610c45601183610d0d565b9150610c5082610eed565b602082019050919050565b610c6481610de6565b82525050565b6000602082019050610c7f6000830184610bcd565b92915050565b60006020820190508181036000830152610c9f8184610bdc565b905092915050565b60006020820190508181036000830152610cc081610c15565b9050919050565b60006020820190508181036000830152610ce081610c38565b9050919050565b6000602082019050610cfc6000830184610c5b565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610d2982610de6565b9150610d3483610de6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610d6957610d68610e55565b5b828201905092915050565b6000610d7f82610de6565b9150610d8a83610de6565b925082821015610d9d57610d9c610e55565b5b828203905092915050565b6000610db382610dc6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015610e0e578082015181840152602081019050610df3565b83811115610e1d576000848401525b50505050565b60006002820490506001821680610e3b57607f821691505b60208210811415610e4f57610e4e610e84565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f62616c616e636520746f6f206c6f770000000000000000000000000000000000600082015250565b7f616c6c6f77616e636520746f6f206c6f77000000000000000000000000000000600082015250565b610f1f81610da8565b8114610f2a57600080fd5b50565b610f3681610de6565b8114610f4157600080fd5b5056fea2646970667358221220ec032b694d8393ee26d5715242f23f1450effcb48c09b44ed6afcec82e7e8af264736f6c63430008020033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xB4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x203 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x281 JUMPI PUSH2 0xB4 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xD7 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x107 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x125 JUMPI DUP1 PUSH4 0x27E235E3 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x185 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC1 PUSH2 0x2B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xEC SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x33F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFE SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10F PUSH2 0x431 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13A SWAP2 SWAP1 PUSH2 0xB42 JUMP JUMPDEST PUSH2 0x437 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14C SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16A SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18D PUSH2 0x675 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19A SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B8 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x67B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CA SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1ED PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x741 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FA SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH2 0x789 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x236 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x817 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x248 SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x928 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0xB06 JUMP JUMPDEST PUSH2 0xA8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH2 0x2BE SWAP1 PUSH2 0xE23 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 0x2EA SWAP1 PUSH2 0xE23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x337 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x30C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x337 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 0x31A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x41F SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x443 DUP6 PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x484 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x47B SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x543 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x53A SWAP1 PUSH2 0xCC7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH2 0x591 SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP7 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 PUSH2 0x5E6 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x64A SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 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 PUSH2 0x6CB SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x72F SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 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 0x4 DUP1 SLOAD PUSH2 0x796 SWAP1 PUSH2 0xE23 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 0x7C2 SWAP1 PUSH2 0xE23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x80F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7E4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x80F 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 0x7F2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x823 CALLER PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x864 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x85B SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x0 DUP1 CALLER 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 PUSH2 0x8B2 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x916 SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x934 CALLER PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x975 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x96C SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH2 0x9C3 SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 CALLER 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 PUSH2 0xA18 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA7C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP2 POP POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAC2 DUP2 PUSH2 0xF16 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAD7 DUP2 PUSH2 0xF2D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAFD DUP5 DUP3 DUP6 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB27 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB38 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 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 0xB57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB65 DUP7 DUP3 DUP8 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB76 DUP7 DUP3 DUP8 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB87 DUP7 DUP3 DUP8 ADD PUSH2 0xAC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBB2 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBC3 DUP6 DUP3 DUP7 ADD PUSH2 0xAC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBD6 DUP2 PUSH2 0xDBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBE7 DUP3 PUSH2 0xD02 JUMP JUMPDEST PUSH2 0xBF1 DUP2 DUP6 PUSH2 0xD0D JUMP JUMPDEST SWAP4 POP PUSH2 0xC01 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xDF0 JUMP JUMPDEST PUSH2 0xC0A DUP2 PUSH2 0xEB3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC22 PUSH1 0xF DUP4 PUSH2 0xD0D JUMP JUMPDEST SWAP2 POP PUSH2 0xC2D DUP3 PUSH2 0xEC4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC45 PUSH1 0x11 DUP4 PUSH2 0xD0D JUMP JUMPDEST SWAP2 POP PUSH2 0xC50 DUP3 PUSH2 0xEED JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC64 DUP2 PUSH2 0xDE6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC7F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xBCD 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 0xC9F DUP2 DUP5 PUSH2 0xBDC 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 0xCC0 DUP2 PUSH2 0xC15 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 0xCE0 DUP2 PUSH2 0xC38 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCFC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC5B 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 0xD29 DUP3 PUSH2 0xDE6 JUMP JUMPDEST SWAP2 POP PUSH2 0xD34 DUP4 PUSH2 0xDE6 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xD69 JUMPI PUSH2 0xD68 PUSH2 0xE55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD7F DUP3 PUSH2 0xDE6 JUMP JUMPDEST SWAP2 POP PUSH2 0xD8A DUP4 PUSH2 0xDE6 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xD9D JUMPI PUSH2 0xD9C PUSH2 0xE55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDB3 DUP3 PUSH2 0xDC6 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE0E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xDF3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xE1D 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 0xE3B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xE4F JUMPI PUSH2 0xE4E PUSH2 0xE84 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 PUSH32 0x62616C616E636520746F6F206C6F770000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x616C6C6F77616E636520746F6F206C6F77000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0xF1F DUP2 PUSH2 0xDA8 JUMP JUMPDEST DUP2 EQ PUSH2 0xF2A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xF36 DUP2 PUSH2 0xDE6 JUMP JUMPDEST DUP2 EQ PUSH2 0xF41 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xEC SUB 0x2B PUSH10 0x4D8393EE26D5715242F2 EXTCODEHASH EQ POP 0xEF 0xFC 0xB4 DUP13 MULMOD 0xB4 0x4E 0xD6 0xAF 0xCE 0xC8 0x2E PUSH31 0x8AF264736F6C63430008020033000000000000000000000000000000000000 ",
"sourceMap": "86:2088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1519:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;223:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1146:361;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;359:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1729:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1910:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;854:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;155:61;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;277:40;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1519:202::-;1581:4;1631:5;1598:9;:21;1608:10;1598:21;;;;;;;;;;;;;;;:30;1620:7;1598:30;;;;;;;;;;;;;;;:38;;;;1673:7;1652:36;;1661:10;1652:36;;;1682:5;1652:36;;;;;;:::i;:::-;;;;;;;;1706:4;1699:11;;1519:202;;;;:::o;223:47::-;;;;:::o;1146:361::-;1221:4;1265:5;1246:15;1256:4;1246:9;:15::i;:::-;:24;;1238:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;1340:5;1309:9;:15;1319:4;1309:15;;;;;;;;;;;;;;;:27;1325:10;1309:27;;;;;;;;;;;;;;;;:36;;1301:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1394:5;1378:8;:12;1387:2;1378:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;1428:5;1410:8;:14;1419:4;1410:14;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;1464:2;1449:25;;1458:4;1449:25;;;1468:5;1449:25;;;;;;:::i;:::-;;;;;;;;1492:4;1485:11;;1146:361;;;;;:::o;108:40::-;;;;;;;;;;;;;;;;;:::o;359:25::-;;;;:::o;1729:172::-;1783:4;1816:5;1800:8;:12;1809:2;1800:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;1858:2;1837:31;;1846:10;1837:31;;;1862:5;1837:31;;;;;;:::i;:::-;;;;;;;;1886:4;1879:11;;1729:172;;;;:::o;746:96::-;795:4;819:8;:15;828:5;819:15;;;;;;;;;;;;;;;;812:22;;746:96;;;:::o;324:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1910:257::-;1968:4;2018:5;1993:21;2003:10;1993:9;:21::i;:::-;:30;;1985:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2078:5;2054:8;:20;2063:10;2054:20;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;2120:6;2099:35;;2108:10;2099:35;;;2128:5;2099:35;;;;;;:::i;:::-;;;;;;;;2152:4;2145:11;;1910:257;;;;:::o;854:280::-;911:4;961:5;936:21;946:10;936:9;:21::i;:::-;:30;;928:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1013:5;997:8;:12;1006:2;997:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;1053:5;1029:8;:20;1038:10;1029:20;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1094:2;1073:31;;1082:10;1073:31;;;1098:5;1073:31;;;;;;:::i;:::-;;;;;;;;1122:4;1115:11;;854:280;;;;:::o;155:61::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;;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:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:118::-;3265:24;3283:5;3265:24;:::i;:::-;3260:3;3253:37;3243:53;;:::o;3302:210::-;;3427:2;3416:9;3412:18;3404:26;;3440:65;3502:1;3491:9;3487:17;3478:6;3440:65;:::i;:::-;3394:118;;;;:::o;3518:313::-;;3669:2;3658:9;3654:18;3646:26;;3718:9;3712:4;3708:20;3704:1;3693:9;3689:17;3682:47;3746:78;3819:4;3810:6;3746:78;:::i;:::-;3738:86;;3636:195;;;;:::o;3837:419::-;;4041:2;4030:9;4026:18;4018:26;;4090:9;4084:4;4080:20;4076:1;4065:9;4061:17;4054:47;4118:131;4244:4;4118:131;:::i;:::-;4110:139;;4008:248;;;:::o;4262:419::-;;4466:2;4455:9;4451:18;4443:26;;4515:9;4509:4;4505:20;4501:1;4490:9;4486:17;4479:47;4543:131;4669:4;4543:131;:::i;:::-;4535:139;;4433:248;;;:::o;4687:222::-;;4818:2;4807:9;4803:18;4795:26;;4831:71;4899:1;4888:9;4884:17;4875:6;4831:71;:::i;:::-;4785:124;;;;:::o;4915:99::-;;5001:5;4995:12;4985:22;;4974:40;;;:::o;5020:169::-;;5138:6;5133:3;5126:19;5178:4;5173:3;5169:14;5154:29;;5116:73;;;;:::o;5195:305::-;;5254:20;5272:1;5254:20;:::i;:::-;5249:25;;5288:20;5306:1;5288:20;:::i;:::-;5283:25;;5442:1;5374:66;5370:74;5367:1;5364:81;5361:2;;;5448:18;;:::i;:::-;5361:2;5492:1;5489;5485:9;5478:16;;5239:261;;;;:::o;5506:191::-;;5566:20;5584:1;5566:20;:::i;:::-;5561:25;;5600:20;5618:1;5600:20;:::i;:::-;5595:25;;5639:1;5636;5633:8;5630:2;;;5644:18;;:::i;:::-;5630:2;5689:1;5686;5682:9;5674:17;;5551:146;;;;:::o;5703:96::-;;5769:24;5787:5;5769:24;:::i;:::-;5758:35;;5748:51;;;:::o;5805:90::-;;5882:5;5875:13;5868:21;5857:32;;5847:48;;;:::o;5901:126::-;;5978:42;5971:5;5967:54;5956:65;;5946:81;;;:::o;6033:77::-;;6099:5;6088:16;;6078:32;;;:::o;6116:307::-;6184:1;6194:113;6208:6;6205:1;6202:13;6194:113;;;6293:1;6288:3;6284:11;6278:18;6274:1;6269:3;6265:11;6258:39;6230:2;6227:1;6223:10;6218:15;;6194:113;;;6325:6;6322:1;6319:13;6316:2;;;6405:1;6396:6;6391:3;6387:16;6380:27;6316:2;6165:258;;;;:::o;6429:320::-;;6510:1;6504:4;6500:12;6490:22;;6557:1;6551:4;6547:12;6578:18;6568:2;;6634:4;6626:6;6622:17;6612:27;;6568:2;6696;6688:6;6685:14;6665:18;6662:38;6659:2;;;6715:18;;:::i;:::-;6659:2;6480:269;;;;:::o;6755:180::-;6803:77;6800:1;6793:88;6900:4;6897:1;6890:15;6924:4;6921:1;6914:15;6941:180;6989:77;6986:1;6979:88;7086:4;7083:1;7076:15;7110:4;7107:1;7100:15;7127:102;;7219:2;7215:7;7210:2;7203:5;7199:14;7195:28;7185:38;;7175:54;;;:::o;7235:165::-;7375:17;7371:1;7363:6;7359:14;7352:41;7341:59;:::o;7406:167::-;7546:19;7542:1;7534:6;7530:14;7523:43;7512:61;:::o;7579:122::-;7652:24;7670:5;7652:24;:::i;:::-;7645:5;7642:35;7632:2;;7691:1;7688;7681:12;7632:2;7622:79;:::o;7707:122::-;7780:24;7798:5;7780:24;:::i;:::-;7773:5;7770:35;7760:2;;7819:1;7816;7809:12;7760:2;7750:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "792400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1563",
"balances(address)": "1603",
"burn(address,uint256)": "infinite",
"decimals()": "1240",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "1174",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"balances(address)": "27e235e3",
"burn(address,uint256)": "9dc29fac",
"decimals()": "313ce567",
"mint(address,uint256)": "40c10f19",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "burner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Burn",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "mintedBy",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Mint",
"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": "",
"type": "address"
},
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "balances",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "burner",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burn",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "mint",
"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": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.2+commit.661d1103"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "burner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Burn",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "mintedBy",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Mint",
"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": "",
"type": "address"
},
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "balances",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "burner",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burn",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "mint",
"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": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/GET_V1.sol": "Token"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/GET_V1.sol": {
"keccak256": "0xe4d81db026aefc398f3e99cc0bc742c7ead947c8168ee71f96e1e371a078638d",
"license": "MIT",
"urls": [
"bzz-raw://e5c2d9e5f89c329e8959e7b25af0e478d47e398941220c986a222318ff3e5182",
"dweb:/ipfs/Qmdeq5RbdCENi8weenTcX9xNh675DtPAwUHhiX1rxyA6js"
]
}
},
"version": 1
}
// contracts/BEP20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract BEP20 is ERC20 {
constructor(uint256 initialSupply) ERC20("Green Earth Token", "GET") {
_mint(msg.sender, initialSupply);
}
}
// contracts/BEP20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
contract Token {
mapping(address => uint) public balances;
mapping(address => mapping(address => uint)) public allowance;
uint public totalSupply = 1000000000 * 10 ** 18;
string public name = "Green Earth Token";
string public symbol = "GET";
uint public decimals = 18;
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
event Burn(address indexed burner, uint value);
event Mint(address indexed mintedBy, uint value);
constructor() {
balances[msg.sender] = totalSupply;
}
function balanceOf(address owner) public returns(uint) {
return balances[owner];
}
function transfer(address to, uint value) public returns(bool) {
require(balanceOf(msg.sender) >= value, 'balance too low');
balances[to] += value;
balances[msg.sender] -= value;
emit Transfer(msg.sender, to, value);
return true;
}
function transferFrom(address from, address to, uint value) public returns(bool) {
require(balanceOf(from) >= value, 'balance too low');
require(allowance[from][msg.sender] >= value, 'allowance too low');
balances[to] += value;
balances[from] -= value;
emit Transfer(from, to, value);
return true;
}
function approve(address spender, uint value) public returns (bool) {
allowance[msg.sender][spender] = value;
emit Approval(msg.sender, spender, value);
return true;
}
function mint(address to, uint value) public returns (bool) {
balances[to] += value;
emit Transfer(msg.sender, to, value);
return true;
}
function burn(address burner, uint value) public returns (bool) {
require(balanceOf(msg.sender) >= value, 'balance too low');
balances[msg.sender] -= value;
emit Transfer(msg.sender, burner, value);
return true;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
/**
* @title SampleERC20
* @dev Create a sample ERC20 standard token
*/
contract SampleERC20 is ERC20 {
constructor(string memory tokenName, string memory tokenSymbol) ERC20(tokenName, tokenSymbol) {}
}
This file has been truncated, but you can view the full file.
{
"id": "2ba80e9a9f16cc8d39539f4577004f72",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.2",
"solcLongVersion": "0.8.2+commit.661d1103",
"input": {
"language": "Solidity",
"sources": {
"contracts/GET_V1.sol": {
"content": "// contracts/BEP20.sol\r\n// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.2;\r\n\r\n\r\ncontract Token {\r\n mapping(address => uint) public balances;\r\n mapping(address => mapping(address => uint)) public allowance;\r\n uint public totalSupply = 1000000000 * 10 ** 18;\r\n string public name = \"Green Earth Token\";\r\n string public symbol = \"GET\";\r\n uint public decimals = 18;\r\n \r\n event Transfer(address indexed from, address indexed to, uint value);\r\n event Approval(address indexed owner, address indexed spender, uint value);\r\n event Burn(address indexed burner, uint value);\r\n event Mint(address indexed mintedBy, uint value);\r\n \r\n constructor() {\r\n balances[msg.sender] = totalSupply;\r\n }\r\n \r\n function balanceOf(address owner) public returns(uint) {\r\n return balances[owner];\r\n }\r\n \r\n function transfer(address to, uint value) public returns(bool) {\r\n require(balanceOf(msg.sender) >= value, 'balance too low');\r\n balances[to] += value;\r\n balances[msg.sender] -= value;\r\n emit Transfer(msg.sender, to, value);\r\n return true;\r\n }\r\n \r\n function transferFrom(address from, address to, uint value) public returns(bool) {\r\n require(balanceOf(from) >= value, 'balance too low');\r\n require(allowance[from][msg.sender] >= value, 'allowance too low');\r\n balances[to] += value;\r\n balances[from] -= value;\r\n emit Transfer(from, to, value);\r\n return true; \r\n }\r\n \r\n function approve(address spender, uint value) public returns (bool) {\r\n allowance[msg.sender][spender] = value;\r\n emit Approval(msg.sender, spender, value);\r\n return true; \r\n }\r\n\r\n function mint(address to, uint value) public returns (bool) {\r\n balances[to] += value;\r\n emit Transfer(msg.sender, to, value);\r\n return true; \r\n }\r\n \r\n function burn(address burner, uint value) public returns (bool) {\r\n require(balanceOf(msg.sender) >= value, 'balance too low');\r\n balances[msg.sender] -= value;\r\n emit Transfer(msg.sender, burner, value);\r\n return true; \r\n }\r\n\r\n\r\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/GET_V1.sol": {
"Token": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "burner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Burn",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "mintedBy",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Mint",
"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": "",
"type": "address"
},
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "balances",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "burner",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burn",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "mint",
"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": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/GET_V1.sol\":86:2174 contract Token {\r... */\n mstore(0x40, 0x80)\n /* \"contracts/GET_V1.sol\":249:270 1000000000 * 10 ** 18 */\n 0x033b2e3c9fd0803ce8000000\n /* \"contracts/GET_V1.sol\":223:270 uint public totalSupply = 1000000000 * 10 ** 18 */\n 0x02\n sstore\n /* \"contracts/GET_V1.sol\":277:317 string public name = \"Green Earth Token\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x11\n dup2\n mstore\n 0x20\n add\n 0x477265656e20456172746820546f6b656e000000000000000000000000000000\n dup2\n mstore\n pop\n 0x03\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_1\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_1:\n pop\n /* \"contracts/GET_V1.sol\":324:352 string public symbol = \"GET\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x03\n dup2\n mstore\n 0x20\n add\n 0x4745540000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n 0x04\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_3\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_3:\n pop\n /* \"contracts/GET_V1.sol\":382:384 18 */\n 0x12\n /* \"contracts/GET_V1.sol\":359:384 uint public decimals = 18 */\n 0x05\n sstore\n /* \"contracts/GET_V1.sol\":667:734 constructor() {\r... */\n callvalue\n dup1\n iszero\n tag_4\n jumpi\n 0x00\n dup1\n revert\ntag_4:\n pop\n /* \"contracts/GET_V1.sol\":715:726 totalSupply */\n sload(0x02)\n /* \"contracts/GET_V1.sol\":692:700 balances */\n 0x00\n /* \"contracts/GET_V1.sol\":692:712 balances[msg.sender] */\n dup1\n /* \"contracts/GET_V1.sol\":701:711 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":692:712 balances[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/GET_V1.sol\":692:726 balances[msg.sender] = totalSupply */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/GET_V1.sol\":86:2174 contract Token {\r... */\n jump(tag_7)\ntag_2:\n dup3\n dup1\n sload\n tag_8\n swap1\n tag_9\n jump\t// in\ntag_8:\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_11\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_10)\ntag_11:\n dup3\n 0x1f\n lt\n tag_12\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_10)\ntag_12:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_10\n jumpi\n swap2\n dup3\n add\ntag_13:\n dup3\n dup2\n gt\n iszero\n tag_14\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_13)\ntag_14:\ntag_10:\n pop\n swap1\n pop\n tag_15\n swap2\n swap1\n tag_16\n jump\t// in\ntag_15:\n pop\n swap1\n jump\t// out\ntag_16:\ntag_17:\n dup1\n dup3\n gt\n iszero\n tag_18\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_17)\ntag_18:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:327 */\ntag_9:\n 0x00\n /* \"#utility.yul\":88:89 */\n 0x02\n /* \"#utility.yul\":82:86 */\n dup3\n /* \"#utility.yul\":78:90 */\n div\n /* \"#utility.yul\":68:90 */\n swap1\n pop\n /* \"#utility.yul\":135:136 */\n 0x01\n /* \"#utility.yul\":129:133 */\n dup3\n /* \"#utility.yul\":125:137 */\n and\n /* \"#utility.yul\":156:174 */\n dup1\n /* \"#utility.yul\":146:148 */\n tag_21\n jumpi\n /* \"#utility.yul\":212:216 */\n 0x7f\n /* \"#utility.yul\":204:210 */\n dup3\n /* \"#utility.yul\":200:217 */\n and\n /* \"#utility.yul\":190:217 */\n swap2\n pop\n /* \"#utility.yul\":146:148 */\ntag_21:\n /* \"#utility.yul\":274:276 */\n 0x20\n /* \"#utility.yul\":266:272 */\n dup3\n /* \"#utility.yul\":263:277 */\n lt\n /* \"#utility.yul\":243:261 */\n dup2\n /* \"#utility.yul\":240:278 */\n eq\n /* \"#utility.yul\":237:239 */\n iszero\n tag_22\n jumpi\n /* \"#utility.yul\":293:311 */\n tag_23\n tag_24\n jump\t// in\ntag_23:\n /* \"#utility.yul\":237:239 */\ntag_22:\n /* \"#utility.yul\":58:327 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":333:513 */\ntag_24:\n /* \"#utility.yul\":381:458 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":378:379 */\n 0x00\n /* \"#utility.yul\":371:459 */\n mstore\n /* \"#utility.yul\":478:482 */\n 0x22\n /* \"#utility.yul\":475:476 */\n 0x04\n /* \"#utility.yul\":468:483 */\n mstore\n /* \"#utility.yul\":502:506 */\n 0x24\n /* \"#utility.yul\":499:500 */\n 0x00\n /* \"#utility.yul\":492:507 */\n revert\n /* \"contracts/GET_V1.sol\":86:2174 contract Token {\r... */\ntag_7:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/GET_V1.sol\":86:2174 contract Token {\r... */\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 0x40c10f19\n gt\n tag_15\n jumpi\n dup1\n 0x40c10f19\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_11\n jumpi\n dup1\n 0x9dc29fac\n eq\n tag_12\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_13\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_14\n jumpi\n jump(tag_2)\n tag_15:\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 0x27e235e3\n eq\n tag_7\n jumpi\n dup1\n 0x313ce567\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/GET_V1.sol\":277:317 string public name = \"Green Earth Token\" */\n tag_3:\n tag_16\n tag_17\n jump\t// in\n tag_16:\n mload(0x40)\n tag_18\n swap2\n swap1\n tag_19\n jump\t// in\n tag_18:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":1519:1721 function approve(address spender, uint value) public returns (bool) {\r... */\n tag_4:\n tag_20\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_21\n swap2\n swap1\n tag_22\n jump\t// in\n tag_21:\n tag_23\n jump\t// in\n tag_20:\n mload(0x40)\n tag_24\n swap2\n swap1\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":223:270 uint public totalSupply = 1000000000 * 10 ** 18 */\n tag_5:\n tag_26\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n tag_28\n swap2\n swap1\n tag_29\n jump\t// in\n tag_28:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":1146:1507 function transferFrom(address from, address to, uint value) public returns(bool) {\r... */\n tag_6:\n tag_30\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n tag_33\n jump\t// in\n tag_30:\n mload(0x40)\n tag_34\n swap2\n swap1\n tag_25\n jump\t// in\n tag_34:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":108:148 mapping(address => uint) public balances */\n tag_7:\n tag_35\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n tag_38\n jump\t// in\n tag_35:\n mload(0x40)\n tag_39\n swap2\n swap1\n tag_29\n jump\t// in\n tag_39:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":359:384 uint public decimals = 18 */\n tag_8:\n tag_40\n tag_41\n jump\t// in\n tag_40:\n mload(0x40)\n tag_42\n swap2\n swap1\n tag_29\n jump\t// in\n tag_42:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":1729:1901 function mint(address to, uint value) public returns (bool) {\r... */\n tag_9:\n tag_43\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_44\n swap2\n swap1\n tag_22\n jump\t// in\n tag_44:\n tag_45\n jump\t// in\n tag_43:\n mload(0x40)\n tag_46\n swap2\n swap1\n tag_25\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":746:842 function balanceOf(address owner) public returns(uint) {\r... */\n tag_10:\n tag_47\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_48\n swap2\n swap1\n tag_37\n jump\t// in\n tag_48:\n tag_49\n jump\t// in\n tag_47:\n mload(0x40)\n tag_50\n swap2\n swap1\n tag_29\n jump\t// in\n tag_50:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":324:352 string public symbol = \"GET\" */\n tag_11:\n tag_51\n tag_52\n jump\t// in\n tag_51:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_19\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":1910:2167 function burn(address burner, uint value) public returns (bool) {\r... */\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_22\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_25\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":854:1134 function transfer(address to, uint value) public returns(bool) {\r... */\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_22\n jump\t// in\n tag_59:\n tag_60\n jump\t// in\n tag_58:\n mload(0x40)\n tag_61\n swap2\n swap1\n tag_25\n jump\t// in\n tag_61:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":155:216 mapping(address => mapping(address => uint)) public allowance */\n tag_14:\n tag_62\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_63\n swap2\n swap1\n tag_64\n jump\t// in\n tag_63:\n tag_65\n jump\t// in\n tag_62:\n mload(0x40)\n tag_66\n swap2\n swap1\n tag_29\n jump\t// in\n tag_66:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/GET_V1.sol\":277:317 string public name = \"Green Earth Token\" */\n tag_17:\n 0x03\n dup1\n sload\n tag_67\n swap1\n tag_68\n jump\t// in\n tag_67:\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_69\n swap1\n tag_68\n jump\t// in\n tag_69:\n dup1\n iszero\n tag_70\n jumpi\n dup1\n 0x1f\n lt\n tag_71\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_70)\n tag_71:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_72:\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_72\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_70:\n pop\n pop\n pop\n pop\n pop\n dup2\n jump\t// out\n /* \"contracts/GET_V1.sol\":1519:1721 function approve(address spender, uint value) public returns (bool) {\r... */\n tag_23:\n /* \"contracts/GET_V1.sol\":1581:1585 bool */\n 0x00\n /* \"contracts/GET_V1.sol\":1631:1636 value */\n dup2\n /* \"contracts/GET_V1.sol\":1598:1607 allowance */\n 0x01\n /* \"contracts/GET_V1.sol\":1598:1619 allowance[msg.sender] */\n 0x00\n /* \"contracts/GET_V1.sol\":1608:1618 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":1598:1619 allowance[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/GET_V1.sol\":1598:1628 allowance[msg.sender][spender] */\n 0x00\n /* \"contracts/GET_V1.sol\":1620:1627 spender */\n dup6\n /* \"contracts/GET_V1.sol\":1598:1628 allowance[msg.sender][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 /* \"contracts/GET_V1.sol\":1598:1636 allowance[msg.sender][spender] = value */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/GET_V1.sol\":1673:1680 spender */\n dup3\n /* \"contracts/GET_V1.sol\":1652:1688 Approval(msg.sender, spender, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/GET_V1.sol\":1661:1671 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":1652:1688 Approval(msg.sender, spender, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n /* \"contracts/GET_V1.sol\":1682:1687 value */\n dup5\n /* \"contracts/GET_V1.sol\":1652:1688 Approval(msg.sender, spender, value) */\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_29\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/GET_V1.sol\":1706:1710 true */\n 0x01\n /* \"contracts/GET_V1.sol\":1699:1710 return true */\n swap1\n pop\n /* \"contracts/GET_V1.sol\":1519:1721 function approve(address spender, uint value) public returns (bool) {\r... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/GET_V1.sol\":223:270 uint public totalSupply = 1000000000 * 10 ** 18 */\n tag_27:\n sload(0x02)\n dup2\n jump\t// out\n /* \"contracts/GET_V1.sol\":1146:1507 function transferFrom(address from, address to, uint value) public returns(bool) {\r... */\n tag_33:\n /* \"contracts/GET_V1.sol\":1221:1225 bool */\n 0x00\n /* \"contracts/GET_V1.sol\":1265:1270 value */\n dup2\n /* \"contracts/GET_V1.sol\":1246:1261 balanceOf(from) */\n tag_76\n /* \"contracts/GET_V1.sol\":1256:1260 from */\n dup6\n /* \"contracts/GET_V1.sol\":1246:1255 balanceOf */\n tag_49\n /* \"contracts/GET_V1.sol\":1246:1261 balanceOf(from) */\n jump\t// in\n tag_76:\n /* \"contracts/GET_V1.sol\":1246:1270 balanceOf(from) >= value */\n lt\n iszero\n /* \"contracts/GET_V1.sol\":1238:1290 require(balanceOf(from) >= value, 'balance too low') */\n tag_77\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_78\n swap1\n tag_79\n jump\t// in\n tag_78:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_77:\n /* \"contracts/GET_V1.sol\":1340:1345 value */\n dup2\n /* \"contracts/GET_V1.sol\":1309:1318 allowance */\n 0x01\n /* \"contracts/GET_V1.sol\":1309:1324 allowance[from] */\n 0x00\n /* \"contracts/GET_V1.sol\":1319:1323 from */\n dup7\n /* \"contracts/GET_V1.sol\":1309:1324 allowance[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 /* \"contracts/GET_V1.sol\":1309:1336 allowance[from][msg.sender] */\n 0x00\n /* \"contracts/GET_V1.sol\":1325:1335 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":1309:1336 allowance[from][msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"contracts/GET_V1.sol\":1309:1345 allowance[from][msg.sender] >= value */\n lt\n iszero\n /* \"contracts/GET_V1.sol\":1301:1367 require(allowance[from][msg.sender] >= value, 'allowance too low') */\n tag_80\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_81\n swap1\n tag_82\n jump\t// in\n tag_81:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_80:\n /* \"contracts/GET_V1.sol\":1394:1399 value */\n dup2\n /* \"contracts/GET_V1.sol\":1378:1386 balances */\n 0x00\n /* \"contracts/GET_V1.sol\":1378:1390 balances[to] */\n dup1\n /* \"contracts/GET_V1.sol\":1387:1389 to */\n dup6\n /* \"contracts/GET_V1.sol\":1378:1390 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 /* \"contracts/GET_V1.sol\":1378:1399 balances[to] += value */\n dup3\n dup3\n sload\n tag_83\n swap2\n swap1\n tag_84\n jump\t// in\n tag_83:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/GET_V1.sol\":1428:1433 value */\n dup2\n /* \"contracts/GET_V1.sol\":1410:1418 balances */\n 0x00\n /* \"contracts/GET_V1.sol\":1410:1424 balances[from] */\n dup1\n /* \"contracts/GET_V1.sol\":1419:1423 from */\n dup7\n /* \"contracts/GET_V1.sol\":1410:1424 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 0x00\n /* \"contracts/GET_V1.sol\":1410:1433 balances[from] -= value */\n dup3\n dup3\n sload\n tag_85\n swap2\n swap1\n tag_86\n jump\t// in\n tag_85:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/GET_V1.sol\":1464:1466 to */\n dup3\n /* \"contracts/GET_V1.sol\":1449:1474 Transfer(from, to, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/GET_V1.sol\":1458:1462 from */\n dup5\n /* \"contracts/GET_V1.sol\":1449:1474 Transfer(from, to, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"contracts/GET_V1.sol\":1468:1473 value */\n dup5\n /* \"contracts/GET_V1.sol\":1449:1474 Transfer(from, to, value) */\n mload(0x40)\n tag_87\n swap2\n swap1\n tag_29\n jump\t// in\n tag_87:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/GET_V1.sol\":1492:1496 true */\n 0x01\n /* \"contracts/GET_V1.sol\":1485:1496 return true */\n swap1\n pop\n /* \"contracts/GET_V1.sol\":1146:1507 function transferFrom(address from, address to, uint value) public returns(bool) {\r... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/GET_V1.sol\":108:148 mapping(address => uint) public balances */\n tag_38:\n mstore(0x20, 0x00)\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"contracts/GET_V1.sol\":359:384 uint public decimals = 18 */\n tag_41:\n sload(0x05)\n dup2\n jump\t// out\n /* \"contracts/GET_V1.sol\":1729:1901 function mint(address to, uint value) public returns (bool) {\r... */\n tag_45:\n /* \"contracts/GET_V1.sol\":1783:1787 bool */\n 0x00\n /* \"contracts/GET_V1.sol\":1816:1821 value */\n dup2\n /* \"contracts/GET_V1.sol\":1800:1808 balances */\n 0x00\n /* \"contracts/GET_V1.sol\":1800:1812 balances[to] */\n dup1\n /* \"contracts/GET_V1.sol\":1809:1811 to */\n dup6\n /* \"contracts/GET_V1.sol\":1800:1812 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 /* \"contracts/GET_V1.sol\":1800:1821 balances[to] += value */\n dup3\n dup3\n sload\n tag_89\n swap2\n swap1\n tag_84\n jump\t// in\n tag_89:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/GET_V1.sol\":1858:1860 to */\n dup3\n /* \"contracts/GET_V1.sol\":1837:1868 Transfer(msg.sender, to, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/GET_V1.sol\":1846:1856 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":1837:1868 Transfer(msg.sender, to, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"contracts/GET_V1.sol\":1862:1867 value */\n dup5\n /* \"contracts/GET_V1.sol\":1837:1868 Transfer(msg.sender, to, value) */\n mload(0x40)\n tag_90\n swap2\n swap1\n tag_29\n jump\t// in\n tag_90:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/GET_V1.sol\":1886:1890 true */\n 0x01\n /* \"contracts/GET_V1.sol\":1879:1890 return true */\n swap1\n pop\n /* \"contracts/GET_V1.sol\":1729:1901 function mint(address to, uint value) public returns (bool) {\r... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/GET_V1.sol\":746:842 function balanceOf(address owner) public returns(uint) {\r... */\n tag_49:\n /* \"contracts/GET_V1.sol\":795:799 uint */\n 0x00\n /* \"contracts/GET_V1.sol\":819:827 balances */\n dup1\n /* \"contracts/GET_V1.sol\":819:834 balances[owner] */\n 0x00\n /* \"contracts/GET_V1.sol\":828:833 owner */\n dup4\n /* \"contracts/GET_V1.sol\":819:834 balances[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 sload\n /* \"contracts/GET_V1.sol\":812:834 return balances[owner] */\n swap1\n pop\n /* \"contracts/GET_V1.sol\":746:842 function balanceOf(address owner) public returns(uint) {\r... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/GET_V1.sol\":324:352 string public symbol = \"GET\" */\n tag_52:\n 0x04\n dup1\n sload\n tag_92\n swap1\n tag_68\n jump\t// in\n tag_92:\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_93\n swap1\n tag_68\n jump\t// in\n tag_93:\n dup1\n iszero\n tag_94\n jumpi\n dup1\n 0x1f\n lt\n tag_95\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_94)\n tag_95:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_96:\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_96\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_94:\n pop\n pop\n pop\n pop\n pop\n dup2\n jump\t// out\n /* \"contracts/GET_V1.sol\":1910:2167 function burn(address burner, uint value) public returns (bool) {\r... */\n tag_56:\n /* \"contracts/GET_V1.sol\":1968:1972 bool */\n 0x00\n /* \"contracts/GET_V1.sol\":2018:2023 value */\n dup2\n /* \"contracts/GET_V1.sol\":1993:2014 balanceOf(msg.sender) */\n tag_98\n /* \"contracts/GET_V1.sol\":2003:2013 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":1993:2002 balanceOf */\n tag_49\n /* \"contracts/GET_V1.sol\":1993:2014 balanceOf(msg.sender) */\n jump\t// in\n tag_98:\n /* \"contracts/GET_V1.sol\":1993:2023 balanceOf(msg.sender) >= value */\n lt\n iszero\n /* \"contracts/GET_V1.sol\":1985:2043 require(balanceOf(msg.sender) >= value, 'balance too low') */\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_79\n jump\t// in\n tag_100:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_99:\n /* \"contracts/GET_V1.sol\":2078:2083 value */\n dup2\n /* \"contracts/GET_V1.sol\":2054:2062 balances */\n 0x00\n /* \"contracts/GET_V1.sol\":2054:2074 balances[msg.sender] */\n dup1\n /* \"contracts/GET_V1.sol\":2063:2073 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":2054:2074 balances[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"contracts/GET_V1.sol\":2054:2083 balances[msg.sender] -= value */\n dup3\n dup3\n sload\n tag_101\n swap2\n swap1\n tag_86\n jump\t// in\n tag_101:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/GET_V1.sol\":2120:2126 burner */\n dup3\n /* \"contracts/GET_V1.sol\":2099:2134 Transfer(msg.sender, burner, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/GET_V1.sol\":2108:2118 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":2099:2134 Transfer(msg.sender, burner, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"contracts/GET_V1.sol\":2128:2133 value */\n dup5\n /* \"contracts/GET_V1.sol\":2099:2134 Transfer(msg.sender, burner, value) */\n mload(0x40)\n tag_102\n swap2\n swap1\n tag_29\n jump\t// in\n tag_102:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/GET_V1.sol\":2152:2156 true */\n 0x01\n /* \"contracts/GET_V1.sol\":2145:2156 return true */\n swap1\n pop\n /* \"contracts/GET_V1.sol\":1910:2167 function burn(address burner, uint value) public returns (bool) {\r... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/GET_V1.sol\":854:1134 function transfer(address to, uint value) public returns(bool) {\r... */\n tag_60:\n /* \"contracts/GET_V1.sol\":911:915 bool */\n 0x00\n /* \"contracts/GET_V1.sol\":961:966 value */\n dup2\n /* \"contracts/GET_V1.sol\":936:957 balanceOf(msg.sender) */\n tag_104\n /* \"contracts/GET_V1.sol\":946:956 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":936:945 balanceOf */\n tag_49\n /* \"contracts/GET_V1.sol\":936:957 balanceOf(msg.sender) */\n jump\t// in\n tag_104:\n /* \"contracts/GET_V1.sol\":936:966 balanceOf(msg.sender) >= value */\n lt\n iszero\n /* \"contracts/GET_V1.sol\":928:986 require(balanceOf(msg.sender) >= value, 'balance too low') */\n tag_105\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_106\n swap1\n tag_79\n jump\t// in\n tag_106:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_105:\n /* \"contracts/GET_V1.sol\":1013:1018 value */\n dup2\n /* \"contracts/GET_V1.sol\":997:1005 balances */\n 0x00\n /* \"contracts/GET_V1.sol\":997:1009 balances[to] */\n dup1\n /* \"contracts/GET_V1.sol\":1006:1008 to */\n dup6\n /* \"contracts/GET_V1.sol\":997:1009 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 /* \"contracts/GET_V1.sol\":997:1018 balances[to] += value */\n dup3\n dup3\n sload\n tag_107\n swap2\n swap1\n tag_84\n jump\t// in\n tag_107:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/GET_V1.sol\":1053:1058 value */\n dup2\n /* \"contracts/GET_V1.sol\":1029:1037 balances */\n 0x00\n /* \"contracts/GET_V1.sol\":1029:1049 balances[msg.sender] */\n dup1\n /* \"contracts/GET_V1.sol\":1038:1048 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":1029:1049 balances[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"contracts/GET_V1.sol\":1029:1058 balances[msg.sender] -= value */\n dup3\n dup3\n sload\n tag_108\n swap2\n swap1\n tag_86\n jump\t// in\n tag_108:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/GET_V1.sol\":1094:1096 to */\n dup3\n /* \"contracts/GET_V1.sol\":1073:1104 Transfer(msg.sender, to, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/GET_V1.sol\":1082:1092 msg.sender */\n caller\n /* \"contracts/GET_V1.sol\":1073:1104 Transfer(msg.sender, to, value) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n /* \"contracts/GET_V1.sol\":1098:1103 value */\n dup5\n /* \"contracts/GET_V1.sol\":1073:1104 Transfer(msg.sender, to, value) */\n mload(0x40)\n tag_109\n swap2\n swap1\n tag_29\n jump\t// in\n tag_109:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/GET_V1.sol\":1122:1126 true */\n 0x01\n /* \"contracts/GET_V1.sol\":1115:1126 return true */\n swap1\n pop\n /* \"contracts/GET_V1.sol\":854:1134 function transfer(address to, uint value) public returns(bool) {\r... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/GET_V1.sol\":155:216 mapping(address => mapping(address => uint)) public allowance */\n tag_65:\n mstore(0x20, 0x01)\n dup2\n 0x00\n mstore\n mstore(0x20, keccak256(0x00, 0x40))\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n swap2\n pop\n pop\n sload\n dup2\n jump\t// out\n /* \"#utility.yul\":7:146 */\n tag_111:\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_113\n /* \"#utility.yul\":134:139 */\n dup2\n /* \"#utility.yul\":107:140 */\n tag_114\n jump\t// in\n tag_113:\n /* \"#utility.yul\":59:146 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":152:291 */\n tag_115:\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_117\n /* \"#utility.yul\":279:284 */\n dup2\n /* \"#utility.yul\":252:285 */\n tag_118\n jump\t// in\n tag_117:\n /* \"#utility.yul\":204:291 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":297:559 */\n tag_37:\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_120\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_120:\n /* \"#utility.yul\":464:465 */\n 0x00\n /* \"#utility.yul\":489:542 */\n tag_121\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_111\n jump\t// in\n tag_121:\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_64:\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_123\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_123:\n /* \"#utility.yul\":749:750 */\n 0x00\n /* \"#utility.yul\":774:827 */\n tag_124\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_111\n jump\t// in\n tag_124:\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_125\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_111\n jump\t// in\n tag_125:\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_32:\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_127\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_127:\n /* \"#utility.yul\":1179:1180 */\n 0x00\n /* \"#utility.yul\":1204:1257 */\n tag_128\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_111\n jump\t// in\n tag_128:\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_129\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_111\n jump\t// in\n tag_129:\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_130\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_115\n jump\t// in\n tag_130:\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_22:\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_132\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_132:\n /* \"#utility.yul\":1720:1721 */\n 0x00\n /* \"#utility.yul\":1745:1798 */\n tag_133\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_111\n jump\t// in\n tag_133:\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_134\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_115\n jump\t// in\n tag_134:\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_135:\n /* \"#utility.yul\":2030:2051 */\n tag_137\n /* \"#utility.yul\":2045:2050 */\n dup2\n /* \"#utility.yul\":2030:2051 */\n tag_138\n jump\t// in\n tag_137:\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_139:\n 0x00\n /* \"#utility.yul\":2180:2219 */\n tag_141\n /* \"#utility.yul\":2213:2218 */\n dup3\n /* \"#utility.yul\":2180:2219 */\n tag_142\n jump\t// in\n tag_141:\n /* \"#utility.yul\":2235:2306 */\n tag_143\n /* \"#utility.yul\":2299:2305 */\n dup2\n /* \"#utility.yul\":2294:2297 */\n dup6\n /* \"#utility.yul\":2235:2306 */\n tag_144\n jump\t// in\n tag_143:\n /* \"#utility.yul\":2228:2306 */\n swap4\n pop\n /* \"#utility.yul\":2315:2367 */\n tag_145\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_146\n jump\t// in\n tag_145:\n /* \"#utility.yul\":2392:2421 */\n tag_147\n /* \"#utility.yul\":2414:2420 */\n dup2\n /* \"#utility.yul\":2392:2421 */\n tag_148\n jump\t// in\n tag_147:\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:2800 */\n tag_149:\n 0x00\n /* \"#utility.yul\":2597:2664 */\n tag_151\n /* \"#utility.yul\":2661:2663 */\n 0x0f\n /* \"#utility.yul\":2656:2659 */\n dup4\n /* \"#utility.yul\":2597:2664 */\n tag_144\n jump\t// in\n tag_151:\n /* \"#utility.yul\":2590:2664 */\n swap2\n pop\n /* \"#utility.yul\":2673:2766 */\n tag_152\n /* \"#utility.yul\":2762:2765 */\n dup3\n /* \"#utility.yul\":2673:2766 */\n tag_153\n jump\t// in\n tag_152:\n /* \"#utility.yul\":2791:2793 */\n 0x20\n /* \"#utility.yul\":2786:2789 */\n dup3\n /* \"#utility.yul\":2782:2794 */\n add\n /* \"#utility.yul\":2775:2794 */\n swap1\n pop\n /* \"#utility.yul\":2580:2800 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2806:3172 */\n tag_154:\n 0x00\n /* \"#utility.yul\":2969:3036 */\n tag_156\n /* \"#utility.yul\":3033:3035 */\n 0x11\n /* \"#utility.yul\":3028:3031 */\n dup4\n /* \"#utility.yul\":2969:3036 */\n tag_144\n jump\t// in\n tag_156:\n /* \"#utility.yul\":2962:3036 */\n swap2\n pop\n /* \"#utility.yul\":3045:3138 */\n tag_157\n /* \"#utility.yul\":3134:3137 */\n dup3\n /* \"#utility.yul\":3045:3138 */\n tag_158\n jump\t// in\n tag_157:\n /* \"#utility.yul\":3163:3165 */\n 0x20\n /* \"#utility.yul\":3158:3161 */\n dup3\n /* \"#utility.yul\":3154:3166 */\n add\n /* \"#utility.yul\":3147:3166 */\n swap1\n pop\n /* \"#utility.yul\":2952:3172 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3178:3296 */\n tag_159:\n /* \"#utility.yul\":3265:3289 */\n tag_161\n /* \"#utility.yul\":3283:3288 */\n dup2\n /* \"#utility.yul\":3265:3289 */\n tag_162\n jump\t// in\n tag_161:\n /* \"#utility.yul\":3260:3263 */\n dup3\n /* \"#utility.yul\":3253:3290 */\n mstore\n /* \"#utility.yul\":3243:3296 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3302:3512 */\n tag_25:\n 0x00\n /* \"#utility.yul\":3427:3429 */\n 0x20\n /* \"#utility.yul\":3416:3425 */\n dup3\n /* \"#utility.yul\":3412:3430 */\n add\n /* \"#utility.yul\":3404:3430 */\n swap1\n pop\n /* \"#utility.yul\":3440:3505 */\n tag_164\n /* \"#utility.yul\":3502:3503 */\n 0x00\n /* \"#utility.yul\":3491:3500 */\n dup4\n /* \"#utility.yul\":3487:3504 */\n add\n /* \"#utility.yul\":3478:3484 */\n dup5\n /* \"#utility.yul\":3440:3505 */\n tag_135\n jump\t// in\n tag_164:\n /* \"#utility.yul\":3394:3512 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3518:3831 */\n tag_19:\n 0x00\n /* \"#utility.yul\":3669:3671 */\n 0x20\n /* \"#utility.yul\":3658:3667 */\n dup3\n /* \"#utility.yul\":3654:3672 */\n add\n /* \"#utility.yul\":3646:3672 */\n swap1\n pop\n /* \"#utility.yul\":3718:3727 */\n dup2\n /* \"#utility.yul\":3712:3716 */\n dup2\n /* \"#utility.yul\":3708:3728 */\n sub\n /* \"#utility.yul\":3704:3705 */\n 0x00\n /* \"#utility.yul\":3693:3702 */\n dup4\n /* \"#utility.yul\":3689:3706 */\n add\n /* \"#utility.yul\":3682:3729 */\n mstore\n /* \"#utility.yul\":3746:3824 */\n tag_166\n /* \"#utility.yul\":3819:3823 */\n dup2\n /* \"#utility.yul\":3810:3816 */\n dup5\n /* \"#utility.yul\":3746:3824 */\n tag_139\n jump\t// in\n tag_166:\n /* \"#utility.yul\":3738:3824 */\n swap1\n pop\n /* \"#utility.yul\":3636:3831 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3837:4256 */\n tag_79:\n 0x00\n /* \"#utility.yul\":4041:4043 */\n 0x20\n /* \"#utility.yul\":4030:4039 */\n dup3\n /* \"#utility.yul\":4026:4044 */\n add\n /* \"#utility.yul\":4018:4044 */\n swap1\n pop\n /* \"#utility.yul\":4090:4099 */\n dup2\n /* \"#utility.yul\":4084:4088 */\n dup2\n /* \"#utility.yul\":4080:4100 */\n sub\n /* \"#utility.yul\":4076:4077 */\n 0x00\n /* \"#utility.yul\":4065:4074 */\n dup4\n /* \"#utility.yul\":4061:4078 */\n add\n /* \"#utility.yul\":4054:4101 */\n mstore\n /* \"#utility.yul\":4118:4249 */\n tag_168\n /* \"#utility.yul\":4244:4248 */\n dup2\n /* \"#utility.yul\":4118:4249 */\n tag_149\n jump\t// in\n tag_168:\n /* \"#utility.yul\":4110:4249 */\n swap1\n pop\n /* \"#utility.yul\":4008:4256 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4262:4681 */\n tag_82:\n 0x00\n /* \"#utility.yul\":4466:4468 */\n 0x20\n /* \"#utility.yul\":4455:4464 */\n dup3\n /* \"#utility.yul\":4451:4469 */\n add\n /* \"#utility.yul\":4443:4469 */\n swap1\n pop\n /* \"#utility.yul\":4515:4524 */\n dup2\n /* \"#utility.yul\":4509:4513 */\n dup2\n /* \"#utility.yul\":4505:4525 */\n sub\n /* \"#utility.yul\":4501:4502 */\n 0x00\n /* \"#utility.yul\":4490:4499 */\n dup4\n /* \"#utility.yul\":4486:4503 */\n add\n /* \"#utility.yul\":4479:4526 */\n mstore\n /* \"#utility.yul\":4543:4674 */\n tag_170\n /* \"#utility.yul\":4669:4673 */\n dup2\n /* \"#utility.yul\":4543:4674 */\n tag_154\n jump\t// in\n tag_170:\n /* \"#utility.yul\":4535:4674 */\n swap1\n pop\n /* \"#utility.yul\":4433:4681 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4687:4909 */\n tag_29:\n 0x00\n /* \"#utility.yul\":4818:4820 */\n 0x20\n /* \"#utility.yul\":4807:4816 */\n dup3\n /* \"#utility.yul\":4803:4821 */\n add\n /* \"#utility.yul\":4795:4821 */\n swap1\n pop\n /* \"#utility.yul\":4831:4902 */\n tag_172\n /* \"#utility.yul\":4899:4900 */\n 0x00\n /* \"#utility.yul\":4888:4897 */\n dup4\n /* \"#utility.yul\":4884:4901 */\n add\n /* \"#utility.yul\":4875:4881 */\n dup5\n /* \"#utility.yul\":4831:4902 */\n tag_159\n jump\t// in\n tag_172:\n /* \"#utility.yul\":4785:4909 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4915:5014 */\n tag_142:\n 0x00\n /* \"#utility.yul\":5001:5006 */\n dup2\n /* \"#utility.yul\":4995:5007 */\n mload\n /* \"#utility.yul\":4985:5007 */\n swap1\n pop\n /* \"#utility.yul\":4974:5014 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5020:5189 */\n tag_144:\n 0x00\n /* \"#utility.yul\":5138:5144 */\n dup3\n /* \"#utility.yul\":5133:5136 */\n dup3\n /* \"#utility.yul\":5126:5145 */\n mstore\n /* \"#utility.yul\":5178:5182 */\n 0x20\n /* \"#utility.yul\":5173:5176 */\n dup3\n /* \"#utility.yul\":5169:5183 */\n add\n /* \"#utility.yul\":5154:5183 */\n swap1\n pop\n /* \"#utility.yul\":5116:5189 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5195:5500 */\n tag_84:\n 0x00\n /* \"#utility.yul\":5254:5274 */\n tag_176\n /* \"#utility.yul\":5272:5273 */\n dup3\n /* \"#utility.yul\":5254:5274 */\n tag_162\n jump\t// in\n tag_176:\n /* \"#utility.yul\":5249:5274 */\n swap2\n pop\n /* \"#utility.yul\":5288:5308 */\n tag_177\n /* \"#utility.yul\":5306:5307 */\n dup4\n /* \"#utility.yul\":5288:5308 */\n tag_162\n jump\t// in\n tag_177:\n /* \"#utility.yul\":5283:5308 */\n swap3\n pop\n /* \"#utility.yul\":5442:5443 */\n dup3\n /* \"#utility.yul\":5374:5440 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":5370:5444 */\n sub\n /* \"#utility.yul\":5367:5368 */\n dup3\n /* \"#utility.yul\":5364:5445 */\n gt\n /* \"#utility.yul\":5361:5363 */\n iszero\n tag_178\n jumpi\n /* \"#utility.yul\":5448:5466 */\n tag_179\n tag_180\n jump\t// in\n tag_179:\n /* \"#utility.yul\":5361:5363 */\n tag_178:\n /* \"#utility.yul\":5492:5493 */\n dup3\n /* \"#utility.yul\":5489:5490 */\n dup3\n /* \"#utility.yul\":5485:5494 */\n add\n /* \"#utility.yul\":5478:5494 */\n swap1\n pop\n /* \"#utility.yul\":5239:5500 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5506:5697 */\n tag_86:\n 0x00\n /* \"#utility.yul\":5566:5586 */\n tag_182\n /* \"#utility.yul\":5584:5585 */\n dup3\n /* \"#utility.yul\":5566:5586 */\n tag_162\n jump\t// in\n tag_182:\n /* \"#utility.yul\":5561:5586 */\n swap2\n pop\n /* \"#utility.yul\":5600:5620 */\n tag_183\n /* \"#utility.yul\":5618:5619 */\n dup4\n /* \"#utility.yul\":5600:5620 */\n tag_162\n jump\t// in\n tag_183:\n /* \"#utility.yul\":5595:5620 */\n swap3\n pop\n /* \"#utility.yul\":5639:5640 */\n dup3\n /* \"#utility.yul\":5636:5637 */\n dup3\n /* \"#utility.yul\":5633:5641 */\n lt\n /* \"#utility.yul\":5630:5632 */\n iszero\n tag_184\n jumpi\n /* \"#utility.yul\":5644:5662 */\n tag_185\n tag_180\n jump\t// in\n tag_185:\n /* \"#utility.yul\":5630:5632 */\n tag_184:\n /* \"#utility.yul\":5689:5690 */\n dup3\n /* \"#utility.yul\":5686:5687 */\n dup3\n /* \"#utility.yul\":5682:5691 */\n sub\n /* \"#utility.yul\":5674:5691 */\n swap1\n pop\n /* \"#utility.yul\":5551:5697 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5703:5799 */\n tag_186:\n 0x00\n /* \"#utility.yul\":5769:5793 */\n tag_188\n /* \"#utility.yul\":5787:5792 */\n dup3\n /* \"#utility.yul\":5769:5793 */\n tag_189\n jump\t// in\n tag_188:\n /* \"#utility.yul\":5758:5793 */\n swap1\n pop\n /* \"#utility.yul\":5748:5799 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5805:5895 */\n tag_138:\n 0x00\n /* \"#utility.yul\":5882:5887 */\n dup2\n /* \"#utility.yul\":5875:5888 */\n iszero\n /* \"#utility.yul\":5868:5889 */\n iszero\n /* \"#utility.yul\":5857:5889 */\n swap1\n pop\n /* \"#utility.yul\":5847:5895 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5901:6027 */\n tag_189:\n 0x00\n /* \"#utility.yul\":5978:6020 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":5971:5976 */\n dup3\n /* \"#utility.yul\":5967:6021 */\n and\n /* \"#utility.yul\":5956:6021 */\n swap1\n pop\n /* \"#utility.yul\":5946:6027 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6033:6110 */\n tag_162:\n 0x00\n /* \"#utility.yul\":6099:6104 */\n dup2\n /* \"#utility.yul\":6088:6104 */\n swap1\n pop\n /* \"#utility.yul\":6078:6110 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6116:6423 */\n tag_146:\n /* \"#utility.yul\":6184:6185 */\n 0x00\n /* \"#utility.yul\":6194:6307 */\n tag_194:\n /* \"#utility.yul\":6208:6214 */\n dup4\n /* \"#utility.yul\":6205:6206 */\n dup2\n /* \"#utility.yul\":6202:6215 */\n lt\n /* \"#utility.yul\":6194:6307 */\n iszero\n tag_196\n jumpi\n /* \"#utility.yul\":6293:6294 */\n dup1\n /* \"#utility.yul\":6288:6291 */\n dup3\n /* \"#utility.yul\":6284:6295 */\n add\n /* \"#utility.yul\":6278:6296 */\n mload\n /* \"#utility.yul\":6274:6275 */\n dup2\n /* \"#utility.yul\":6269:6272 */\n dup5\n /* \"#utility.yul\":6265:6276 */\n add\n /* \"#utility.yul\":6258:6297 */\n mstore\n /* \"#utility.yul\":6230:6232 */\n 0x20\n /* \"#utility.yul\":6227:6228 */\n dup2\n /* \"#utility.yul\":6223:6233 */\n add\n /* \"#utility.yul\":6218:6233 */\n swap1\n pop\n /* \"#utility.yul\":6194:6307 */\n jump(tag_194)\n tag_196:\n /* \"#utility.yul\":6325:6331 */\n dup4\n /* \"#utility.yul\":6322:6323 */\n dup2\n /* \"#utility.yul\":6319:6332 */\n gt\n /* \"#utility.yul\":6316:6318 */\n iszero\n tag_197\n jumpi\n /* \"#utility.yul\":6405:6406 */\n 0x00\n /* \"#utility.yul\":6396:6402 */\n dup5\n /* \"#utility.yul\":6391:6394 */\n dup5\n /* \"#utility.yul\":6387:6403 */\n add\n /* \"#utility.yul\":6380:6407 */\n mstore\n /* \"#utility.yul\":6316:6318 */\n tag_197:\n /* \"#utility.yul\":6165:6423 */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6429:6749 */\n tag_68:\n 0x00\n /* \"#utility.yul\":6510:6511 */\n 0x02\n /* \"#utility.yul\":6504:6508 */\n dup3\n /* \"#utility.yul\":6500:6512 */\n div\n /* \"#utility.yul\":6490:6512 */\n swap1\n pop\n /* \"#utility.yul\":6557:6558 */\n 0x01\n /* \"#utility.yul\":6551:6555 */\n dup3\n /* \"#utility.yul\":6547:6559 */\n and\n /* \"#utility.yul\":6578:6596 */\n dup1\n /* \"#utility.yul\":6568:6570 */\n tag_199\n jumpi\n /* \"#utility.yul\":6634:6638 */\n 0x7f\n /* \"#utility.yul\":6626:6632 */\n dup3\n /* \"#utility.yul\":6622:6639 */\n and\n /* \"#utility.yul\":6612:6639 */\n swap2\n pop\n /* \"#utility.yul\":6568:6570 */\n tag_199:\n /* \"#utility.yul\":6696:6698 */\n 0x20\n /* \"#utility.yul\":6688:6694 */\n dup3\n /* \"#utility.yul\":6685:6699 */\n lt\n /* \"#utility.yul\":6665:6683 */\n dup2\n /* \"#utility.yul\":6662:6700 */\n eq\n /* \"#utility.yul\":6659:6661 */\n iszero\n tag_200\n jumpi\n /* \"#utility.yul\":6715:6733 */\n tag_201\n tag_202\n jump\t// in\n tag_201:\n /* \"#utility.yul\":6659:6661 */\n tag_200:\n /* \"#utility.yul\":6480:6749 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6755:6935 */\n tag_180:\n /* \"#utility.yul\":6803:6880 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6800:6801 */\n 0x00\n /* \"#utility.yul\":6793:6881 */\n mstore\n /* \"#utility.yul\":6900:6904 */\n 0x11\n /* \"#utility.yul\":6897:6898 */\n 0x04\n /* \"#utility.yul\":6890:6905 */\n mstore\n /* \"#utility.yul\":6924:6928 */\n 0x24\n /* \"#utility.yul\":6921:6922 */\n 0x00\n /* \"#utility.yul\":6914:6929 */\n revert\n /* \"#utility.yul\":6941:7121 */\n tag_202:\n /* \"#utility.yul\":6989:7066 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6986:6987 */\n 0x00\n /* \"#utility.yul\":6979:7067 */\n mstore\n /* \"#utility.yul\":7086:7090 */\n 0x22\n /* \"#utility.yul\":7083:7084 */\n 0x04\n /* \"#utility.yul\":7076:7091 */\n mstore\n /* \"#utility.yul\":7110:7114 */\n 0x24\n /* \"#utility.yul\":7107:7108 */\n 0x00\n /* \"#utility.yul\":7100:7115 */\n revert\n /* \"#utility.yul\":7127:7229 */\n tag_148:\n 0x00\n /* \"#utility.yul\":7219:7221 */\n 0x1f\n /* \"#utility.yul\":7215:7222 */\n not\n /* \"#utility.yul\":7210:7212 */\n 0x1f\n /* \"#utility.yul\":7203:7208 */\n dup4\n /* \"#utility.yul\":7199:7213 */\n add\n /* \"#utility.yul\":7195:7223 */\n and\n /* \"#utility.yul\":7185:7223 */\n swap1\n pop\n /* \"#utility.yul\":7175:7229 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7235:7400 */\n tag_153:\n /* \"#utility.yul\":7375:7392 */\n 0x62616c616e636520746f6f206c6f770000000000000000000000000000000000\n /* \"#utility.yul\":7371:7372 */\n 0x00\n /* \"#utility.yul\":7363:7369 */\n dup3\n /* \"#utility.yul\":7359:7373 */\n add\n /* \"#utility.yul\":7352:7393 */\n mstore\n /* \"#utility.yul\":7341:7400 */\n pop\n jump\t// out\n /* \"#utility.yul\":7406:7573 */\n tag_158:\n /* \"#utility.yul\":7546:7565 */\n 0x616c6c6f77616e636520746f6f206c6f77000000000000000000000000000000\n /* \"#utility.yul\":7542:7543 */\n 0x00\n /* \"#utility.yul\":7534:7540 */\n dup3\n /* \"#utility.yul\":7530:7544 */\n add\n /* \"#utility.yul\":7523:7566 */\n mstore\n /* \"#utility.yul\":7512:7573 */\n pop\n jump\t// out\n /* \"#utility.yul\":7579:7701 */\n tag_114:\n /* \"#utility.yul\":7652:7676 */\n tag_209\n /* \"#utility.yul\":7670:7675 */\n dup2\n /* \"#utility.yul\":7652:7676 */\n tag_186\n jump\t// in\n tag_209:\n /* \"#utility.yul\":7645:7650 */\n dup2\n /* \"#utility.yul\":7642:7677 */\n eq\n /* \"#utility.yul\":7632:7634 */\n tag_210\n jumpi\n /* \"#utility.yul\":7691:7692 */\n 0x00\n /* \"#utility.yul\":7688:7689 */\n dup1\n /* \"#utility.yul\":7681:7693 */\n revert\n /* \"#utility.yul\":7632:7634 */\n tag_210:\n /* \"#utility.yul\":7622:7701 */\n pop\n jump\t// out\n /* \"#utility.yul\":7707:7829 */\n tag_118:\n /* \"#utility.yul\":7780:7804 */\n tag_212\n /* \"#utility.yul\":7798:7803 */\n dup2\n /* \"#utility.yul\":7780:7804 */\n tag_162\n jump\t// in\n tag_212:\n /* \"#utility.yul\":7773:7778 */\n dup2\n /* \"#utility.yul\":7770:7805 */\n eq\n /* \"#utility.yul\":7760:7762 */\n tag_213\n jumpi\n /* \"#utility.yul\":7819:7820 */\n 0x00\n /* \"#utility.yul\":7816:7817 */\n dup1\n /* \"#utility.yul\":7809:7821 */\n revert\n /* \"#utility.yul\":7760:7762 */\n tag_213:\n /* \"#utility.yul\":7750:7829 */\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220ec032b694d8393ee26d5715242f23f1450effcb48c09b44ed6afcec82e7e8af264736f6c63430008020033\n}\n",
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:1"
},
"nodeType": "YulFunctionCall",
"src": "78:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "125:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:1"
},
"nodeType": "YulFunctionCall",
"src": "200:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:1"
},
"nodeType": "YulFunctionCall",
"src": "149:26:1"
},
"nodeType": "YulIf",
"src": "146:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:1"
},
"nodeType": "YulFunctionCall",
"src": "293:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:1"
},
"nodeType": "YulFunctionCall",
"src": "263:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:1"
},
"nodeType": "YulFunctionCall",
"src": "240:38:1"
},
"nodeType": "YulIf",
"src": "237:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:1",
"type": ""
}
],
"src": "7:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:1"
},
"nodeType": "YulFunctionCall",
"src": "371:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:1"
},
"nodeType": "YulFunctionCall",
"src": "468:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:1"
},
"nodeType": "YulFunctionCall",
"src": "492:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:1"
}
]
},
"contents": "{\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526b033b2e3c9fd0803ce80000006002556040518060400160405280601181526020017f477265656e20456172746820546f6b656e00000000000000000000000000000081525060039080519060200190620000619291906200010e565b506040518060400160405280600381526020017f474554000000000000000000000000000000000000000000000000000000000081525060049080519060200190620000af9291906200010e565b506012600555348015620000c257600080fd5b506002546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000223565b8280546200011c90620001be565b90600052602060002090601f0160209004810192826200014057600085556200018c565b82601f106200015b57805160ff19168380011785556200018c565b828001600101855582156200018c579182015b828111156200018b5782518255916020019190600101906200016e565b5b5090506200019b91906200019f565b5090565b5b80821115620001ba576000816000905550600101620001a0565b5090565b60006002820490506001821680620001d757607f821691505b60208210811415620001ee57620001ed620001f4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b610f7a80620002336000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806340c10f191161007157806340c10f19146101a357806370a08231146101d357806395d89b41146102035780639dc29fac14610221578063a9059cbb14610251578063dd62ed3e14610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd1461012557806327e235e314610155578063313ce56714610185575b600080fd5b6100c16102b1565b6040516100ce9190610c85565b60405180910390f35b6100f160048036038101906100ec9190610b91565b61033f565b6040516100fe9190610c6a565b60405180910390f35b61010f610431565b60405161011c9190610ce7565b60405180910390f35b61013f600480360381019061013a9190610b42565b610437565b60405161014c9190610c6a565b60405180910390f35b61016f600480360381019061016a9190610add565b61065d565b60405161017c9190610ce7565b60405180910390f35b61018d610675565b60405161019a9190610ce7565b60405180910390f35b6101bd60048036038101906101b89190610b91565b61067b565b6040516101ca9190610c6a565b60405180910390f35b6101ed60048036038101906101e89190610add565b610741565b6040516101fa9190610ce7565b60405180910390f35b61020b610789565b6040516102189190610c85565b60405180910390f35b61023b60048036038101906102369190610b91565b610817565b6040516102489190610c6a565b60405180910390f35b61026b60048036038101906102669190610b91565b610928565b6040516102789190610c6a565b60405180910390f35b61029b60048036038101906102969190610b06565b610a8e565b6040516102a89190610ce7565b60405180910390f35b600380546102be90610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546102ea90610e23565b80156103375780601f1061030c57610100808354040283529160200191610337565b820191906000526020600020905b81548152906001019060200180831161031a57829003601f168201915b505050505081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161041f9190610ce7565b60405180910390a36001905092915050565b60025481565b60008161044385610741565b1015610484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047b90610ca7565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053a90610cc7565b60405180910390fd5b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105919190610d1e565b92505081905550816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105e69190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161064a9190610ce7565b60405180910390a3600190509392505050565b60006020528060005260406000206000915090505481565b60055481565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106cb9190610d1e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161072f9190610ce7565b60405180910390a36001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6004805461079690610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546107c290610e23565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b505050505081565b60008161082333610741565b1015610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b90610ca7565b60405180910390fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108b29190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109169190610ce7565b60405180910390a36001905092915050565b60008161093433610741565b1015610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90610ca7565b60405180910390fd5b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109c39190610d1e565b92505081905550816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a189190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7c9190610ce7565b60405180910390a36001905092915050565b6001602052816000526040600020602052806000526040600020600091509150505481565b600081359050610ac281610f16565b92915050565b600081359050610ad781610f2d565b92915050565b600060208284031215610aef57600080fd5b6000610afd84828501610ab3565b91505092915050565b60008060408385031215610b1957600080fd5b6000610b2785828601610ab3565b9250506020610b3885828601610ab3565b9150509250929050565b600080600060608486031215610b5757600080fd5b6000610b6586828701610ab3565b9350506020610b7686828701610ab3565b9250506040610b8786828701610ac8565b9150509250925092565b60008060408385031215610ba457600080fd5b6000610bb285828601610ab3565b9250506020610bc385828601610ac8565b9150509250929050565b610bd681610dba565b82525050565b6000610be782610d02565b610bf18185610d0d565b9350610c01818560208601610df0565b610c0a81610eb3565b840191505092915050565b6000610c22600f83610d0d565b9150610c2d82610ec4565b602082019050919050565b6000610c45601183610d0d565b9150610c5082610eed565b602082019050919050565b610c6481610de6565b82525050565b6000602082019050610c7f6000830184610bcd565b92915050565b60006020820190508181036000830152610c9f8184610bdc565b905092915050565b60006020820190508181036000830152610cc081610c15565b9050919050565b60006020820190508181036000830152610ce081610c38565b9050919050565b6000602082019050610cfc6000830184610c5b565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610d2982610de6565b9150610d3483610de6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610d6957610d68610e55565b5b828201905092915050565b6000610d7f82610de6565b9150610d8a83610de6565b925082821015610d9d57610d9c610e55565b5b828203905092915050565b6000610db382610dc6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015610e0e578082015181840152602081019050610df3565b83811115610e1d576000848401525b50505050565b60006002820490506001821680610e3b57607f821691505b60208210811415610e4f57610e4e610e84565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f62616c616e636520746f6f206c6f770000000000000000000000000000000000600082015250565b7f616c6c6f77616e636520746f6f206c6f77000000000000000000000000000000600082015250565b610f1f81610da8565b8114610f2a57600080fd5b50565b610f3681610de6565b8114610f4157600080fd5b5056fea2646970667358221220ec032b694d8393ee26d5715242f23f1450effcb48c09b44ed6afcec82e7e8af264736f6c63430008020033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH12 0x33B2E3C9FD0803CE8000000 PUSH1 0x2 SSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x11 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x477265656E20456172746820546F6B656E000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x61 SWAP3 SWAP2 SWAP1 PUSH3 0x10E JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4745540000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x10E JUMP JUMPDEST POP PUSH1 0x12 PUSH1 0x5 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x2 SLOAD PUSH1 0x0 DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH3 0x223 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x11C SWAP1 PUSH3 0x1BE JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x140 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x18C JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x15B JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x18C JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x18C JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x18B JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x16E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x19B SWAP2 SWAP1 PUSH3 0x19F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x1BA JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x1A0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x1D7 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x1EE JUMPI PUSH3 0x1ED PUSH3 0x1F4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xF7A DUP1 PUSH3 0x233 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 0xB4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x203 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x281 JUMPI PUSH2 0xB4 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xD7 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x107 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x125 JUMPI DUP1 PUSH4 0x27E235E3 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x185 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC1 PUSH2 0x2B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xEC SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x33F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFE SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10F PUSH2 0x431 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13A SWAP2 SWAP1 PUSH2 0xB42 JUMP JUMPDEST PUSH2 0x437 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14C SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16A SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18D PUSH2 0x675 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19A SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B8 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x67B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CA SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1ED PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x741 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FA SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH2 0x789 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x236 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x817 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x248 SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x928 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0xB06 JUMP JUMPDEST PUSH2 0xA8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH2 0x2BE SWAP1 PUSH2 0xE23 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 0x2EA SWAP1 PUSH2 0xE23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x337 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x30C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x337 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 0x31A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x41F SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x443 DUP6 PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x484 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x47B SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x543 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x53A SWAP1 PUSH2 0xCC7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH2 0x591 SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP7 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 PUSH2 0x5E6 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x64A SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 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 PUSH2 0x6CB SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x72F SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 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 0x4 DUP1 SLOAD PUSH2 0x796 SWAP1 PUSH2 0xE23 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 0x7C2 SWAP1 PUSH2 0xE23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x80F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7E4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x80F 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 0x7F2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x823 CALLER PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x864 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x85B SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x0 DUP1 CALLER 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 PUSH2 0x8B2 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x916 SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x934 CALLER PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x975 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x96C SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH2 0x9C3 SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 CALLER 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 PUSH2 0xA18 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA7C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP2 POP POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAC2 DUP2 PUSH2 0xF16 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAD7 DUP2 PUSH2 0xF2D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAFD DUP5 DUP3 DUP6 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB27 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB38 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 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 0xB57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB65 DUP7 DUP3 DUP8 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB76 DUP7 DUP3 DUP8 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB87 DUP7 DUP3 DUP8 ADD PUSH2 0xAC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBB2 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBC3 DUP6 DUP3 DUP7 ADD PUSH2 0xAC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBD6 DUP2 PUSH2 0xDBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBE7 DUP3 PUSH2 0xD02 JUMP JUMPDEST PUSH2 0xBF1 DUP2 DUP6 PUSH2 0xD0D JUMP JUMPDEST SWAP4 POP PUSH2 0xC01 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xDF0 JUMP JUMPDEST PUSH2 0xC0A DUP2 PUSH2 0xEB3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC22 PUSH1 0xF DUP4 PUSH2 0xD0D JUMP JUMPDEST SWAP2 POP PUSH2 0xC2D DUP3 PUSH2 0xEC4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC45 PUSH1 0x11 DUP4 PUSH2 0xD0D JUMP JUMPDEST SWAP2 POP PUSH2 0xC50 DUP3 PUSH2 0xEED JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC64 DUP2 PUSH2 0xDE6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC7F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xBCD 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 0xC9F DUP2 DUP5 PUSH2 0xBDC 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 0xCC0 DUP2 PUSH2 0xC15 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 0xCE0 DUP2 PUSH2 0xC38 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCFC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC5B 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 0xD29 DUP3 PUSH2 0xDE6 JUMP JUMPDEST SWAP2 POP PUSH2 0xD34 DUP4 PUSH2 0xDE6 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xD69 JUMPI PUSH2 0xD68 PUSH2 0xE55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD7F DUP3 PUSH2 0xDE6 JUMP JUMPDEST SWAP2 POP PUSH2 0xD8A DUP4 PUSH2 0xDE6 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xD9D JUMPI PUSH2 0xD9C PUSH2 0xE55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDB3 DUP3 PUSH2 0xDC6 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE0E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xDF3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xE1D 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 0xE3B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xE4F JUMPI PUSH2 0xE4E PUSH2 0xE84 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 PUSH32 0x62616C616E636520746F6F206C6F770000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x616C6C6F77616E636520746F6F206C6F77000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0xF1F DUP2 PUSH2 0xDA8 JUMP JUMPDEST DUP2 EQ PUSH2 0xF2A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xF36 DUP2 PUSH2 0xDE6 JUMP JUMPDEST DUP2 EQ PUSH2 0xF41 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xEC SUB 0x2B PUSH10 0x4D8393EE26D5715242F2 EXTCODEHASH EQ POP 0xEF 0xFC 0xB4 DUP13 MULMOD 0xB4 0x4E 0xD6 0xAF 0xCE 0xC8 0x2E PUSH31 0x8AF264736F6C63430008020033000000000000000000000000000000000000 ",
"sourceMap": "86:2088:0:-:0;;;249:21;223:47;;277:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;324:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;382:2;359:25;;667:67;;;;;;;;;;715:11;;692:8;:20;701:10;692:20;;;;;;;;;;;;;;;:34;;;;86:2088;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:1:-;;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:2;;212:4;204:6;200:17;190:27;;146:2;274;266:6;263:14;243:18;240:38;237:2;;;293:18;;:::i;:::-;237:2;58:269;;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;86:2088:0;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7832:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:1"
},
"nodeType": "YulFunctionCall",
"src": "78:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:1"
},
"nodeType": "YulFunctionCall",
"src": "107:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:1",
"type": ""
}
],
"src": "7:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:1"
},
"nodeType": "YulFunctionCall",
"src": "223:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:1"
},
"nodeType": "YulFunctionCall",
"src": "252:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:1",
"type": ""
}
],
"src": "152:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:196:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "418:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "421:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "411:6:1"
},
"nodeType": "YulFunctionCall",
"src": "411:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "411:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:1"
},
"nodeType": "YulFunctionCall",
"src": "380:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:1"
},
"nodeType": "YulFunctionCall",
"src": "376:32:1"
},
"nodeType": "YulIf",
"src": "373:2:1"
},
{
"nodeType": "YulBlock",
"src": "435:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "450:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "454:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "479:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "525:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "510:3:1"
},
"nodeType": "YulFunctionCall",
"src": "510:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "534:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "489:20:1"
},
"nodeType": "YulFunctionCall",
"src": "489:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "479:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:1",
"type": ""
}
],
"src": "297:262:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:324:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "694:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "703:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "696:6:1"
},
"nodeType": "YulFunctionCall",
"src": "696:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "696:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "669:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "678:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "665:3:1"
},
"nodeType": "YulFunctionCall",
"src": "665:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "690:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "661:3:1"
},
"nodeType": "YulFunctionCall",
"src": "661:32:1"
},
"nodeType": "YulIf",
"src": "658:2:1"
},
{
"nodeType": "YulBlock",
"src": "720:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "735:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "749:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "739:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "764:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "799:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "810:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "795:3:1"
},
"nodeType": "YulFunctionCall",
"src": "795:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "819:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "774:20:1"
},
"nodeType": "YulFunctionCall",
"src": "774:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "764:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "847:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "862:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "876:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "866:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "892:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "927:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "938:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "923:3:1"
},
"nodeType": "YulFunctionCall",
"src": "923:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "947:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "902:20:1"
},
"nodeType": "YulFunctionCall",
"src": "902:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "892:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "610:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "621:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "633:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "641:6:1",
"type": ""
}
],
"src": "565:407:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1078:452:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1124:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1133:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1136:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1126:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1126:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1126:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1099:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1108:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1095:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1095:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1120:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1091:32:1"
},
"nodeType": "YulIf",
"src": "1088:2:1"
},
{
"nodeType": "YulBlock",
"src": "1150:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1165:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1169:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1194:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1229:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1240:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1225:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1249:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1204:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1204:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1194:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1277:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1292:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1296:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1322:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1357:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1368:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1353:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1353:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1377:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1332:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1332:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1322:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1405:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1420:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1424:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1450:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1460:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1460:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1450:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1032:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1043:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1055:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1063:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1071:6:1",
"type": ""
}
],
"src": "978:552:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1619:324:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1665:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1677:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1667:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1667:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1667:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1640:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1649:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1636:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1636:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1661:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1632:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1632:32:1"
},
"nodeType": "YulIf",
"src": "1629:2:1"
},
{
"nodeType": "YulBlock",
"src": "1691:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1706:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1710:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1735:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1770:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1781:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1766:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1766:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1790:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1745:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1745:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1735:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1818:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1833:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1847:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1837:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1863:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1873:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1873:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1863:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1581:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1592:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1604:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1612:6:1",
"type": ""
}
],
"src": "1536:407:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2008:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2025:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2045:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2030:14:1"
},
"nodeType": "YulFunctionCall",
"src": "2030:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2018:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2018:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "2018:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1996:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2003:3:1",
"type": ""
}
],
"src": "1949:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2156:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2166:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2213:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2180:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2180:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2170:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2228:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2294:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2299:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2235:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2235:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2228:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2341:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2348:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2337:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2337:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2355:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2360:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2315:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2315:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2315:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2376:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2387:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2414:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2392:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2392:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2383:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2383:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2376:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2137:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2144:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2152:3:1",
"type": ""
}
],
"src": "2064:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2580:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2590:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2656:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2661:2:1",
"type": "",
"value": "15"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2597:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2597:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2590:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2762:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825",
"nodeType": "YulIdentifier",
"src": "2673:88:1"
},
"nodeType": "YulFunctionCall",
"src": "2673:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "2673:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2775:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2786:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2791:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2782:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2782:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2775:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2568:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2576:3:1",
"type": ""
}
],
"src": "2434:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2952:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2962:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3028:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3033:2:1",
"type": "",
"value": "17"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2969:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2969:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2962:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3134:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8",
"nodeType": "YulIdentifier",
"src": "3045:88:1"
},
"nodeType": "YulFunctionCall",
"src": "3045:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "3045:93:1"
},
{
"nodeType": "YulAssignment",
"src": "3147:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3158:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3163:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3154:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3154:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3147:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2940:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2948:3:1",
"type": ""
}
],
"src": "2806:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3243:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3260:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3283:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3265:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3265:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3253:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3253:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "3253:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3231:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3238:3:1",
"type": ""
}
],
"src": "3178:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3394:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3404:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3416:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3427:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3412:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3412:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3404:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3478:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3491:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3502:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3487:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3487:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3440:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3440:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "3440:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3366:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3378:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3389:4:1",
"type": ""
}
],
"src": "3302:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3636:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3646:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3658:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3669:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3654:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3654:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3646:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3693:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3704:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3689:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3689:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3712:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3718:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3708:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3708:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3682:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3682:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "3682:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3738:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3810:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3819:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3746:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3746:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3738:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3608:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3620:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3631:4:1",
"type": ""
}
],
"src": "3518:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4008:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4018:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4030:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4041:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4026:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4026:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4018:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4065:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4076:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4061:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4061:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4084:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4090:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4080:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4080:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4054:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4054:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "4054:47:1"
},
{
"nodeType": "YulAssignment",
"src": "4110:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4244:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4118:124:1"
},
"nodeType": "YulFunctionCall",
"src": "4118:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4110:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3988:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4003:4:1",
"type": ""
}
],
"src": "3837:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4433:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4443:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4455:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4466:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4451:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4451:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4443:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4490:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4501:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4486:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4486:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4509:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4515:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4505:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4479:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4479:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "4479:47:1"
},
{
"nodeType": "YulAssignment",
"src": "4535:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4669:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4543:124:1"
},
"nodeType": "YulFunctionCall",
"src": "4543:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4535:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4413:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4428:4:1",
"type": ""
}
],
"src": "4262:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4785:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4795:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4807:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4818:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4803:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4803:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4795:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4875:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4888:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4899:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4884:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4884:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4831:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4831:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "4831:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4757:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4769:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4780:4:1",
"type": ""
}
],
"src": "4687:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4974:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4985:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5001:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4995:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4995:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4985:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4957:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4967:6:1",
"type": ""
}
],
"src": "4915:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5116:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5133:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5138:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5126:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5126:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "5126:19:1"
},
{
"nodeType": "YulAssignment",
"src": "5154:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5173:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5178:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5169:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5169:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5154:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5088:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5093:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5104:11:1",
"type": ""
}
],
"src": "5020:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5239:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5249:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5272:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5254:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5254:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5249:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5283:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5306:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5288:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5288:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5283:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5446:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5448:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5448:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5448:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5367:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5374:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5442:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5370:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5370:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5364:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5364:81:1"
},
"nodeType": "YulIf",
"src": "5361:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5478:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5489:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5492:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5485:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5485:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5478:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5226:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5229:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5235:3:1",
"type": ""
}
],
"src": "5195:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5551:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5561:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5584:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5566:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5566:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5561:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5595:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5618:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5600:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5600:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5595:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5642:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5644:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5644:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5644:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5636:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5639:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5633:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5633:8:1"
},
"nodeType": "YulIf",
"src": "5630:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5674:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5686:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5689:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5682:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5682:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5674:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5537:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5540:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5546:4:1",
"type": ""
}
],
"src": "5506:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5748:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5758:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5787:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5769:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5769:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5758:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5730:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5740:7:1",
"type": ""
}
],
"src": "5703:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5847:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5857:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5882:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5875:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5875:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5868:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5868:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5857:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5829:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5839:7:1",
"type": ""
}
],
"src": "5805:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5946:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5956:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5971:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5978:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5967:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5956:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5928:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5938:7:1",
"type": ""
}
],
"src": "5901:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6078:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6088:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "6099:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "6088:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6060:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "6070:7:1",
"type": ""
}
],
"src": "6033:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6165:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6175:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6184:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "6179:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6244:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "6269:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6274:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6265:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "6288:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6293:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6284:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6284:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6278:5:1"
},
"nodeType": "YulFunctionCall",
"src": "6278:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6258:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6258:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "6258:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6205:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6208:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6202:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6202:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6216:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6218:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6227:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6230:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6223:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6223:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6218:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "6198:3:1",
"statements": []
},
"src": "6194:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6341:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "6391:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6396:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6387:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6387:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6405:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6380:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6380:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "6380:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6322:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6325:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6319:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6319:13:1"
},
"nodeType": "YulIf",
"src": "6316:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "6147:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "6152:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6157:6:1",
"type": ""
}
],
"src": "6116:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6480:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6490:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6504:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6510:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6500:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6500:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6490:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6521:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6551:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6557:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6547:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6547:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6525:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6598:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6612:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6626:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6634:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6622:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6622:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6612:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6578:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6571:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6571:26:1"
},
"nodeType": "YulIf",
"src": "6568:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6701:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6715:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6715:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6715:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6665:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6688:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6696:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6685:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6685:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6662:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6662:38:1"
},
"nodeType": "YulIf",
"src": "6659:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6464:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6473:6:1",
"type": ""
}
],
"src": "6429:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6783:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6800:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6803:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6793:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6793:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6793:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6897:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6900:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6890:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6890:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6890:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6921:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6924:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6914:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6914:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6914:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6755:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6969:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6986:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6989:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6979:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6979:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6979:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7083:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7086:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7076:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7076:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7076:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7107:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7110:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7100:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7100:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6941:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7175:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7185:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7203:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7210:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7199:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7219:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7215:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7215:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7195:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7195:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7185:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7158:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7168:6:1",
"type": ""
}
],
"src": "7127:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7341:59:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7363:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7371:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7359:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7359:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7375:17:1",
"type": "",
"value": "balance too low"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7352:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7352:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "7352:41:1"
}
]
},
"name": "store_literal_in_memory_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7333:6:1",
"type": ""
}
],
"src": "7235:165:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7512:61:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7534:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7542:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7530:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7530:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7546:19:1",
"type": "",
"value": "allowance too low"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7523:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7523:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "7523:43:1"
}
]
},
"name": "store_literal_in_memory_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7504:6:1",
"type": ""
}
],
"src": "7406:167:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7622:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7679:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7688:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7691:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7681:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7681:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7681:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7645:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7670:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "7652:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7652:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7642:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7642:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7635:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7635:43:1"
},
"nodeType": "YulIf",
"src": "7632:2:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7615:5:1",
"type": ""
}
],
"src": "7579:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7750:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7807:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7816:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7819:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7809:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7809:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7809:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7773:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7798:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7780:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7780:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7770:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7770:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7763:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7763:43:1"
},
"nodeType": "YulIf",
"src": "7760:2:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7743:5:1",
"type": ""
}
],
"src": "7707:122:1"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_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_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 15)\n store_literal_in_memory_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 17)\n store_literal_in_memory_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8(pos)\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_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_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825__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_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8__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_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8_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_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function 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 store_literal_in_memory_3dfffd4c9d9f882d0f90c6e2df6eb8d15bd00aa18c05c0e0791aaaada359b825(memPtr) {\n\n mstore(add(memPtr, 0), \"balance too low\")\n\n }\n\n function store_literal_in_memory_66de57a083e9a020155953d801850944eb0c181ccc477f95408db3b2e3d44af8(memPtr) {\n\n mstore(add(memPtr, 0), \"allowance too low\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100b45760003560e01c806340c10f191161007157806340c10f19146101a357806370a08231146101d357806395d89b41146102035780639dc29fac14610221578063a9059cbb14610251578063dd62ed3e14610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd1461012557806327e235e314610155578063313ce56714610185575b600080fd5b6100c16102b1565b6040516100ce9190610c85565b60405180910390f35b6100f160048036038101906100ec9190610b91565b61033f565b6040516100fe9190610c6a565b60405180910390f35b61010f610431565b60405161011c9190610ce7565b60405180910390f35b61013f600480360381019061013a9190610b42565b610437565b60405161014c9190610c6a565b60405180910390f35b61016f600480360381019061016a9190610add565b61065d565b60405161017c9190610ce7565b60405180910390f35b61018d610675565b60405161019a9190610ce7565b60405180910390f35b6101bd60048036038101906101b89190610b91565b61067b565b6040516101ca9190610c6a565b60405180910390f35b6101ed60048036038101906101e89190610add565b610741565b6040516101fa9190610ce7565b60405180910390f35b61020b610789565b6040516102189190610c85565b60405180910390f35b61023b60048036038101906102369190610b91565b610817565b6040516102489190610c6a565b60405180910390f35b61026b60048036038101906102669190610b91565b610928565b6040516102789190610c6a565b60405180910390f35b61029b60048036038101906102969190610b06565b610a8e565b6040516102a89190610ce7565b60405180910390f35b600380546102be90610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546102ea90610e23565b80156103375780601f1061030c57610100808354040283529160200191610337565b820191906000526020600020905b81548152906001019060200180831161031a57829003601f168201915b505050505081565b600081600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161041f9190610ce7565b60405180910390a36001905092915050565b60025481565b60008161044385610741565b1015610484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047b90610ca7565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161053a90610cc7565b60405180910390fd5b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105919190610d1e565b92505081905550816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105e69190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161064a9190610ce7565b60405180910390a3600190509392505050565b60006020528060005260406000206000915090505481565b60055481565b6000816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546106cb9190610d1e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161072f9190610ce7565b60405180910390a36001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6004805461079690610e23565b80601f01602080910402602001604051908101604052809291908181526020018280546107c290610e23565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b505050505081565b60008161082333610741565b1015610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b90610ca7565b60405180910390fd5b816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546108b29190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109169190610ce7565b60405180910390a36001905092915050565b60008161093433610741565b1015610975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096c90610ca7565b60405180910390fd5b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109c39190610d1e565b92505081905550816000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a189190610d74565b925050819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7c9190610ce7565b60405180910390a36001905092915050565b6001602052816000526040600020602052806000526040600020600091509150505481565b600081359050610ac281610f16565b92915050565b600081359050610ad781610f2d565b92915050565b600060208284031215610aef57600080fd5b6000610afd84828501610ab3565b91505092915050565b60008060408385031215610b1957600080fd5b6000610b2785828601610ab3565b9250506020610b3885828601610ab3565b9150509250929050565b600080600060608486031215610b5757600080fd5b6000610b6586828701610ab3565b9350506020610b7686828701610ab3565b9250506040610b8786828701610ac8565b9150509250925092565b60008060408385031215610ba457600080fd5b6000610bb285828601610ab3565b9250506020610bc385828601610ac8565b9150509250929050565b610bd681610dba565b82525050565b6000610be782610d02565b610bf18185610d0d565b9350610c01818560208601610df0565b610c0a81610eb3565b840191505092915050565b6000610c22600f83610d0d565b9150610c2d82610ec4565b602082019050919050565b6000610c45601183610d0d565b9150610c5082610eed565b602082019050919050565b610c6481610de6565b82525050565b6000602082019050610c7f6000830184610bcd565b92915050565b60006020820190508181036000830152610c9f8184610bdc565b905092915050565b60006020820190508181036000830152610cc081610c15565b9050919050565b60006020820190508181036000830152610ce081610c38565b9050919050565b6000602082019050610cfc6000830184610c5b565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610d2982610de6565b9150610d3483610de6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610d6957610d68610e55565b5b828201905092915050565b6000610d7f82610de6565b9150610d8a83610de6565b925082821015610d9d57610d9c610e55565b5b828203905092915050565b6000610db382610dc6565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015610e0e578082015181840152602081019050610df3565b83811115610e1d576000848401525b50505050565b60006002820490506001821680610e3b57607f821691505b60208210811415610e4f57610e4e610e84565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f62616c616e636520746f6f206c6f770000000000000000000000000000000000600082015250565b7f616c6c6f77616e636520746f6f206c6f77000000000000000000000000000000600082015250565b610f1f81610da8565b8114610f2a57600080fd5b50565b610f3681610de6565b8114610f4157600080fd5b5056fea2646970667358221220ec032b694d8393ee26d5715242f23f1450effcb48c09b44ed6afcec82e7e8af264736f6c63430008020033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xB4 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x40C10F19 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1A3 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x203 JUMPI DUP1 PUSH4 0x9DC29FAC EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x281 JUMPI PUSH2 0xB4 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xB9 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xD7 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x107 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x125 JUMPI DUP1 PUSH4 0x27E235E3 EQ PUSH2 0x155 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x185 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xC1 PUSH2 0x2B1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xEC SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x33F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFE SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10F PUSH2 0x431 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13A SWAP2 SWAP1 PUSH2 0xB42 JUMP JUMPDEST PUSH2 0x437 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14C SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16A SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x65D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x17C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x18D PUSH2 0x675 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x19A SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1BD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B8 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x67B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CA SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1ED PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0xADD JUMP JUMPDEST PUSH2 0x741 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FA SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH2 0x789 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x236 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x817 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x248 SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0xB91 JUMP JUMPDEST PUSH2 0x928 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0xC6A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0xB06 JUMP JUMPDEST PUSH2 0xA8E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH2 0x2BE SWAP1 PUSH2 0xE23 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 0x2EA SWAP1 PUSH2 0xE23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x337 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x30C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x337 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 0x31A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x41F SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x2 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x443 DUP6 PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x484 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x47B SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x543 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x53A SWAP1 PUSH2 0xCC7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH2 0x591 SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP7 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 PUSH2 0x5E6 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x64A SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x5 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 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 PUSH2 0x6CB SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x72F SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 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 0x4 DUP1 SLOAD PUSH2 0x796 SWAP1 PUSH2 0xE23 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 0x7C2 SWAP1 PUSH2 0xE23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x80F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7E4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x80F 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 0x7F2 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x823 CALLER PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x864 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x85B SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x0 DUP1 CALLER 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 PUSH2 0x8B2 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0x916 SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH2 0x934 CALLER PUSH2 0x741 JUMP JUMPDEST LT ISZERO PUSH2 0x975 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x96C SWAP1 PUSH2 0xCA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 PUSH2 0x9C3 SWAP2 SWAP1 PUSH2 0xD1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 CALLER 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 PUSH2 0xA18 SWAP2 SWAP1 PUSH2 0xD74 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA7C SWAP2 SWAP1 PUSH2 0xCE7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP2 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP2 POP POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAC2 DUP2 PUSH2 0xF16 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAD7 DUP2 PUSH2 0xF2D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xAFD DUP5 DUP3 DUP6 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB19 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB27 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xB38 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 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 0xB57 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xB65 DUP7 DUP3 DUP8 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xB76 DUP7 DUP3 DUP8 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xB87 DUP7 DUP3 DUP8 ADD PUSH2 0xAC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBB2 DUP6 DUP3 DUP7 ADD PUSH2 0xAB3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBC3 DUP6 DUP3 DUP7 ADD PUSH2 0xAC8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0xBD6 DUP2 PUSH2 0xDBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBE7 DUP3 PUSH2 0xD02 JUMP JUMPDEST PUSH2 0xBF1 DUP2 DUP6 PUSH2 0xD0D JUMP JUMPDEST SWAP4 POP PUSH2 0xC01 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xDF0 JUMP JUMPDEST PUSH2 0xC0A DUP2 PUSH2 0xEB3 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC22 PUSH1 0xF DUP4 PUSH2 0xD0D JUMP JUMPDEST SWAP2 POP PUSH2 0xC2D DUP3 PUSH2 0xEC4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC45 PUSH1 0x11 DUP4 PUSH2 0xD0D JUMP JUMPDEST SWAP2 POP PUSH2 0xC50 DUP3 PUSH2 0xEED JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC64 DUP2 PUSH2 0xDE6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC7F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xBCD 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 0xC9F DUP2 DUP5 PUSH2 0xBDC 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 0xCC0 DUP2 PUSH2 0xC15 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 0xCE0 DUP2 PUSH2 0xC38 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCFC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC5B 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 0xD29 DUP3 PUSH2 0xDE6 JUMP JUMPDEST SWAP2 POP PUSH2 0xD34 DUP4 PUSH2 0xDE6 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xD69 JUMPI PUSH2 0xD68 PUSH2 0xE55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD7F DUP3 PUSH2 0xDE6 JUMP JUMPDEST SWAP2 POP PUSH2 0xD8A DUP4 PUSH2 0xDE6 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0xD9D JUMPI PUSH2 0xD9C PUSH2 0xE55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDB3 DUP3 PUSH2 0xDC6 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xE0E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xDF3 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xE1D 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 0xE3B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0xE4F JUMPI PUSH2 0xE4E PUSH2 0xE84 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 PUSH32 0x62616C616E636520746F6F206C6F770000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x616C6C6F77616E636520746F6F206C6F77000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0xF1F DUP2 PUSH2 0xDA8 JUMP JUMPDEST DUP2 EQ PUSH2 0xF2A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xF36 DUP2 PUSH2 0xDE6 JUMP JUMPDEST DUP2 EQ PUSH2 0xF41 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xEC SUB 0x2B PUSH10 0x4D8393EE26D5715242F2 EXTCODEHASH EQ POP 0xEF 0xFC 0xB4 DUP13 MULMOD 0xB4 0x4E 0xD6 0xAF 0xCE 0xC8 0x2E PUSH31 0x8AF264736F6C63430008020033000000000000000000000000000000000000 ",
"sourceMap": "86:2088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;277:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1519:202;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;223:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1146:361;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;359:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1729:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;746:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1910:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;854:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;155:61;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;277:40;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1519:202::-;1581:4;1631:5;1598:9;:21;1608:10;1598:21;;;;;;;;;;;;;;;:30;1620:7;1598:30;;;;;;;;;;;;;;;:38;;;;1673:7;1652:36;;1661:10;1652:36;;;1682:5;1652:36;;;;;;:::i;:::-;;;;;;;;1706:4;1699:11;;1519:202;;;;:::o;223:47::-;;;;:::o;1146:361::-;1221:4;1265:5;1246:15;1256:4;1246:9;:15::i;:::-;:24;;1238:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;1340:5;1309:9;:15;1319:4;1309:15;;;;;;;;;;;;;;;:27;1325:10;1309:27;;;;;;;;;;;;;;;;:36;;1301:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1394:5;1378:8;:12;1387:2;1378:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;1428:5;1410:8;:14;1419:4;1410:14;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;1464:2;1449:25;;1458:4;1449:25;;;1468:5;1449:25;;;;;;:::i;:::-;;;;;;;;1492:4;1485:11;;1146:361;;;;;:::o;108:40::-;;;;;;;;;;;;;;;;;:::o;359:25::-;;;;:::o;1729:172::-;1783:4;1816:5;1800:8;:12;1809:2;1800:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;1858:2;1837:31;;1846:10;1837:31;;;1862:5;1837:31;;;;;;:::i;:::-;;;;;;;;1886:4;1879:11;;1729:172;;;;:::o;746:96::-;795:4;819:8;:15;828:5;819:15;;;;;;;;;;;;;;;;812:22;;746:96;;;:::o;324:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1910:257::-;1968:4;2018:5;1993:21;2003:10;1993:9;:21::i;:::-;:30;;1985:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;2078:5;2054:8;:20;2063:10;2054:20;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;2120:6;2099:35;;2108:10;2099:35;;;2128:5;2099:35;;;;;;:::i;:::-;;;;;;;;2152:4;2145:11;;1910:257;;;;:::o;854:280::-;911:4;961:5;936:21;946:10;936:9;:21::i;:::-;:30;;928:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;1013:5;997:8;:12;1006:2;997:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;1053:5;1029:8;:20;1038:10;1029:20;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;1094:2;1073:31;;1082:10;1073:31;;;1098:5;1073:31;;;;;;:::i;:::-;;;;;;;;1122:4;1115:11;;854:280;;;;:::o;155:61::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;;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:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:118::-;3265:24;3283:5;3265:24;:::i;:::-;3260:3;3253:37;3243:53;;:::o;3302:210::-;;3427:2;3416:9;3412:18;3404:26;;3440:65;3502:1;3491:9;3487:17;3478:6;3440:65;:::i;:::-;3394:118;;;;:::o;3518:313::-;;3669:2;3658:9;3654:18;3646:26;;3718:9;3712:4;3708:20;3704:1;3693:9;3689:17;3682:47;3746:78;3819:4;3810:6;3746:78;:::i;:::-;3738:86;;3636:195;;;;:::o;3837:419::-;;4041:2;4030:9;4026:18;4018:26;;4090:9;4084:4;4080:20;4076:1;4065:9;4061:17;4054:47;4118:131;4244:4;4118:131;:::i;:::-;4110:139;;4008:248;;;:::o;4262:419::-;;4466:2;4455:9;4451:18;4443:26;;4515:9;4509:4;4505:20;4501:1;4490:9;4486:17;4479:47;4543:131;4669:4;4543:131;:::i;:::-;4535:139;;4433:248;;;:::o;4687:222::-;;4818:2;4807:9;4803:18;4795:26;;4831:71;4899:1;4888:9;4884:17;4875:6;4831:71;:::i;:::-;4785:124;;;;:::o;4915:99::-;;5001:5;4995:12;4985:22;;4974:40;;;:::o;5020:169::-;;5138:6;5133:3;5126:19;5178:4;5173:3;5169:14;5154:29;;5116:73;;;;:::o;5195:305::-;;5254:20;5272:1;5254:20;:::i;:::-;5249:25;;5288:20;5306:1;5288:20;:::i;:::-;5283:25;;5442:1;5374:66;5370:74;5367:1;5364:81;5361:2;;;5448:18;;:::i;:::-;5361:2;5492:1;5489;5485:9;5478:16;;5239:261;;;;:::o;5506:191::-;;5566:20;5584:1;5566:20;:::i;:::-;5561:25;;5600:20;5618:1;5600:20;:::i;:::-;5595:25;;5639:1;5636;5633:8;5630:2;;;5644:18;;:::i;:::-;5630:2;5689:1;5686;5682:9;5674:17;;5551:146;;;;:::o;5703:96::-;;5769:24;5787:5;5769:24;:::i;:::-;5758:35;;5748:51;;;:::o;5805:90::-;;5882:5;5875:13;5868:21;5857:32;;5847:48;;;:::o;5901:126::-;;5978:42;5971:5;5967:54;5956:65;;5946:81;;;:::o;6033:77::-;;6099:5;6088:16;;6078:32;;;:::o;6116:307::-;6184:1;6194:113;6208:6;6205:1;6202:13;6194:113;;;6293:1;6288:3;6284:11;6278:18;6274:1;6269:3;6265:11;6258:39;6230:2;6227:1;6223:10;6218:15;;6194:113;;;6325:6;6322:1;6319:13;6316:2;;;6405:1;6396:6;6391:3;6387:16;6380:27;6316:2;6165:258;;;;:::o;6429:320::-;;6510:1;6504:4;6500:12;6490:22;;6557:1;6551:4;6547:12;6578:18;6568:2;;6634:4;6626:6;6622:17;6612:27;;6568:2;6696;6688:6;6685:14;6665:18;6662:38;6659:2;;;6715:18;;:::i;:::-;6659:2;6480:269;;;;:::o;6755:180::-;6803:77;6800:1;6793:88;6900:4;6897:1;6890:15;6924:4;6921:1;6914:15;6941:180;6989:77;6986:1;6979:88;7086:4;7083:1;7076:15;7110:4;7107:1;7100:15;7127:102;;7219:2;7215:7;7210:2;7203:5;7199:14;7195:28;7185:38;;7175:54;;;:::o;7235:165::-;7375:17;7371:1;7363:6;7359:14;7352:41;7341:59;:::o;7406:167::-;7546:19;7542:1;7534:6;7530:14;7523:43;7512:61;:::o;7579:122::-;7652:24;7670:5;7652:24;:::i;:::-;7645:5;7642:35;7632:2;;7691:1;7688;7681:12;7632:2;7622:79;:::o;7707:122::-;7780:24;7798:5;7780:24;:::i;:::-;7773:5;7770:35;7760:2;;7819:1;7816;7809:12;7760:2;7750:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "792400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1563",
"balances(address)": "1603",
"burn(address,uint256)": "infinite",
"decimals()": "1240",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "1174",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 86,
"end": 2174,
"name": "MSTORE",
"source": 0
},
{
"begin": 249,
"end": 270,
"name": "PUSH",
"source": 0,
"value": "33B2E3C9FD0803CE8000000"
},
{
"begin": 223,
"end": 270,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 223,
"end": 270,
"name": "SSTORE",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 277,
"end": 317,
"name": "MLOAD",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "DUP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 277,
"end": 317,
"name": "ADD",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 277,
"end": 317,
"name": "MSTORE",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "DUP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "11"
},
{
"begin": 277,
"end": 317,
"name": "DUP2",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "MSTORE",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 277,
"end": 317,
"name": "ADD",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "477265656E20456172746820546F6B656E000000000000000000000000000000"
},
{
"begin": 277,
"end": 317,
"name": "DUP2",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "MSTORE",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "POP",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 277,
"end": 317,
"name": "SWAP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "DUP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "MLOAD",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "SWAP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 277,
"end": 317,
"name": "ADD",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "SWAP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 277,
"end": 317,
"name": "SWAP3",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "SWAP2",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "SWAP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 277,
"end": 317,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 277,
"end": 317,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 277,
"end": 317,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 352,
"name": "MLOAD",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 352,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 352,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 324,
"end": 352,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 352,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "4745540000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 324,
"end": 352,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 324,
"end": 352,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "MLOAD",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 352,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 324,
"end": 352,
"name": "SWAP3",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 324,
"end": 352,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 324,
"end": 352,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 324,
"end": 352,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "POP",
"source": 0
},
{
"begin": 382,
"end": 384,
"name": "PUSH",
"source": 0,
"value": "12"
},
{
"begin": 359,
"end": 384,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 359,
"end": 384,
"name": "SSTORE",
"source": 0
},
{
"begin": 667,
"end": 734,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 667,
"end": 734,
"name": "DUP1",
"source": 0
},
{
"begin": 667,
"end": 734,
"name": "ISZERO",
"source": 0
},
{
"begin": 667,
"end": 734,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 667,
"end": 734,
"name": "JUMPI",
"source": 0
},
{
"begin": 667,
"end": 734,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 667,
"end": 734,
"name": "DUP1",
"source": 0
},
{
"begin": 667,
"end": 734,
"name": "REVERT",
"source": 0
},
{
"begin": 667,
"end": 734,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 667,
"end": 734,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 667,
"end": 734,
"name": "POP",
"source": 0
},
{
"begin": 715,
"end": 726,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 715,
"end": 726,
"name": "SLOAD",
"source": 0
},
{
"begin": 692,
"end": 700,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 692,
"end": 712,
"name": "DUP1",
"source": 0
},
{
"begin": 701,
"end": 711,
"name": "CALLER",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 692,
"end": 712,
"name": "AND",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 692,
"end": 712,
"name": "AND",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "DUP2",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "MSTORE",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 692,
"end": 712,
"name": "ADD",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "SWAP1",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "DUP2",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "MSTORE",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 692,
"end": 712,
"name": "ADD",
"source": 0
},
{
"begin": 692,
"end": 712,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 692,
"end": 712,
"name": "KECCAK256",
"source": 0
},
{
"begin": 692,
"end": 726,
"name": "DUP2",
"source": 0
},
{
"begin": 692,
"end": 726,
"name": "SWAP1",
"source": 0
},
{
"begin": 692,
"end": 726,
"name": "SSTORE",
"source": 0
},
{
"begin": 692,
"end": 726,
"name": "POP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SLOAD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "MSTORE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "KECCAK256",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DIV",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP2",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "DUP6",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SSTORE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 86,
"end": 2174,
"name": "LT",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "MLOAD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 86,
"end": 2174,
"name": "NOT",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "AND",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP4",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "OR",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP6",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SSTORE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP6",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SSTORE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "ISZERO",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP2",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP2",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "GT",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "ISZERO",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "MLOAD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SSTORE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP2",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP2",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "POP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "POP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 86,
"end": 2174,
"name": "SWAP2",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "POP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP3",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "GT",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "ISZERO",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "DUP2",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SSTORE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "POP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 86,
"end": 2174,
"name": "ADD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "POP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "SWAP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 327,
"name": "tag",
"source": 1,
"value": "9"
},
{
"begin": 7,
"end": 327,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7,
"end": 327,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 88,
"end": 89,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 82,
"end": 86,
"name": "DUP3",
"source": 1
},
{
"begin": 78,
"end": 90,
"name": "DIV",
"source": 1
},
{
"begin": 68,
"end": 90,
"name": "SWAP1",
"source": 1
},
{
"begin": 68,
"end": 90,
"name": "POP",
"source": 1
},
{
"begin": 135,
"end": 136,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 129,
"end": 133,
"name": "DUP3",
"source": 1
},
{
"begin": 125,
"end": 137,
"name": "AND",
"source": 1
},
{
"begin": 156,
"end": 174,
"name": "DUP1",
"source": 1
},
{
"begin": 146,
"end": 148,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 146,
"end": 148,
"name": "JUMPI",
"source": 1
},
{
"begin": 212,
"end": 216,
"name": "PUSH",
"source": 1,
"value": "7F"
},
{
"begin": 204,
"end": 210,
"name": "DUP3",
"source": 1
},
{
"begin": 200,
"end": 217,
"name": "AND",
"source": 1
},
{
"begin": 190,
"end": 217,
"name": "SWAP2",
"source": 1
},
{
"begin": 190,
"end": 217,
"name": "POP",
"source": 1
},
{
"begin": 146,
"end": 148,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 146,
"end": 148,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 274,
"end": 276,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 266,
"end": 272,
"name": "DUP3",
"source": 1
},
{
"begin": 263,
"end": 277,
"name": "LT",
"source": 1
},
{
"begin": 243,
"end": 261,
"name": "DUP2",
"source": 1
},
{
"begin": 240,
"end": 278,
"name": "EQ",
"source": 1
},
{
"begin": 237,
"end": 239,
"name": "ISZERO",
"source": 1
},
{
"begin": 237,
"end": 239,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 237,
"end": 239,
"name": "JUMPI",
"source": 1
},
{
"begin": 293,
"end": 311,
"name": "PUSH [tag]",
"source": 1,
"value": "23"
},
{
"begin": 293,
"end": 311,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 293,
"end": 311,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 293,
"end": 311,
"name": "tag",
"source": 1,
"value": "23"
},
{
"begin": 293,
"end": 311,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 237,
"end": 239,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 237,
"end": 239,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 58,
"end": 327,
"name": "POP",
"source": 1
},
{
"begin": 58,
"end": 327,
"name": "SWAP2",
"source": 1
},
{
"begin": 58,
"end": 327,
"name": "SWAP1",
"source": 1
},
{
"begin": 58,
"end": 327,
"name": "POP",
"source": 1
},
{
"begin": 58,
"end": 327,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 333,
"end": 513,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 333,
"end": 513,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 381,
"end": 458,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 378,
"end": 379,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 371,
"end": 459,
"name": "MSTORE",
"source": 1
},
{
"begin": 478,
"end": 482,
"name": "PUSH",
"source": 1,
"value": "22"
},
{
"begin": 475,
"end": 476,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 468,
"end": 483,
"name": "MSTORE",
"source": 1
},
{
"begin": 502,
"end": 506,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 499,
"end": 500,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 492,
"end": 507,
"name": "REVERT",
"source": 1
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "CODECOPY",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220ec032b694d8393ee26d5715242f23f1450effcb48c09b44ed6afcec82e7e8af264736f6c63430008020033",
".code": [
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 86,
"end": 2174,
"name": "MSTORE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "ISZERO",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "REVERT",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "POP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 86,
"end": 2174,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "LT",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 86,
"end": 2174,
"name": "SHR",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "40C10F19"
},
{
"begin": 86,
"end": 2174,
"name": "GT",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "40C10F19"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "70A08231"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "95D89B41"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "9DC29FAC"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "A9059CBB"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "DD62ED3E"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 86,
"end": 2174,
"name": "JUMP",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "6FDDE03"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "95EA7B3"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "18160DDD"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "23B872DD"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "27E235E3"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "313CE567"
},
{
"begin": 86,
"end": 2174,
"name": "EQ",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPI",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 86,
"end": 2174,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 86,
"end": 2174,
"name": "DUP1",
"source": 0
},
{
"begin": 86,
"end": 2174,
"name": "REVERT",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 277,
"end": 317,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 277,
"end": 317,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 277,
"end": 317,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 277,
"end": 317,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 277,
"end": 317,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 277,
"end": 317,
"name": "MLOAD",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 277,
"end": 317,
"name": "SWAP2",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "SWAP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 277,
"end": 317,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 277,
"end": 317,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 277,
"end": 317,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 277,
"end": 317,
"name": "MLOAD",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "DUP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "SWAP2",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "SUB",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "SWAP1",
"source": 0
},
{
"begin": 277,
"end": 317,
"name": "RETURN",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 1519,
"end": 1721,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1519,
"end": 1721,
"name": "DUP1",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "SUB",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "DUP2",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "ADD",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "SWAP1",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 1519,
"end": 1721,
"name": "SWAP2",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "SWAP1",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 1519,
"end": 1721,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1519,
"end": 1721,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 1519,
"end": 1721,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 1519,
"end": 1721,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1519,
"end": 1721,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 1519,
"end": 1721,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1519,
"end": 1721,
"name": "MLOAD",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 1519,
"end": 1721,
"name": "SWAP2",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "SWAP1",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 1519,
"end": 1721,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1519,
"end": 1721,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 1519,
"end": 1721,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1519,
"end": 1721,
"name": "MLOAD",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "DUP1",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "SWAP2",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "SUB",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "SWAP1",
"source": 0
},
{
"begin": 1519,
"end": 1721,
"name": "RETURN",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 223,
"end": 270,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 223,
"end": 270,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 223,
"end": 270,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 223,
"end": 270,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 223,
"end": 270,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 223,
"end": 270,
"name": "MLOAD",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 223,
"end": 270,
"name": "SWAP2",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "SWAP1",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 223,
"end": 270,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 223,
"end": 270,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 223,
"end": 270,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 223,
"end": 270,
"name": "MLOAD",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "DUP1",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "SWAP2",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "SUB",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "SWAP1",
"source": 0
},
{
"begin": 223,
"end": 270,
"name": "RETURN",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 1146,
"end": 1507,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1146,
"end": 1507,
"name": "DUP1",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "SUB",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "DUP2",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "ADD",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "SWAP1",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 1146,
"end": 1507,
"name": "SWAP2",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "SWAP1",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 1146,
"end": 1507,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1146,
"end": 1507,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 1146,
"end": 1507,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 1146,
"end": 1507,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1146,
"end": 1507,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 1146,
"end": 1507,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1146,
"end": 1507,
"name": "MLOAD",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 1146,
"end": 1507,
"name": "SWAP2",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "SWAP1",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 1146,
"end": 1507,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1146,
"end": 1507,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 1146,
"end": 1507,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1146,
"end": 1507,
"name": "MLOAD",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "DUP1",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "SWAP2",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "SUB",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "SWAP1",
"source": 0
},
{
"begin": 1146,
"end": 1507,
"name": "RETURN",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 108,
"end": 148,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 108,
"end": 148,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 108,
"end": 148,
"name": "DUP1",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "SUB",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "DUP2",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "ADD",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "SWAP1",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 108,
"end": 148,
"name": "SWAP2",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "SWAP1",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 108,
"end": 148,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 108,
"end": 148,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 108,
"end": 148,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 108,
"end": 148,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 108,
"end": 148,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 108,
"end": 148,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 108,
"end": 148,
"name": "MLOAD",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 108,
"end": 148,
"name": "SWAP2",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "SWAP1",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 108,
"end": 148,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 108,
"end": 148,
"name": "tag",
"source": 0,
"value": "39"
},
{
"begin": 108,
"end": 148,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 108,
"end": 148,
"name": "MLOAD",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "DUP1",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "SWAP2",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "SUB",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "SWAP1",
"source": 0
},
{
"begin": 108,
"end": 148,
"name": "RETURN",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 359,
"end": 384,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 359,
"end": 384,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 359,
"end": 384,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 359,
"end": 384,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 359,
"end": 384,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 359,
"end": 384,
"name": "MLOAD",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 359,
"end": 384,
"name": "SWAP2",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "SWAP1",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 359,
"end": 384,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 359,
"end": 384,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 359,
"end": 384,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 359,
"end": 384,
"name": "MLOAD",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "DUP1",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "SWAP2",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "SUB",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "SWAP1",
"source": 0
},
{
"begin": 359,
"end": 384,
"name": "RETURN",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 1729,
"end": 1901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1729,
"end": 1901,
"name": "DUP1",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "SUB",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "DUP2",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "ADD",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "SWAP1",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 1729,
"end": 1901,
"name": "SWAP2",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "SWAP1",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 1729,
"end": 1901,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1729,
"end": 1901,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 1729,
"end": 1901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 1729,
"end": 1901,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1729,
"end": 1901,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 1729,
"end": 1901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1729,
"end": 1901,
"name": "MLOAD",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 1729,
"end": 1901,
"name": "SWAP2",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "SWAP1",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 1729,
"end": 1901,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1729,
"end": 1901,
"name": "tag",
"source": 0,
"value": "46"
},
{
"begin": 1729,
"end": 1901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1729,
"end": 1901,
"name": "MLOAD",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "DUP1",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "SWAP2",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "SUB",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "SWAP1",
"source": 0
},
{
"begin": 1729,
"end": 1901,
"name": "RETURN",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 746,
"end": 842,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "PUSH [tag]",
"source": 0,
"value": "47"
},
{
"begin": 746,
"end": 842,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 746,
"end": 842,
"name": "DUP1",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "SUB",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "DUP2",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "ADD",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "SWAP1",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "PUSH [tag]",
"source": 0,
"value": "48"
},
{
"begin": 746,
"end": 842,
"name": "SWAP2",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "SWAP1",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 746,
"end": 842,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 746,
"end": 842,
"name": "tag",
"source": 0,
"value": "48"
},
{
"begin": 746,
"end": 842,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 746,
"end": 842,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 746,
"end": 842,
"name": "tag",
"source": 0,
"value": "47"
},
{
"begin": 746,
"end": 842,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 746,
"end": 842,
"name": "MLOAD",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 746,
"end": 842,
"name": "SWAP2",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "SWAP1",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 746,
"end": 842,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 746,
"end": 842,
"name": "tag",
"source": 0,
"value": "50"
},
{
"begin": 746,
"end": 842,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 746,
"end": 842,
"name": "MLOAD",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "DUP1",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "SWAP2",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "SUB",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "SWAP1",
"source": 0
},
{
"begin": 746,
"end": 842,
"name": "RETURN",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 324,
"end": 352,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH [tag]",
"source": 0,
"value": "51"
},
{
"begin": 324,
"end": 352,
"name": "PUSH [tag]",
"source": 0,
"value": "52"
},
{
"begin": 324,
"end": 352,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 324,
"end": 352,
"name": "tag",
"source": 0,
"value": "51"
},
{
"begin": 324,
"end": 352,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 352,
"name": "MLOAD",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH [tag]",
"source": 0,
"value": "53"
},
{
"begin": 324,
"end": 352,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 324,
"end": 352,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 324,
"end": 352,
"name": "tag",
"source": 0,
"value": "53"
},
{
"begin": 324,
"end": 352,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 352,
"name": "MLOAD",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "SUB",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 352,
"name": "RETURN",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1910,
"end": 2167,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "PUSH [tag]",
"source": 0,
"value": "54"
},
{
"begin": 1910,
"end": 2167,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1910,
"end": 2167,
"name": "DUP1",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "SUB",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "DUP2",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "ADD",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "SWAP1",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 1910,
"end": 2167,
"name": "SWAP2",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "SWAP1",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 1910,
"end": 2167,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1910,
"end": 2167,
"name": "tag",
"source": 0,
"value": "55"
},
{
"begin": 1910,
"end": 2167,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1910,
"end": 2167,
"name": "PUSH [tag]",
"source": 0,
"value": "56"
},
{
"begin":
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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