Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save estebgonza/4af50cc97bc8018ba0a8fb896a5415df to your computer and use it in GitHub Desktop.
Save estebgonza/4af50cc97bc8018ba0a8fb896a5415df 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.21+commit.d9974bed.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* 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}.
*
* 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 default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
return address(0);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"@_734": {
"entryPoint": null,
"id": 734,
"parameterSlots": 0,
"returnSlots": 0
},
"@_afterTokenTransfer_585": {
"entryPoint": 570,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 565,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_403": {
"entryPoint": 200,
"id": 403,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1498,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1677,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1537,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1694,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 733,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 575,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1440,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1618,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1054,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 869,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1015,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 889,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1209,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 754,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 680,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1179,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 879,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1147,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1571,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 633,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 586,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 929,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 770,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1134,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 987,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 1457,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 783,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 939,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 982,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:7125:5",
"nodeType": "YulBlock",
"src": "0:7125:5",
"statements": [
{
"body": {
"nativeSrc": "66:40:5",
"nodeType": "YulBlock",
"src": "66:40:5",
"statements": [
{
"nativeSrc": "77:22:5",
"nodeType": "YulAssignment",
"src": "77:22:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:5",
"nodeType": "YulIdentifier",
"src": "93:5:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:5",
"nodeType": "YulIdentifier",
"src": "87:5:5"
},
"nativeSrc": "87:12:5",
"nodeType": "YulFunctionCall",
"src": "87:12:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:5",
"nodeType": "YulIdentifier",
"src": "77:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:5",
"nodeType": "YulTypedName",
"src": "49:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:5",
"nodeType": "YulTypedName",
"src": "59:6:5",
"type": ""
}
],
"src": "7:99:5"
},
{
"body": {
"nativeSrc": "140:152:5",
"nodeType": "YulBlock",
"src": "140:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "157:1:5",
"nodeType": "YulLiteral",
"src": "157:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "160:77:5",
"nodeType": "YulLiteral",
"src": "160:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "150:6:5",
"nodeType": "YulIdentifier",
"src": "150:6:5"
},
"nativeSrc": "150:88:5",
"nodeType": "YulFunctionCall",
"src": "150:88:5"
},
"nativeSrc": "150:88:5",
"nodeType": "YulExpressionStatement",
"src": "150:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "254:1:5",
"nodeType": "YulLiteral",
"src": "254:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "257:4:5",
"nodeType": "YulLiteral",
"src": "257:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "247:6:5",
"nodeType": "YulIdentifier",
"src": "247:6:5"
},
"nativeSrc": "247:15:5",
"nodeType": "YulFunctionCall",
"src": "247:15:5"
},
"nativeSrc": "247:15:5",
"nodeType": "YulExpressionStatement",
"src": "247:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "278:1:5",
"nodeType": "YulLiteral",
"src": "278:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "281:4:5",
"nodeType": "YulLiteral",
"src": "281:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "271:6:5",
"nodeType": "YulIdentifier",
"src": "271:6:5"
},
"nativeSrc": "271:15:5",
"nodeType": "YulFunctionCall",
"src": "271:15:5"
},
"nativeSrc": "271:15:5",
"nodeType": "YulExpressionStatement",
"src": "271:15:5"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "112:180:5",
"nodeType": "YulFunctionDefinition",
"src": "112:180:5"
},
{
"body": {
"nativeSrc": "326:152:5",
"nodeType": "YulBlock",
"src": "326:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "343:1:5",
"nodeType": "YulLiteral",
"src": "343:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "346:77:5",
"nodeType": "YulLiteral",
"src": "346:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "336:6:5",
"nodeType": "YulIdentifier",
"src": "336:6:5"
},
"nativeSrc": "336:88:5",
"nodeType": "YulFunctionCall",
"src": "336:88:5"
},
"nativeSrc": "336:88:5",
"nodeType": "YulExpressionStatement",
"src": "336:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "440:1:5",
"nodeType": "YulLiteral",
"src": "440:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "443:4:5",
"nodeType": "YulLiteral",
"src": "443:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "433:6:5",
"nodeType": "YulIdentifier",
"src": "433:6:5"
},
"nativeSrc": "433:15:5",
"nodeType": "YulFunctionCall",
"src": "433:15:5"
},
"nativeSrc": "433:15:5",
"nodeType": "YulExpressionStatement",
"src": "433:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "464:1:5",
"nodeType": "YulLiteral",
"src": "464:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "467:4:5",
"nodeType": "YulLiteral",
"src": "467:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "457:6:5",
"nodeType": "YulIdentifier",
"src": "457:6:5"
},
"nativeSrc": "457:15:5",
"nodeType": "YulFunctionCall",
"src": "457:15:5"
},
"nativeSrc": "457:15:5",
"nodeType": "YulExpressionStatement",
"src": "457:15:5"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "298:180:5",
"nodeType": "YulFunctionDefinition",
"src": "298:180:5"
},
{
"body": {
"nativeSrc": "535:269:5",
"nodeType": "YulBlock",
"src": "535:269:5",
"statements": [
{
"nativeSrc": "545:22:5",
"nodeType": "YulAssignment",
"src": "545:22:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "559:4:5",
"nodeType": "YulIdentifier",
"src": "559:4:5"
},
{
"kind": "number",
"nativeSrc": "565:1:5",
"nodeType": "YulLiteral",
"src": "565:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "555:3:5",
"nodeType": "YulIdentifier",
"src": "555:3:5"
},
"nativeSrc": "555:12:5",
"nodeType": "YulFunctionCall",
"src": "555:12:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "545:6:5",
"nodeType": "YulIdentifier",
"src": "545:6:5"
}
]
},
{
"nativeSrc": "576:38:5",
"nodeType": "YulVariableDeclaration",
"src": "576:38:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "606:4:5",
"nodeType": "YulIdentifier",
"src": "606:4:5"
},
{
"kind": "number",
"nativeSrc": "612:1:5",
"nodeType": "YulLiteral",
"src": "612:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "602:3:5",
"nodeType": "YulIdentifier",
"src": "602:3:5"
},
"nativeSrc": "602:12:5",
"nodeType": "YulFunctionCall",
"src": "602:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "580:18:5",
"nodeType": "YulTypedName",
"src": "580:18:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "653:51:5",
"nodeType": "YulBlock",
"src": "653:51:5",
"statements": [
{
"nativeSrc": "667:27:5",
"nodeType": "YulAssignment",
"src": "667:27:5",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "681:6:5",
"nodeType": "YulIdentifier",
"src": "681:6:5"
},
{
"kind": "number",
"nativeSrc": "689:4:5",
"nodeType": "YulLiteral",
"src": "689:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "677:3:5",
"nodeType": "YulIdentifier",
"src": "677:3:5"
},
"nativeSrc": "677:17:5",
"nodeType": "YulFunctionCall",
"src": "677:17:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "667:6:5",
"nodeType": "YulIdentifier",
"src": "667:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "633:18:5",
"nodeType": "YulIdentifier",
"src": "633:18:5"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "626:6:5",
"nodeType": "YulIdentifier",
"src": "626:6:5"
},
"nativeSrc": "626:26:5",
"nodeType": "YulFunctionCall",
"src": "626:26:5"
},
"nativeSrc": "623:81:5",
"nodeType": "YulIf",
"src": "623:81:5"
},
{
"body": {
"nativeSrc": "756:42:5",
"nodeType": "YulBlock",
"src": "756:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "770:16:5",
"nodeType": "YulIdentifier",
"src": "770:16:5"
},
"nativeSrc": "770:18:5",
"nodeType": "YulFunctionCall",
"src": "770:18:5"
},
"nativeSrc": "770:18:5",
"nodeType": "YulExpressionStatement",
"src": "770:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "720:18:5",
"nodeType": "YulIdentifier",
"src": "720:18:5"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "743:6:5",
"nodeType": "YulIdentifier",
"src": "743:6:5"
},
{
"kind": "number",
"nativeSrc": "751:2:5",
"nodeType": "YulLiteral",
"src": "751:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "740:2:5",
"nodeType": "YulIdentifier",
"src": "740:2:5"
},
"nativeSrc": "740:14:5",
"nodeType": "YulFunctionCall",
"src": "740:14:5"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "717:2:5",
"nodeType": "YulIdentifier",
"src": "717:2:5"
},
"nativeSrc": "717:38:5",
"nodeType": "YulFunctionCall",
"src": "717:38:5"
},
"nativeSrc": "714:84:5",
"nodeType": "YulIf",
"src": "714:84:5"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "484:320:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "519:4:5",
"nodeType": "YulTypedName",
"src": "519:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "528:6:5",
"nodeType": "YulTypedName",
"src": "528:6:5",
"type": ""
}
],
"src": "484:320:5"
},
{
"body": {
"nativeSrc": "864:87:5",
"nodeType": "YulBlock",
"src": "864:87:5",
"statements": [
{
"nativeSrc": "874:11:5",
"nodeType": "YulAssignment",
"src": "874:11:5",
"value": {
"name": "ptr",
"nativeSrc": "882:3:5",
"nodeType": "YulIdentifier",
"src": "882:3:5"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "874:4:5",
"nodeType": "YulIdentifier",
"src": "874:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "902:1:5",
"nodeType": "YulLiteral",
"src": "902:1:5",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "905:3:5",
"nodeType": "YulIdentifier",
"src": "905:3:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "895:6:5",
"nodeType": "YulIdentifier",
"src": "895:6:5"
},
"nativeSrc": "895:14:5",
"nodeType": "YulFunctionCall",
"src": "895:14:5"
},
"nativeSrc": "895:14:5",
"nodeType": "YulExpressionStatement",
"src": "895:14:5"
},
{
"nativeSrc": "918:26:5",
"nodeType": "YulAssignment",
"src": "918:26:5",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "936:1:5",
"nodeType": "YulLiteral",
"src": "936:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "939:4:5",
"nodeType": "YulLiteral",
"src": "939:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "926:9:5",
"nodeType": "YulIdentifier",
"src": "926:9:5"
},
"nativeSrc": "926:18:5",
"nodeType": "YulFunctionCall",
"src": "926:18:5"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "918:4:5",
"nodeType": "YulIdentifier",
"src": "918:4:5"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "810:141:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "851:3:5",
"nodeType": "YulTypedName",
"src": "851:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "859:4:5",
"nodeType": "YulTypedName",
"src": "859:4:5",
"type": ""
}
],
"src": "810:141:5"
},
{
"body": {
"nativeSrc": "1001:49:5",
"nodeType": "YulBlock",
"src": "1001:49:5",
"statements": [
{
"nativeSrc": "1011:33:5",
"nodeType": "YulAssignment",
"src": "1011:33:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1029:5:5",
"nodeType": "YulIdentifier",
"src": "1029:5:5"
},
{
"kind": "number",
"nativeSrc": "1036:2:5",
"nodeType": "YulLiteral",
"src": "1036:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1025:3:5",
"nodeType": "YulIdentifier",
"src": "1025:3:5"
},
"nativeSrc": "1025:14:5",
"nodeType": "YulFunctionCall",
"src": "1025:14:5"
},
{
"kind": "number",
"nativeSrc": "1041:2:5",
"nodeType": "YulLiteral",
"src": "1041:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "1021:3:5",
"nodeType": "YulIdentifier",
"src": "1021:3:5"
},
"nativeSrc": "1021:23:5",
"nodeType": "YulFunctionCall",
"src": "1021:23:5"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1011:6:5",
"nodeType": "YulIdentifier",
"src": "1011:6:5"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "957:93:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "984:5:5",
"nodeType": "YulTypedName",
"src": "984:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "994:6:5",
"nodeType": "YulTypedName",
"src": "994:6:5",
"type": ""
}
],
"src": "957:93:5"
},
{
"body": {
"nativeSrc": "1109:54:5",
"nodeType": "YulBlock",
"src": "1109:54:5",
"statements": [
{
"nativeSrc": "1119:37:5",
"nodeType": "YulAssignment",
"src": "1119:37:5",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "1144:4:5",
"nodeType": "YulIdentifier",
"src": "1144:4:5"
},
{
"name": "value",
"nativeSrc": "1150:5:5",
"nodeType": "YulIdentifier",
"src": "1150:5:5"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "1140:3:5",
"nodeType": "YulIdentifier",
"src": "1140:3:5"
},
"nativeSrc": "1140:16:5",
"nodeType": "YulFunctionCall",
"src": "1140:16:5"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "1119:8:5",
"nodeType": "YulIdentifier",
"src": "1119:8:5"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "1056:107:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "1084:4:5",
"nodeType": "YulTypedName",
"src": "1084:4:5",
"type": ""
},
{
"name": "value",
"nativeSrc": "1090:5:5",
"nodeType": "YulTypedName",
"src": "1090:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "1100:8:5",
"nodeType": "YulTypedName",
"src": "1100:8:5",
"type": ""
}
],
"src": "1056:107:5"
},
{
"body": {
"nativeSrc": "1245:317:5",
"nodeType": "YulBlock",
"src": "1245:317:5",
"statements": [
{
"nativeSrc": "1255:35:5",
"nodeType": "YulVariableDeclaration",
"src": "1255:35:5",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "1276:10:5",
"nodeType": "YulIdentifier",
"src": "1276:10:5"
},
{
"kind": "number",
"nativeSrc": "1288:1:5",
"nodeType": "YulLiteral",
"src": "1288:1:5",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "1272:3:5",
"nodeType": "YulIdentifier",
"src": "1272:3:5"
},
"nativeSrc": "1272:18:5",
"nodeType": "YulFunctionCall",
"src": "1272:18:5"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "1259:9:5",
"nodeType": "YulTypedName",
"src": "1259:9:5",
"type": ""
}
]
},
{
"nativeSrc": "1299:109:5",
"nodeType": "YulVariableDeclaration",
"src": "1299:109:5",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1330:9:5",
"nodeType": "YulIdentifier",
"src": "1330:9:5"
},
{
"kind": "number",
"nativeSrc": "1341:66:5",
"nodeType": "YulLiteral",
"src": "1341:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1311:18:5",
"nodeType": "YulIdentifier",
"src": "1311:18:5"
},
"nativeSrc": "1311:97:5",
"nodeType": "YulFunctionCall",
"src": "1311:97:5"
},
"variables": [
{
"name": "mask",
"nativeSrc": "1303:4:5",
"nodeType": "YulTypedName",
"src": "1303:4:5",
"type": ""
}
]
},
{
"nativeSrc": "1417:51:5",
"nodeType": "YulAssignment",
"src": "1417:51:5",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1448:9:5",
"nodeType": "YulIdentifier",
"src": "1448:9:5"
},
{
"name": "toInsert",
"nativeSrc": "1459:8:5",
"nodeType": "YulIdentifier",
"src": "1459:8:5"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1429:18:5",
"nodeType": "YulIdentifier",
"src": "1429:18:5"
},
"nativeSrc": "1429:39:5",
"nodeType": "YulFunctionCall",
"src": "1429:39:5"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "1417:8:5",
"nodeType": "YulIdentifier",
"src": "1417:8:5"
}
]
},
{
"nativeSrc": "1477:30:5",
"nodeType": "YulAssignment",
"src": "1477:30:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1490:5:5",
"nodeType": "YulIdentifier",
"src": "1490:5:5"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "1501:4:5",
"nodeType": "YulIdentifier",
"src": "1501:4:5"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1497:3:5",
"nodeType": "YulIdentifier",
"src": "1497:3:5"
},
"nativeSrc": "1497:9:5",
"nodeType": "YulFunctionCall",
"src": "1497:9:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1486:3:5",
"nodeType": "YulIdentifier",
"src": "1486:3:5"
},
"nativeSrc": "1486:21:5",
"nodeType": "YulFunctionCall",
"src": "1486:21:5"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1477:5:5",
"nodeType": "YulIdentifier",
"src": "1477:5:5"
}
]
},
{
"nativeSrc": "1516:40:5",
"nodeType": "YulAssignment",
"src": "1516:40:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1529:5:5",
"nodeType": "YulIdentifier",
"src": "1529:5:5"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "1540:8:5",
"nodeType": "YulIdentifier",
"src": "1540:8:5"
},
{
"name": "mask",
"nativeSrc": "1550:4:5",
"nodeType": "YulIdentifier",
"src": "1550:4:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1536:3:5",
"nodeType": "YulIdentifier",
"src": "1536:3:5"
},
"nativeSrc": "1536:19:5",
"nodeType": "YulFunctionCall",
"src": "1536:19:5"
}
],
"functionName": {
"name": "or",
"nativeSrc": "1526:2:5",
"nodeType": "YulIdentifier",
"src": "1526:2:5"
},
"nativeSrc": "1526:30:5",
"nodeType": "YulFunctionCall",
"src": "1526:30:5"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1516:6:5",
"nodeType": "YulIdentifier",
"src": "1516:6:5"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "1169:393:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1206:5:5",
"nodeType": "YulTypedName",
"src": "1206:5:5",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "1213:10:5",
"nodeType": "YulTypedName",
"src": "1213:10:5",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "1225:8:5",
"nodeType": "YulTypedName",
"src": "1225:8:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1238:6:5",
"nodeType": "YulTypedName",
"src": "1238:6:5",
"type": ""
}
],
"src": "1169:393:5"
},
{
"body": {
"nativeSrc": "1613:32:5",
"nodeType": "YulBlock",
"src": "1613:32:5",
"statements": [
{
"nativeSrc": "1623:16:5",
"nodeType": "YulAssignment",
"src": "1623:16:5",
"value": {
"name": "value",
"nativeSrc": "1634:5:5",
"nodeType": "YulIdentifier",
"src": "1634:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1623:7:5",
"nodeType": "YulIdentifier",
"src": "1623:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "1568:77:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1595:5:5",
"nodeType": "YulTypedName",
"src": "1595:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1605:7:5",
"nodeType": "YulTypedName",
"src": "1605:7:5",
"type": ""
}
],
"src": "1568:77:5"
},
{
"body": {
"nativeSrc": "1683:28:5",
"nodeType": "YulBlock",
"src": "1683:28:5",
"statements": [
{
"nativeSrc": "1693:12:5",
"nodeType": "YulAssignment",
"src": "1693:12:5",
"value": {
"name": "value",
"nativeSrc": "1700:5:5",
"nodeType": "YulIdentifier",
"src": "1700:5:5"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1693:3:5",
"nodeType": "YulIdentifier",
"src": "1693:3:5"
}
]
}
]
},
"name": "identity",
"nativeSrc": "1651:60:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1669:5:5",
"nodeType": "YulTypedName",
"src": "1669:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1679:3:5",
"nodeType": "YulTypedName",
"src": "1679:3:5",
"type": ""
}
],
"src": "1651:60:5"
},
{
"body": {
"nativeSrc": "1777:82:5",
"nodeType": "YulBlock",
"src": "1777:82:5",
"statements": [
{
"nativeSrc": "1787:66:5",
"nodeType": "YulAssignment",
"src": "1787:66:5",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1845:5:5",
"nodeType": "YulIdentifier",
"src": "1845:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1827:17:5",
"nodeType": "YulIdentifier",
"src": "1827:17:5"
},
"nativeSrc": "1827:24:5",
"nodeType": "YulFunctionCall",
"src": "1827:24:5"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "1818:8:5",
"nodeType": "YulIdentifier",
"src": "1818:8:5"
},
"nativeSrc": "1818:34:5",
"nodeType": "YulFunctionCall",
"src": "1818:34:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1800:17:5",
"nodeType": "YulIdentifier",
"src": "1800:17:5"
},
"nativeSrc": "1800:53:5",
"nodeType": "YulFunctionCall",
"src": "1800:53:5"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "1787:9:5",
"nodeType": "YulIdentifier",
"src": "1787:9:5"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "1717:142:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1757:5:5",
"nodeType": "YulTypedName",
"src": "1757:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "1767:9:5",
"nodeType": "YulTypedName",
"src": "1767:9:5",
"type": ""
}
],
"src": "1717:142:5"
},
{
"body": {
"nativeSrc": "1912:28:5",
"nodeType": "YulBlock",
"src": "1912:28:5",
"statements": [
{
"nativeSrc": "1922:12:5",
"nodeType": "YulAssignment",
"src": "1922:12:5",
"value": {
"name": "value",
"nativeSrc": "1929:5:5",
"nodeType": "YulIdentifier",
"src": "1929:5:5"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1922:3:5",
"nodeType": "YulIdentifier",
"src": "1922:3:5"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "1865:75:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1898:5:5",
"nodeType": "YulTypedName",
"src": "1898:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1908:3:5",
"nodeType": "YulTypedName",
"src": "1908:3:5",
"type": ""
}
],
"src": "1865:75:5"
},
{
"body": {
"nativeSrc": "2022:193:5",
"nodeType": "YulBlock",
"src": "2022:193:5",
"statements": [
{
"nativeSrc": "2032:63:5",
"nodeType": "YulVariableDeclaration",
"src": "2032:63:5",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "2087:7:5",
"nodeType": "YulIdentifier",
"src": "2087:7:5"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "2056:30:5",
"nodeType": "YulIdentifier",
"src": "2056:30:5"
},
"nativeSrc": "2056:39:5",
"nodeType": "YulFunctionCall",
"src": "2056:39:5"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "2036:16:5",
"nodeType": "YulTypedName",
"src": "2036:16:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2111:4:5",
"nodeType": "YulIdentifier",
"src": "2111:4:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "2151:4:5",
"nodeType": "YulIdentifier",
"src": "2151:4:5"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "2145:5:5",
"nodeType": "YulIdentifier",
"src": "2145:5:5"
},
"nativeSrc": "2145:11:5",
"nodeType": "YulFunctionCall",
"src": "2145:11:5"
},
{
"name": "offset",
"nativeSrc": "2158:6:5",
"nodeType": "YulIdentifier",
"src": "2158:6:5"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "2190:16:5",
"nodeType": "YulIdentifier",
"src": "2190:16:5"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "2166:23:5",
"nodeType": "YulIdentifier",
"src": "2166:23:5"
},
"nativeSrc": "2166:41:5",
"nodeType": "YulFunctionCall",
"src": "2166:41:5"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "2117:27:5",
"nodeType": "YulIdentifier",
"src": "2117:27:5"
},
"nativeSrc": "2117:91:5",
"nodeType": "YulFunctionCall",
"src": "2117:91:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "2104:6:5",
"nodeType": "YulIdentifier",
"src": "2104:6:5"
},
"nativeSrc": "2104:105:5",
"nodeType": "YulFunctionCall",
"src": "2104:105:5"
},
"nativeSrc": "2104:105:5",
"nodeType": "YulExpressionStatement",
"src": "2104:105:5"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "1946:269:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "1999:4:5",
"nodeType": "YulTypedName",
"src": "1999:4:5",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2005:6:5",
"nodeType": "YulTypedName",
"src": "2005:6:5",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "2013:7:5",
"nodeType": "YulTypedName",
"src": "2013:7:5",
"type": ""
}
],
"src": "1946:269:5"
},
{
"body": {
"nativeSrc": "2270:24:5",
"nodeType": "YulBlock",
"src": "2270:24:5",
"statements": [
{
"nativeSrc": "2280:8:5",
"nodeType": "YulAssignment",
"src": "2280:8:5",
"value": {
"kind": "number",
"nativeSrc": "2287:1:5",
"nodeType": "YulLiteral",
"src": "2287:1:5",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "2280:3:5",
"nodeType": "YulIdentifier",
"src": "2280:3:5"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2221:73:5",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "2266:3:5",
"nodeType": "YulTypedName",
"src": "2266:3:5",
"type": ""
}
],
"src": "2221:73:5"
},
{
"body": {
"nativeSrc": "2353:136:5",
"nodeType": "YulBlock",
"src": "2353:136:5",
"statements": [
{
"nativeSrc": "2363:46:5",
"nodeType": "YulVariableDeclaration",
"src": "2363:46:5",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2377:30:5",
"nodeType": "YulIdentifier",
"src": "2377:30:5"
},
"nativeSrc": "2377:32:5",
"nodeType": "YulFunctionCall",
"src": "2377:32:5"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "2367:6:5",
"nodeType": "YulTypedName",
"src": "2367:6:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2462:4:5",
"nodeType": "YulIdentifier",
"src": "2462:4:5"
},
{
"name": "offset",
"nativeSrc": "2468:6:5",
"nodeType": "YulIdentifier",
"src": "2468:6:5"
},
{
"name": "zero_0",
"nativeSrc": "2476:6:5",
"nodeType": "YulIdentifier",
"src": "2476:6:5"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "2418:43:5",
"nodeType": "YulIdentifier",
"src": "2418:43:5"
},
"nativeSrc": "2418:65:5",
"nodeType": "YulFunctionCall",
"src": "2418:65:5"
},
"nativeSrc": "2418:65:5",
"nodeType": "YulExpressionStatement",
"src": "2418:65:5"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2300:189:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "2339:4:5",
"nodeType": "YulTypedName",
"src": "2339:4:5",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2345:6:5",
"nodeType": "YulTypedName",
"src": "2345:6:5",
"type": ""
}
],
"src": "2300:189:5"
},
{
"body": {
"nativeSrc": "2545:136:5",
"nodeType": "YulBlock",
"src": "2545:136:5",
"statements": [
{
"body": {
"nativeSrc": "2612:63:5",
"nodeType": "YulBlock",
"src": "2612:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "2656:5:5",
"nodeType": "YulIdentifier",
"src": "2656:5:5"
},
{
"kind": "number",
"nativeSrc": "2663:1:5",
"nodeType": "YulLiteral",
"src": "2663:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2626:29:5",
"nodeType": "YulIdentifier",
"src": "2626:29:5"
},
"nativeSrc": "2626:39:5",
"nodeType": "YulFunctionCall",
"src": "2626:39:5"
},
"nativeSrc": "2626:39:5",
"nodeType": "YulExpressionStatement",
"src": "2626:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "2565:5:5",
"nodeType": "YulIdentifier",
"src": "2565:5:5"
},
{
"name": "end",
"nativeSrc": "2572:3:5",
"nodeType": "YulIdentifier",
"src": "2572:3:5"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2562:2:5",
"nodeType": "YulIdentifier",
"src": "2562:2:5"
},
"nativeSrc": "2562:14:5",
"nodeType": "YulFunctionCall",
"src": "2562:14:5"
},
"nativeSrc": "2555:120:5",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "2577:26:5",
"nodeType": "YulBlock",
"src": "2577:26:5",
"statements": [
{
"nativeSrc": "2579:22:5",
"nodeType": "YulAssignment",
"src": "2579:22:5",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "2592:5:5",
"nodeType": "YulIdentifier",
"src": "2592:5:5"
},
{
"kind": "number",
"nativeSrc": "2599:1:5",
"nodeType": "YulLiteral",
"src": "2599:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2588:3:5",
"nodeType": "YulIdentifier",
"src": "2588:3:5"
},
"nativeSrc": "2588:13:5",
"nodeType": "YulFunctionCall",
"src": "2588:13:5"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "2579:5:5",
"nodeType": "YulIdentifier",
"src": "2579:5:5"
}
]
}
]
},
"pre": {
"nativeSrc": "2559:2:5",
"nodeType": "YulBlock",
"src": "2559:2:5",
"statements": []
},
"src": "2555:120:5"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "2495:186:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "2533:5:5",
"nodeType": "YulTypedName",
"src": "2533:5:5",
"type": ""
},
{
"name": "end",
"nativeSrc": "2540:3:5",
"nodeType": "YulTypedName",
"src": "2540:3:5",
"type": ""
}
],
"src": "2495:186:5"
},
{
"body": {
"nativeSrc": "2766:464:5",
"nodeType": "YulBlock",
"src": "2766:464:5",
"statements": [
{
"body": {
"nativeSrc": "2792:431:5",
"nodeType": "YulBlock",
"src": "2792:431:5",
"statements": [
{
"nativeSrc": "2806:54:5",
"nodeType": "YulVariableDeclaration",
"src": "2806:54:5",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "2854:5:5",
"nodeType": "YulIdentifier",
"src": "2854:5:5"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "2822:31:5",
"nodeType": "YulIdentifier",
"src": "2822:31:5"
},
"nativeSrc": "2822:38:5",
"nodeType": "YulFunctionCall",
"src": "2822:38:5"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "2810:8:5",
"nodeType": "YulTypedName",
"src": "2810:8:5",
"type": ""
}
]
},
{
"nativeSrc": "2873:63:5",
"nodeType": "YulVariableDeclaration",
"src": "2873:63:5",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "2896:8:5",
"nodeType": "YulIdentifier",
"src": "2896:8:5"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "2924:10:5",
"nodeType": "YulIdentifier",
"src": "2924:10:5"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "2906:17:5",
"nodeType": "YulIdentifier",
"src": "2906:17:5"
},
"nativeSrc": "2906:29:5",
"nodeType": "YulFunctionCall",
"src": "2906:29:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2892:3:5",
"nodeType": "YulIdentifier",
"src": "2892:3:5"
},
"nativeSrc": "2892:44:5",
"nodeType": "YulFunctionCall",
"src": "2892:44:5"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "2877:11:5",
"nodeType": "YulTypedName",
"src": "2877:11:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3093:27:5",
"nodeType": "YulBlock",
"src": "3093:27:5",
"statements": [
{
"nativeSrc": "3095:23:5",
"nodeType": "YulAssignment",
"src": "3095:23:5",
"value": {
"name": "dataArea",
"nativeSrc": "3110:8:5",
"nodeType": "YulIdentifier",
"src": "3110:8:5"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "3095:11:5",
"nodeType": "YulIdentifier",
"src": "3095:11:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "3077:10:5",
"nodeType": "YulIdentifier",
"src": "3077:10:5"
},
{
"kind": "number",
"nativeSrc": "3089:2:5",
"nodeType": "YulLiteral",
"src": "3089:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "3074:2:5",
"nodeType": "YulIdentifier",
"src": "3074:2:5"
},
"nativeSrc": "3074:18:5",
"nodeType": "YulFunctionCall",
"src": "3074:18:5"
},
"nativeSrc": "3071:49:5",
"nodeType": "YulIf",
"src": "3071:49:5"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "3162:11:5",
"nodeType": "YulIdentifier",
"src": "3162:11:5"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "3179:8:5",
"nodeType": "YulIdentifier",
"src": "3179:8:5"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "3207:3:5",
"nodeType": "YulIdentifier",
"src": "3207:3:5"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "3189:17:5",
"nodeType": "YulIdentifier",
"src": "3189:17:5"
},
"nativeSrc": "3189:22:5",
"nodeType": "YulFunctionCall",
"src": "3189:22:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3175:3:5",
"nodeType": "YulIdentifier",
"src": "3175:3:5"
},
"nativeSrc": "3175:37:5",
"nodeType": "YulFunctionCall",
"src": "3175:37:5"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "3133:28:5",
"nodeType": "YulIdentifier",
"src": "3133:28:5"
},
"nativeSrc": "3133:80:5",
"nodeType": "YulFunctionCall",
"src": "3133:80:5"
},
"nativeSrc": "3133:80:5",
"nodeType": "YulExpressionStatement",
"src": "3133:80:5"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "2783:3:5",
"nodeType": "YulIdentifier",
"src": "2783:3:5"
},
{
"kind": "number",
"nativeSrc": "2788:2:5",
"nodeType": "YulLiteral",
"src": "2788:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2780:2:5",
"nodeType": "YulIdentifier",
"src": "2780:2:5"
},
"nativeSrc": "2780:11:5",
"nodeType": "YulFunctionCall",
"src": "2780:11:5"
},
"nativeSrc": "2777:446:5",
"nodeType": "YulIf",
"src": "2777:446:5"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "2687:543:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "2742:5:5",
"nodeType": "YulTypedName",
"src": "2742:5:5",
"type": ""
},
{
"name": "len",
"nativeSrc": "2749:3:5",
"nodeType": "YulTypedName",
"src": "2749:3:5",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "2754:10:5",
"nodeType": "YulTypedName",
"src": "2754:10:5",
"type": ""
}
],
"src": "2687:543:5"
},
{
"body": {
"nativeSrc": "3299:54:5",
"nodeType": "YulBlock",
"src": "3299:54:5",
"statements": [
{
"nativeSrc": "3309:37:5",
"nodeType": "YulAssignment",
"src": "3309:37:5",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "3334:4:5",
"nodeType": "YulIdentifier",
"src": "3334:4:5"
},
{
"name": "value",
"nativeSrc": "3340:5:5",
"nodeType": "YulIdentifier",
"src": "3340:5:5"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "3330:3:5",
"nodeType": "YulIdentifier",
"src": "3330:3:5"
},
"nativeSrc": "3330:16:5",
"nodeType": "YulFunctionCall",
"src": "3330:16:5"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "3309:8:5",
"nodeType": "YulIdentifier",
"src": "3309:8:5"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3236:117:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "3274:4:5",
"nodeType": "YulTypedName",
"src": "3274:4:5",
"type": ""
},
{
"name": "value",
"nativeSrc": "3280:5:5",
"nodeType": "YulTypedName",
"src": "3280:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "3290:8:5",
"nodeType": "YulTypedName",
"src": "3290:8:5",
"type": ""
}
],
"src": "3236:117:5"
},
{
"body": {
"nativeSrc": "3410:118:5",
"nodeType": "YulBlock",
"src": "3410:118:5",
"statements": [
{
"nativeSrc": "3420:68:5",
"nodeType": "YulVariableDeclaration",
"src": "3420:68:5",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3469:1:5",
"nodeType": "YulLiteral",
"src": "3469:1:5",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "3472:5:5",
"nodeType": "YulIdentifier",
"src": "3472:5:5"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3465:3:5",
"nodeType": "YulIdentifier",
"src": "3465:3:5"
},
"nativeSrc": "3465:13:5",
"nodeType": "YulFunctionCall",
"src": "3465:13:5"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3484:1:5",
"nodeType": "YulLiteral",
"src": "3484:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3480:3:5",
"nodeType": "YulIdentifier",
"src": "3480:3:5"
},
"nativeSrc": "3480:6:5",
"nodeType": "YulFunctionCall",
"src": "3480:6:5"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3436:28:5",
"nodeType": "YulIdentifier",
"src": "3436:28:5"
},
"nativeSrc": "3436:51:5",
"nodeType": "YulFunctionCall",
"src": "3436:51:5"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3432:3:5",
"nodeType": "YulIdentifier",
"src": "3432:3:5"
},
"nativeSrc": "3432:56:5",
"nodeType": "YulFunctionCall",
"src": "3432:56:5"
},
"variables": [
{
"name": "mask",
"nativeSrc": "3424:4:5",
"nodeType": "YulTypedName",
"src": "3424:4:5",
"type": ""
}
]
},
{
"nativeSrc": "3497:25:5",
"nodeType": "YulAssignment",
"src": "3497:25:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3511:4:5",
"nodeType": "YulIdentifier",
"src": "3511:4:5"
},
{
"name": "mask",
"nativeSrc": "3517:4:5",
"nodeType": "YulIdentifier",
"src": "3517:4:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "3507:3:5",
"nodeType": "YulIdentifier",
"src": "3507:3:5"
},
"nativeSrc": "3507:15:5",
"nodeType": "YulFunctionCall",
"src": "3507:15:5"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "3497:6:5",
"nodeType": "YulIdentifier",
"src": "3497:6:5"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "3359:169:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3387:4:5",
"nodeType": "YulTypedName",
"src": "3387:4:5",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "3393:5:5",
"nodeType": "YulTypedName",
"src": "3393:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "3403:6:5",
"nodeType": "YulTypedName",
"src": "3403:6:5",
"type": ""
}
],
"src": "3359:169:5"
},
{
"body": {
"nativeSrc": "3614:214:5",
"nodeType": "YulBlock",
"src": "3614:214:5",
"statements": [
{
"nativeSrc": "3747:37:5",
"nodeType": "YulAssignment",
"src": "3747:37:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3774:4:5",
"nodeType": "YulIdentifier",
"src": "3774:4:5"
},
{
"name": "len",
"nativeSrc": "3780:3:5",
"nodeType": "YulIdentifier",
"src": "3780:3:5"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "3755:18:5",
"nodeType": "YulIdentifier",
"src": "3755:18:5"
},
"nativeSrc": "3755:29:5",
"nodeType": "YulFunctionCall",
"src": "3755:29:5"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "3747:4:5",
"nodeType": "YulIdentifier",
"src": "3747:4:5"
}
]
},
{
"nativeSrc": "3793:29:5",
"nodeType": "YulAssignment",
"src": "3793:29:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3804:4:5",
"nodeType": "YulIdentifier",
"src": "3804:4:5"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3814:1:5",
"nodeType": "YulLiteral",
"src": "3814:1:5",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "3817:3:5",
"nodeType": "YulIdentifier",
"src": "3817:3:5"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3810:3:5",
"nodeType": "YulIdentifier",
"src": "3810:3:5"
},
"nativeSrc": "3810:11:5",
"nodeType": "YulFunctionCall",
"src": "3810:11:5"
}
],
"functionName": {
"name": "or",
"nativeSrc": "3801:2:5",
"nodeType": "YulIdentifier",
"src": "3801:2:5"
},
"nativeSrc": "3801:21:5",
"nodeType": "YulFunctionCall",
"src": "3801:21:5"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "3793:4:5",
"nodeType": "YulIdentifier",
"src": "3793:4:5"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "3533:295:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3595:4:5",
"nodeType": "YulTypedName",
"src": "3595:4:5",
"type": ""
},
{
"name": "len",
"nativeSrc": "3601:3:5",
"nodeType": "YulTypedName",
"src": "3601:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "3609:4:5",
"nodeType": "YulTypedName",
"src": "3609:4:5",
"type": ""
}
],
"src": "3533:295:5"
},
{
"body": {
"nativeSrc": "3925:1303:5",
"nodeType": "YulBlock",
"src": "3925:1303:5",
"statements": [
{
"nativeSrc": "3936:51:5",
"nodeType": "YulVariableDeclaration",
"src": "3936:51:5",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "3983:3:5",
"nodeType": "YulIdentifier",
"src": "3983:3:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "3950:32:5",
"nodeType": "YulIdentifier",
"src": "3950:32:5"
},
"nativeSrc": "3950:37:5",
"nodeType": "YulFunctionCall",
"src": "3950:37:5"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "3940:6:5",
"nodeType": "YulTypedName",
"src": "3940:6:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4072:22:5",
"nodeType": "YulBlock",
"src": "4072:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "4074:16:5",
"nodeType": "YulIdentifier",
"src": "4074:16:5"
},
"nativeSrc": "4074:18:5",
"nodeType": "YulFunctionCall",
"src": "4074:18:5"
},
"nativeSrc": "4074:18:5",
"nodeType": "YulExpressionStatement",
"src": "4074:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4044:6:5",
"nodeType": "YulIdentifier",
"src": "4044:6:5"
},
{
"kind": "number",
"nativeSrc": "4052:18:5",
"nodeType": "YulLiteral",
"src": "4052:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4041:2:5",
"nodeType": "YulIdentifier",
"src": "4041:2:5"
},
"nativeSrc": "4041:30:5",
"nodeType": "YulFunctionCall",
"src": "4041:30:5"
},
"nativeSrc": "4038:56:5",
"nodeType": "YulIf",
"src": "4038:56:5"
},
{
"nativeSrc": "4104:52:5",
"nodeType": "YulVariableDeclaration",
"src": "4104:52:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "4150:4:5",
"nodeType": "YulIdentifier",
"src": "4150:4:5"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "4144:5:5",
"nodeType": "YulIdentifier",
"src": "4144:5:5"
},
"nativeSrc": "4144:11:5",
"nodeType": "YulFunctionCall",
"src": "4144:11:5"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "4118:25:5",
"nodeType": "YulIdentifier",
"src": "4118:25:5"
},
"nativeSrc": "4118:38:5",
"nodeType": "YulFunctionCall",
"src": "4118:38:5"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "4108:6:5",
"nodeType": "YulTypedName",
"src": "4108:6:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4249:4:5",
"nodeType": "YulIdentifier",
"src": "4249:4:5"
},
{
"name": "oldLen",
"nativeSrc": "4255:6:5",
"nodeType": "YulIdentifier",
"src": "4255:6:5"
},
{
"name": "newLen",
"nativeSrc": "4263:6:5",
"nodeType": "YulIdentifier",
"src": "4263:6:5"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "4203:45:5",
"nodeType": "YulIdentifier",
"src": "4203:45:5"
},
"nativeSrc": "4203:67:5",
"nodeType": "YulFunctionCall",
"src": "4203:67:5"
},
"nativeSrc": "4203:67:5",
"nodeType": "YulExpressionStatement",
"src": "4203:67:5"
},
{
"nativeSrc": "4280:18:5",
"nodeType": "YulVariableDeclaration",
"src": "4280:18:5",
"value": {
"kind": "number",
"nativeSrc": "4297:1:5",
"nodeType": "YulLiteral",
"src": "4297:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "4284:9:5",
"nodeType": "YulTypedName",
"src": "4284:9:5",
"type": ""
}
]
},
{
"nativeSrc": "4308:17:5",
"nodeType": "YulAssignment",
"src": "4308:17:5",
"value": {
"kind": "number",
"nativeSrc": "4321:4:5",
"nodeType": "YulLiteral",
"src": "4321:4:5",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4308:9:5",
"nodeType": "YulIdentifier",
"src": "4308:9:5"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "4372:611:5",
"nodeType": "YulBlock",
"src": "4372:611:5",
"statements": [
{
"nativeSrc": "4386:37:5",
"nodeType": "YulVariableDeclaration",
"src": "4386:37:5",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4405:6:5",
"nodeType": "YulIdentifier",
"src": "4405:6:5"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "4417:4:5",
"nodeType": "YulLiteral",
"src": "4417:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "4413:3:5",
"nodeType": "YulIdentifier",
"src": "4413:3:5"
},
"nativeSrc": "4413:9:5",
"nodeType": "YulFunctionCall",
"src": "4413:9:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4401:3:5",
"nodeType": "YulIdentifier",
"src": "4401:3:5"
},
"nativeSrc": "4401:22:5",
"nodeType": "YulFunctionCall",
"src": "4401:22:5"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "4390:7:5",
"nodeType": "YulTypedName",
"src": "4390:7:5",
"type": ""
}
]
},
{
"nativeSrc": "4437:51:5",
"nodeType": "YulVariableDeclaration",
"src": "4437:51:5",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4483:4:5",
"nodeType": "YulIdentifier",
"src": "4483:4:5"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "4451:31:5",
"nodeType": "YulIdentifier",
"src": "4451:31:5"
},
"nativeSrc": "4451:37:5",
"nodeType": "YulFunctionCall",
"src": "4451:37:5"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "4441:6:5",
"nodeType": "YulTypedName",
"src": "4441:6:5",
"type": ""
}
]
},
{
"nativeSrc": "4501:10:5",
"nodeType": "YulVariableDeclaration",
"src": "4501:10:5",
"value": {
"kind": "number",
"nativeSrc": "4510:1:5",
"nodeType": "YulLiteral",
"src": "4510:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "4505:1:5",
"nodeType": "YulTypedName",
"src": "4505:1:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4569:163:5",
"nodeType": "YulBlock",
"src": "4569:163:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4594:6:5",
"nodeType": "YulIdentifier",
"src": "4594:6:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4612:3:5",
"nodeType": "YulIdentifier",
"src": "4612:3:5"
},
{
"name": "srcOffset",
"nativeSrc": "4617:9:5",
"nodeType": "YulIdentifier",
"src": "4617:9:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4608:3:5",
"nodeType": "YulIdentifier",
"src": "4608:3:5"
},
"nativeSrc": "4608:19:5",
"nodeType": "YulFunctionCall",
"src": "4608:19:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4602:5:5",
"nodeType": "YulIdentifier",
"src": "4602:5:5"
},
"nativeSrc": "4602:26:5",
"nodeType": "YulFunctionCall",
"src": "4602:26:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4587:6:5",
"nodeType": "YulIdentifier",
"src": "4587:6:5"
},
"nativeSrc": "4587:42:5",
"nodeType": "YulFunctionCall",
"src": "4587:42:5"
},
"nativeSrc": "4587:42:5",
"nodeType": "YulExpressionStatement",
"src": "4587:42:5"
},
{
"nativeSrc": "4646:24:5",
"nodeType": "YulAssignment",
"src": "4646:24:5",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4660:6:5",
"nodeType": "YulIdentifier",
"src": "4660:6:5"
},
{
"kind": "number",
"nativeSrc": "4668:1:5",
"nodeType": "YulLiteral",
"src": "4668:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4656:3:5",
"nodeType": "YulIdentifier",
"src": "4656:3:5"
},
"nativeSrc": "4656:14:5",
"nodeType": "YulFunctionCall",
"src": "4656:14:5"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "4646:6:5",
"nodeType": "YulIdentifier",
"src": "4646:6:5"
}
]
},
{
"nativeSrc": "4687:31:5",
"nodeType": "YulAssignment",
"src": "4687:31:5",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "4704:9:5",
"nodeType": "YulIdentifier",
"src": "4704:9:5"
},
{
"kind": "number",
"nativeSrc": "4715:2:5",
"nodeType": "YulLiteral",
"src": "4715:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4700:3:5",
"nodeType": "YulIdentifier",
"src": "4700:3:5"
},
"nativeSrc": "4700:18:5",
"nodeType": "YulFunctionCall",
"src": "4700:18:5"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4687:9:5",
"nodeType": "YulIdentifier",
"src": "4687:9:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "4535:1:5",
"nodeType": "YulIdentifier",
"src": "4535:1:5"
},
{
"name": "loopEnd",
"nativeSrc": "4538:7:5",
"nodeType": "YulIdentifier",
"src": "4538:7:5"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4532:2:5",
"nodeType": "YulIdentifier",
"src": "4532:2:5"
},
"nativeSrc": "4532:14:5",
"nodeType": "YulFunctionCall",
"src": "4532:14:5"
},
"nativeSrc": "4524:208:5",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "4547:21:5",
"nodeType": "YulBlock",
"src": "4547:21:5",
"statements": [
{
"nativeSrc": "4549:17:5",
"nodeType": "YulAssignment",
"src": "4549:17:5",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "4558:1:5",
"nodeType": "YulIdentifier",
"src": "4558:1:5"
},
{
"kind": "number",
"nativeSrc": "4561:4:5",
"nodeType": "YulLiteral",
"src": "4561:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4554:3:5",
"nodeType": "YulIdentifier",
"src": "4554:3:5"
},
"nativeSrc": "4554:12:5",
"nodeType": "YulFunctionCall",
"src": "4554:12:5"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "4549:1:5",
"nodeType": "YulIdentifier",
"src": "4549:1:5"
}
]
}
]
},
"pre": {
"nativeSrc": "4528:3:5",
"nodeType": "YulBlock",
"src": "4528:3:5",
"statements": []
},
"src": "4524:208:5"
},
{
"body": {
"nativeSrc": "4768:156:5",
"nodeType": "YulBlock",
"src": "4768:156:5",
"statements": [
{
"nativeSrc": "4786:43:5",
"nodeType": "YulVariableDeclaration",
"src": "4786:43:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4813:3:5",
"nodeType": "YulIdentifier",
"src": "4813:3:5"
},
{
"name": "srcOffset",
"nativeSrc": "4818:9:5",
"nodeType": "YulIdentifier",
"src": "4818:9:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4809:3:5",
"nodeType": "YulIdentifier",
"src": "4809:3:5"
},
"nativeSrc": "4809:19:5",
"nodeType": "YulFunctionCall",
"src": "4809:19:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4803:5:5",
"nodeType": "YulIdentifier",
"src": "4803:5:5"
},
"nativeSrc": "4803:26:5",
"nodeType": "YulFunctionCall",
"src": "4803:26:5"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "4790:9:5",
"nodeType": "YulTypedName",
"src": "4790:9:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4853:6:5",
"nodeType": "YulIdentifier",
"src": "4853:6:5"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "4880:9:5",
"nodeType": "YulIdentifier",
"src": "4880:9:5"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4895:6:5",
"nodeType": "YulIdentifier",
"src": "4895:6:5"
},
{
"kind": "number",
"nativeSrc": "4903:4:5",
"nodeType": "YulLiteral",
"src": "4903:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4891:3:5",
"nodeType": "YulIdentifier",
"src": "4891:3:5"
},
"nativeSrc": "4891:17:5",
"nodeType": "YulFunctionCall",
"src": "4891:17:5"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "4861:18:5",
"nodeType": "YulIdentifier",
"src": "4861:18:5"
},
"nativeSrc": "4861:48:5",
"nodeType": "YulFunctionCall",
"src": "4861:48:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4846:6:5",
"nodeType": "YulIdentifier",
"src": "4846:6:5"
},
"nativeSrc": "4846:64:5",
"nodeType": "YulFunctionCall",
"src": "4846:64:5"
},
"nativeSrc": "4846:64:5",
"nodeType": "YulExpressionStatement",
"src": "4846:64:5"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "4751:7:5",
"nodeType": "YulIdentifier",
"src": "4751:7:5"
},
{
"name": "newLen",
"nativeSrc": "4760:6:5",
"nodeType": "YulIdentifier",
"src": "4760:6:5"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4748:2:5",
"nodeType": "YulIdentifier",
"src": "4748:2:5"
},
"nativeSrc": "4748:19:5",
"nodeType": "YulFunctionCall",
"src": "4748:19:5"
},
"nativeSrc": "4745:179:5",
"nodeType": "YulIf",
"src": "4745:179:5"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4944:4:5",
"nodeType": "YulIdentifier",
"src": "4944:4:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4958:6:5",
"nodeType": "YulIdentifier",
"src": "4958:6:5"
},
{
"kind": "number",
"nativeSrc": "4966:1:5",
"nodeType": "YulLiteral",
"src": "4966:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "4954:3:5",
"nodeType": "YulIdentifier",
"src": "4954:3:5"
},
"nativeSrc": "4954:14:5",
"nodeType": "YulFunctionCall",
"src": "4954:14:5"
},
{
"kind": "number",
"nativeSrc": "4970:1:5",
"nodeType": "YulLiteral",
"src": "4970:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4950:3:5",
"nodeType": "YulIdentifier",
"src": "4950:3:5"
},
"nativeSrc": "4950:22:5",
"nodeType": "YulFunctionCall",
"src": "4950:22:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4937:6:5",
"nodeType": "YulIdentifier",
"src": "4937:6:5"
},
"nativeSrc": "4937:36:5",
"nodeType": "YulFunctionCall",
"src": "4937:36:5"
},
"nativeSrc": "4937:36:5",
"nodeType": "YulExpressionStatement",
"src": "4937:36:5"
}
]
},
"nativeSrc": "4365:618:5",
"nodeType": "YulCase",
"src": "4365:618:5",
"value": {
"kind": "number",
"nativeSrc": "4370:1:5",
"nodeType": "YulLiteral",
"src": "4370:1:5",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "5000:222:5",
"nodeType": "YulBlock",
"src": "5000:222:5",
"statements": [
{
"nativeSrc": "5014:14:5",
"nodeType": "YulVariableDeclaration",
"src": "5014:14:5",
"value": {
"kind": "number",
"nativeSrc": "5027:1:5",
"nodeType": "YulLiteral",
"src": "5027:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "5018:5:5",
"nodeType": "YulTypedName",
"src": "5018:5:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5051:67:5",
"nodeType": "YulBlock",
"src": "5051:67:5",
"statements": [
{
"nativeSrc": "5069:35:5",
"nodeType": "YulAssignment",
"src": "5069:35:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5088:3:5",
"nodeType": "YulIdentifier",
"src": "5088:3:5"
},
{
"name": "srcOffset",
"nativeSrc": "5093:9:5",
"nodeType": "YulIdentifier",
"src": "5093:9:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5084:3:5",
"nodeType": "YulIdentifier",
"src": "5084:3:5"
},
"nativeSrc": "5084:19:5",
"nodeType": "YulFunctionCall",
"src": "5084:19:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5078:5:5",
"nodeType": "YulIdentifier",
"src": "5078:5:5"
},
"nativeSrc": "5078:26:5",
"nodeType": "YulFunctionCall",
"src": "5078:26:5"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "5069:5:5",
"nodeType": "YulIdentifier",
"src": "5069:5:5"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "5044:6:5",
"nodeType": "YulIdentifier",
"src": "5044:6:5"
},
"nativeSrc": "5041:77:5",
"nodeType": "YulIf",
"src": "5041:77:5"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "5138:4:5",
"nodeType": "YulIdentifier",
"src": "5138:4:5"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5197:5:5",
"nodeType": "YulIdentifier",
"src": "5197:5:5"
},
{
"name": "newLen",
"nativeSrc": "5204:6:5",
"nodeType": "YulIdentifier",
"src": "5204:6:5"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "5144:52:5",
"nodeType": "YulIdentifier",
"src": "5144:52:5"
},
"nativeSrc": "5144:67:5",
"nodeType": "YulFunctionCall",
"src": "5144:67:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "5131:6:5",
"nodeType": "YulIdentifier",
"src": "5131:6:5"
},
"nativeSrc": "5131:81:5",
"nodeType": "YulFunctionCall",
"src": "5131:81:5"
},
"nativeSrc": "5131:81:5",
"nodeType": "YulExpressionStatement",
"src": "5131:81:5"
}
]
},
"nativeSrc": "4992:230:5",
"nodeType": "YulCase",
"src": "4992:230:5",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4345:6:5",
"nodeType": "YulIdentifier",
"src": "4345:6:5"
},
{
"kind": "number",
"nativeSrc": "4353:2:5",
"nodeType": "YulLiteral",
"src": "4353:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4342:2:5",
"nodeType": "YulIdentifier",
"src": "4342:2:5"
},
"nativeSrc": "4342:14:5",
"nodeType": "YulFunctionCall",
"src": "4342:14:5"
},
"nativeSrc": "4335:887:5",
"nodeType": "YulSwitch",
"src": "4335:887:5"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "3833:1395:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "3914:4:5",
"nodeType": "YulTypedName",
"src": "3914:4:5",
"type": ""
},
{
"name": "src",
"nativeSrc": "3920:3:5",
"nodeType": "YulTypedName",
"src": "3920:3:5",
"type": ""
}
],
"src": "3833:1395:5"
},
{
"body": {
"nativeSrc": "5330:73:5",
"nodeType": "YulBlock",
"src": "5330:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5347:3:5",
"nodeType": "YulIdentifier",
"src": "5347:3:5"
},
{
"name": "length",
"nativeSrc": "5352:6:5",
"nodeType": "YulIdentifier",
"src": "5352:6:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5340:6:5",
"nodeType": "YulIdentifier",
"src": "5340:6:5"
},
"nativeSrc": "5340:19:5",
"nodeType": "YulFunctionCall",
"src": "5340:19:5"
},
"nativeSrc": "5340:19:5",
"nodeType": "YulExpressionStatement",
"src": "5340:19:5"
},
{
"nativeSrc": "5368:29:5",
"nodeType": "YulAssignment",
"src": "5368:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5387:3:5",
"nodeType": "YulIdentifier",
"src": "5387:3:5"
},
{
"kind": "number",
"nativeSrc": "5392:4:5",
"nodeType": "YulLiteral",
"src": "5392:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5383:3:5",
"nodeType": "YulIdentifier",
"src": "5383:3:5"
},
"nativeSrc": "5383:14:5",
"nodeType": "YulFunctionCall",
"src": "5383:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "5368:11:5",
"nodeType": "YulIdentifier",
"src": "5368:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5234:169:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "5302:3:5",
"nodeType": "YulTypedName",
"src": "5302:3:5",
"type": ""
},
{
"name": "length",
"nativeSrc": "5307:6:5",
"nodeType": "YulTypedName",
"src": "5307:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "5318:11:5",
"nodeType": "YulTypedName",
"src": "5318:11:5",
"type": ""
}
],
"src": "5234:169:5"
},
{
"body": {
"nativeSrc": "5515:75:5",
"nodeType": "YulBlock",
"src": "5515:75:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "5537:6:5",
"nodeType": "YulIdentifier",
"src": "5537:6:5"
},
{
"kind": "number",
"nativeSrc": "5545:1:5",
"nodeType": "YulLiteral",
"src": "5545:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5533:3:5",
"nodeType": "YulIdentifier",
"src": "5533:3:5"
},
"nativeSrc": "5533:14:5",
"nodeType": "YulFunctionCall",
"src": "5533:14:5"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nativeSrc": "5549:33:5",
"nodeType": "YulLiteral",
"src": "5549:33:5",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5526:6:5",
"nodeType": "YulIdentifier",
"src": "5526:6:5"
},
"nativeSrc": "5526:57:5",
"nodeType": "YulFunctionCall",
"src": "5526:57:5"
},
"nativeSrc": "5526:57:5",
"nodeType": "YulExpressionStatement",
"src": "5526:57:5"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nativeSrc": "5409:181:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "5507:6:5",
"nodeType": "YulTypedName",
"src": "5507:6:5",
"type": ""
}
],
"src": "5409:181:5"
},
{
"body": {
"nativeSrc": "5742:220:5",
"nodeType": "YulBlock",
"src": "5742:220:5",
"statements": [
{
"nativeSrc": "5752:74:5",
"nodeType": "YulAssignment",
"src": "5752:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5818:3:5",
"nodeType": "YulIdentifier",
"src": "5818:3:5"
},
{
"kind": "number",
"nativeSrc": "5823:2:5",
"nodeType": "YulLiteral",
"src": "5823:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5759:58:5",
"nodeType": "YulIdentifier",
"src": "5759:58:5"
},
"nativeSrc": "5759:67:5",
"nodeType": "YulFunctionCall",
"src": "5759:67:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "5752:3:5",
"nodeType": "YulIdentifier",
"src": "5752:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5924:3:5",
"nodeType": "YulIdentifier",
"src": "5924:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nativeSrc": "5835:88:5",
"nodeType": "YulIdentifier",
"src": "5835:88:5"
},
"nativeSrc": "5835:93:5",
"nodeType": "YulFunctionCall",
"src": "5835:93:5"
},
"nativeSrc": "5835:93:5",
"nodeType": "YulExpressionStatement",
"src": "5835:93:5"
},
{
"nativeSrc": "5937:19:5",
"nodeType": "YulAssignment",
"src": "5937:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5948:3:5",
"nodeType": "YulIdentifier",
"src": "5948:3:5"
},
{
"kind": "number",
"nativeSrc": "5953:2:5",
"nodeType": "YulLiteral",
"src": "5953:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5944:3:5",
"nodeType": "YulIdentifier",
"src": "5944:3:5"
},
"nativeSrc": "5944:12:5",
"nodeType": "YulFunctionCall",
"src": "5944:12:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "5937:3:5",
"nodeType": "YulIdentifier",
"src": "5937:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5596:366:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "5730:3:5",
"nodeType": "YulTypedName",
"src": "5730:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "5738:3:5",
"nodeType": "YulTypedName",
"src": "5738:3:5",
"type": ""
}
],
"src": "5596:366:5"
},
{
"body": {
"nativeSrc": "6139:248:5",
"nodeType": "YulBlock",
"src": "6139:248:5",
"statements": [
{
"nativeSrc": "6149:26:5",
"nodeType": "YulAssignment",
"src": "6149:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "6161:9:5",
"nodeType": "YulIdentifier",
"src": "6161:9:5"
},
{
"kind": "number",
"nativeSrc": "6172:2:5",
"nodeType": "YulLiteral",
"src": "6172:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6157:3:5",
"nodeType": "YulIdentifier",
"src": "6157:3:5"
},
"nativeSrc": "6157:18:5",
"nodeType": "YulFunctionCall",
"src": "6157:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6149:4:5",
"nodeType": "YulIdentifier",
"src": "6149:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6196:9:5",
"nodeType": "YulIdentifier",
"src": "6196:9:5"
},
{
"kind": "number",
"nativeSrc": "6207:1:5",
"nodeType": "YulLiteral",
"src": "6207:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6192:3:5",
"nodeType": "YulIdentifier",
"src": "6192:3:5"
},
"nativeSrc": "6192:17:5",
"nodeType": "YulFunctionCall",
"src": "6192:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "6215:4:5",
"nodeType": "YulIdentifier",
"src": "6215:4:5"
},
{
"name": "headStart",
"nativeSrc": "6221:9:5",
"nodeType": "YulIdentifier",
"src": "6221:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "6211:3:5",
"nodeType": "YulIdentifier",
"src": "6211:3:5"
},
"nativeSrc": "6211:20:5",
"nodeType": "YulFunctionCall",
"src": "6211:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6185:6:5",
"nodeType": "YulIdentifier",
"src": "6185:6:5"
},
"nativeSrc": "6185:47:5",
"nodeType": "YulFunctionCall",
"src": "6185:47:5"
},
"nativeSrc": "6185:47:5",
"nodeType": "YulExpressionStatement",
"src": "6185:47:5"
},
{
"nativeSrc": "6241:139:5",
"nodeType": "YulAssignment",
"src": "6241:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "6375:4:5",
"nodeType": "YulIdentifier",
"src": "6375:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6249:124:5",
"nodeType": "YulIdentifier",
"src": "6249:124:5"
},
"nativeSrc": "6249:131:5",
"nodeType": "YulFunctionCall",
"src": "6249:131:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6241:4:5",
"nodeType": "YulIdentifier",
"src": "6241:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "5968:419:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6119:9:5",
"nodeType": "YulTypedName",
"src": "6119:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "6134:4:5",
"nodeType": "YulTypedName",
"src": "6134:4:5",
"type": ""
}
],
"src": "5968:419:5"
},
{
"body": {
"nativeSrc": "6421:152:5",
"nodeType": "YulBlock",
"src": "6421:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6438:1:5",
"nodeType": "YulLiteral",
"src": "6438:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6441:77:5",
"nodeType": "YulLiteral",
"src": "6441:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6431:6:5",
"nodeType": "YulIdentifier",
"src": "6431:6:5"
},
"nativeSrc": "6431:88:5",
"nodeType": "YulFunctionCall",
"src": "6431:88:5"
},
"nativeSrc": "6431:88:5",
"nodeType": "YulExpressionStatement",
"src": "6431:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6535:1:5",
"nodeType": "YulLiteral",
"src": "6535:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "6538:4:5",
"nodeType": "YulLiteral",
"src": "6538:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6528:6:5",
"nodeType": "YulIdentifier",
"src": "6528:6:5"
},
"nativeSrc": "6528:15:5",
"nodeType": "YulFunctionCall",
"src": "6528:15:5"
},
"nativeSrc": "6528:15:5",
"nodeType": "YulExpressionStatement",
"src": "6528:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6559:1:5",
"nodeType": "YulLiteral",
"src": "6559:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6562:4:5",
"nodeType": "YulLiteral",
"src": "6562:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6552:6:5",
"nodeType": "YulIdentifier",
"src": "6552:6:5"
},
"nativeSrc": "6552:15:5",
"nodeType": "YulFunctionCall",
"src": "6552:15:5"
},
"nativeSrc": "6552:15:5",
"nodeType": "YulExpressionStatement",
"src": "6552:15:5"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "6393:180:5",
"nodeType": "YulFunctionDefinition",
"src": "6393:180:5"
},
{
"body": {
"nativeSrc": "6623:147:5",
"nodeType": "YulBlock",
"src": "6623:147:5",
"statements": [
{
"nativeSrc": "6633:25:5",
"nodeType": "YulAssignment",
"src": "6633:25:5",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6656:1:5",
"nodeType": "YulIdentifier",
"src": "6656:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6638:17:5",
"nodeType": "YulIdentifier",
"src": "6638:17:5"
},
"nativeSrc": "6638:20:5",
"nodeType": "YulFunctionCall",
"src": "6638:20:5"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "6633:1:5",
"nodeType": "YulIdentifier",
"src": "6633:1:5"
}
]
},
{
"nativeSrc": "6667:25:5",
"nodeType": "YulAssignment",
"src": "6667:25:5",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "6690:1:5",
"nodeType": "YulIdentifier",
"src": "6690:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6672:17:5",
"nodeType": "YulIdentifier",
"src": "6672:17:5"
},
"nativeSrc": "6672:20:5",
"nodeType": "YulFunctionCall",
"src": "6672:20:5"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "6667:1:5",
"nodeType": "YulIdentifier",
"src": "6667:1:5"
}
]
},
{
"nativeSrc": "6701:16:5",
"nodeType": "YulAssignment",
"src": "6701:16:5",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6712:1:5",
"nodeType": "YulIdentifier",
"src": "6712:1:5"
},
{
"name": "y",
"nativeSrc": "6715:1:5",
"nodeType": "YulIdentifier",
"src": "6715:1:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6708:3:5",
"nodeType": "YulIdentifier",
"src": "6708:3:5"
},
"nativeSrc": "6708:9:5",
"nodeType": "YulFunctionCall",
"src": "6708:9:5"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "6701:3:5",
"nodeType": "YulIdentifier",
"src": "6701:3:5"
}
]
},
{
"body": {
"nativeSrc": "6741:22:5",
"nodeType": "YulBlock",
"src": "6741:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "6743:16:5",
"nodeType": "YulIdentifier",
"src": "6743:16:5"
},
"nativeSrc": "6743:18:5",
"nodeType": "YulFunctionCall",
"src": "6743:18:5"
},
"nativeSrc": "6743:18:5",
"nodeType": "YulExpressionStatement",
"src": "6743:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "6733:1:5",
"nodeType": "YulIdentifier",
"src": "6733:1:5"
},
{
"name": "sum",
"nativeSrc": "6736:3:5",
"nodeType": "YulIdentifier",
"src": "6736:3:5"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "6730:2:5",
"nodeType": "YulIdentifier",
"src": "6730:2:5"
},
"nativeSrc": "6730:10:5",
"nodeType": "YulFunctionCall",
"src": "6730:10:5"
},
"nativeSrc": "6727:36:5",
"nodeType": "YulIf",
"src": "6727:36:5"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "6579:191:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "6610:1:5",
"nodeType": "YulTypedName",
"src": "6610:1:5",
"type": ""
},
{
"name": "y",
"nativeSrc": "6613:1:5",
"nodeType": "YulTypedName",
"src": "6613:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "6619:3:5",
"nodeType": "YulTypedName",
"src": "6619:3:5",
"type": ""
}
],
"src": "6579:191:5"
},
{
"body": {
"nativeSrc": "6841:53:5",
"nodeType": "YulBlock",
"src": "6841:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6858:3:5",
"nodeType": "YulIdentifier",
"src": "6858:3:5"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6881:5:5",
"nodeType": "YulIdentifier",
"src": "6881:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6863:17:5",
"nodeType": "YulIdentifier",
"src": "6863:17:5"
},
"nativeSrc": "6863:24:5",
"nodeType": "YulFunctionCall",
"src": "6863:24:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6851:6:5",
"nodeType": "YulIdentifier",
"src": "6851:6:5"
},
"nativeSrc": "6851:37:5",
"nodeType": "YulFunctionCall",
"src": "6851:37:5"
},
"nativeSrc": "6851:37:5",
"nodeType": "YulExpressionStatement",
"src": "6851:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6776:118:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6829:5:5",
"nodeType": "YulTypedName",
"src": "6829:5:5",
"type": ""
},
{
"name": "pos",
"nativeSrc": "6836:3:5",
"nodeType": "YulTypedName",
"src": "6836:3:5",
"type": ""
}
],
"src": "6776:118:5"
},
{
"body": {
"nativeSrc": "6998:124:5",
"nodeType": "YulBlock",
"src": "6998:124:5",
"statements": [
{
"nativeSrc": "7008:26:5",
"nodeType": "YulAssignment",
"src": "7008:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7020:9:5",
"nodeType": "YulIdentifier",
"src": "7020:9:5"
},
{
"kind": "number",
"nativeSrc": "7031:2:5",
"nodeType": "YulLiteral",
"src": "7031:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7016:3:5",
"nodeType": "YulIdentifier",
"src": "7016:3:5"
},
"nativeSrc": "7016:18:5",
"nodeType": "YulFunctionCall",
"src": "7016:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7008:4:5",
"nodeType": "YulIdentifier",
"src": "7008:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "7088:6:5",
"nodeType": "YulIdentifier",
"src": "7088:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7101:9:5",
"nodeType": "YulIdentifier",
"src": "7101:9:5"
},
{
"kind": "number",
"nativeSrc": "7112:1:5",
"nodeType": "YulLiteral",
"src": "7112:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7097:3:5",
"nodeType": "YulIdentifier",
"src": "7097:3:5"
},
"nativeSrc": "7097:17:5",
"nodeType": "YulFunctionCall",
"src": "7097:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "7044:43:5",
"nodeType": "YulIdentifier",
"src": "7044:43:5"
},
"nativeSrc": "7044:71:5",
"nodeType": "YulFunctionCall",
"src": "7044:71:5"
},
"nativeSrc": "7044:71:5",
"nodeType": "YulExpressionStatement",
"src": "7044:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "6900:222:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6970:9:5",
"nodeType": "YulTypedName",
"src": "6970:9:5",
"type": ""
},
{
"name": "value0",
"nativeSrc": "6982:6:5",
"nodeType": "YulTypedName",
"src": "6982:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "6993:4:5",
"nodeType": "YulTypedName",
"src": "6993:4:5",
"type": ""
}
],
"src": "6900:222:5"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\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 extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function 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 store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\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 store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(pos)\n end := add(pos, 32)\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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600581526020017f42415345440000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f424153454400000000000000000000000000000000000000000000000000000081525081600390816200008f9190620004b9565b508060049081620000a19190620004b9565b505050620000c2336b204fce5e3e25026110000000620000c860201b60201c565b620006bb565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000601565b60405180910390fd5b6200014e600083836200023560201b60201c565b806002600082825462000162919062000652565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200021591906200069e565b60405180910390a362000231600083836200023a60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c157607f821691505b602082108103620002d757620002d662000279565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000302565b6200034d868362000302565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200039a620003946200038e8462000365565b6200036f565b62000365565b9050919050565b6000819050919050565b620003b68362000379565b620003ce620003c582620003a1565b8484546200030f565b825550505050565b600090565b620003e5620003d6565b620003f2818484620003ab565b505050565b5b818110156200041a576200040e600082620003db565b600181019050620003f8565b5050565b601f82111562000469576200043381620002dd565b6200043e84620002f2565b810160208510156200044e578190505b620004666200045d85620002f2565b830182620003f7565b50505b505050565b600082821c905092915050565b60006200048e600019846008026200046e565b1980831691505092915050565b6000620004a983836200047b565b9150826002028217905092915050565b620004c4826200023f565b67ffffffffffffffff811115620004e057620004df6200024a565b5b620004ec8254620002a8565b620004f98282856200041e565b600060209050601f8311600181146200053157600084156200051c578287015190505b6200052885826200049b565b86555062000598565b601f1984166200054186620002dd565b60005b828110156200056b5784890151825560018201915060208501945060208101905062000544565b868310156200058b578489015162000587601f8916826200047b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005e9601f83620005a0565b9150620005f682620005b1565b602082019050919050565b600060208201905081810360008301526200061c81620005da565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200065f8262000365565b91506200066c8362000365565b925082820190508082111562000687576200068662000623565b5b92915050565b620006988162000365565b82525050565b6000602082019050620006b560008301846200068d565b92915050565b61122f80620006cb6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b0c565b60405180910390f35b6100e660048036038101906100e19190610bc7565b610308565b6040516100f39190610c22565b60405180910390f35b61010461032b565b6040516101119190610c4c565b60405180910390f35b610134600480360381019061012f9190610c67565b610335565b6040516101419190610c22565b60405180910390f35b610152610364565b60405161015f9190610cd6565b60405180910390f35b610182600480360381019061017d9190610bc7565b61036d565b60405161018f9190610c22565b60405180910390f35b6101b260048036038101906101ad9190610cf1565b6103a4565b6040516101bf9190610c4c565b60405180910390f35b6101d06103ec565b6040516101dd9190610b0c565b60405180910390f35b61020060048036038101906101fb9190610bc7565b61047e565b60405161020d9190610c22565b60405180910390f35b610230600480360381019061022b9190610bc7565b6104f5565b60405161023d9190610c22565b60405180910390f35b610260600480360381019061025b9190610d1e565b610518565b60405161026d9190610c4c565b60405180910390f35b60606003805461028590610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d8d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610770565b6103588585856107fc565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610ded565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d8d565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d8d565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e93565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d90610f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90610fb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107639190610c4c565b60405180910390a3505050565b600061077c8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f657818110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611023565b60405180910390fd5b6107f584848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906110b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611147565b60405180910390fd5b6108e5838383610a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610962906111d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a599190610c4c565b60405180910390a3610a6c848484610a77565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ab6578082015181840152602081019050610a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ade82610a7c565b610ae88185610a87565b9350610af8818560208601610a98565b610b0181610ac2565b840191505092915050565b60006020820190508181036000830152610b268184610ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b5e82610b33565b9050919050565b610b6e81610b53565b8114610b7957600080fd5b50565b600081359050610b8b81610b65565b92915050565b6000819050919050565b610ba481610b91565b8114610baf57600080fd5b50565b600081359050610bc181610b9b565b92915050565b60008060408385031215610bde57610bdd610b2e565b5b6000610bec85828601610b7c565b9250506020610bfd85828601610bb2565b9150509250929050565b60008115159050919050565b610c1c81610c07565b82525050565b6000602082019050610c376000830184610c13565b92915050565b610c4681610b91565b82525050565b6000602082019050610c616000830184610c3d565b92915050565b600080600060608486031215610c8057610c7f610b2e565b5b6000610c8e86828701610b7c565b9350506020610c9f86828701610b7c565b9250506040610cb086828701610bb2565b9150509250925092565b600060ff82169050919050565b610cd081610cba565b82525050565b6000602082019050610ceb6000830184610cc7565b92915050565b600060208284031215610d0757610d06610b2e565b5b6000610d1584828501610b7c565b91505092915050565b60008060408385031215610d3557610d34610b2e565b5b6000610d4385828601610b7c565b9250506020610d5485828601610b7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610da557607f821691505b602082108103610db857610db7610d5e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df882610b91565b9150610e0383610b91565b9250828201905080821115610e1b57610e1a610dbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610e7d602583610a87565b9150610e8882610e21565b604082019050919050565b60006020820190508181036000830152610eac81610e70565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f0f602483610a87565b9150610f1a82610eb3565b604082019050919050565b60006020820190508181036000830152610f3e81610f02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fa1602283610a87565b9150610fac82610f45565b604082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061100d601d83610a87565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061109f602583610a87565b91506110aa82611043565b604082019050919050565b600060208201905081810360008301526110ce81611092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611131602383610a87565b915061113c826110d5565b604082019050919050565b6000602082019050818103600083015261116081611124565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111c3602683610a87565b91506111ce82611167565b604082019050919050565b600060208201905081810360008301526111f2816111b6565b905091905056fea26469706673582212207412e721ac2f05d2c622d2c09220cb7d7ffd21e4bd19d26b3136ce85751f4d5a64736f6c63430008150033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4241534544000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4241534544000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x4B9 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x4B9 JUMP JUMPDEST POP POP POP PUSH3 0xC2 CALLER PUSH12 0x204FCE5E3E25026110000000 PUSH3 0xC8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x6BB JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH3 0x13A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x131 SWAP1 PUSH3 0x601 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x14E PUSH1 0x0 DUP4 DUP4 PUSH3 0x235 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x162 SWAP2 SWAP1 PUSH3 0x652 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x215 SWAP2 SWAP1 PUSH3 0x69E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x231 PUSH1 0x0 DUP4 DUP4 PUSH3 0x23A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 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 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2C1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2D7 JUMPI PUSH3 0x2D6 PUSH3 0x279 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x341 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x302 JUMP JUMPDEST PUSH3 0x34D DUP7 DUP4 PUSH3 0x302 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x39A PUSH3 0x394 PUSH3 0x38E DUP5 PUSH3 0x365 JUMP JUMPDEST PUSH3 0x36F JUMP JUMPDEST PUSH3 0x365 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3B6 DUP4 PUSH3 0x379 JUMP JUMPDEST PUSH3 0x3CE PUSH3 0x3C5 DUP3 PUSH3 0x3A1 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x30F JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x3E5 PUSH3 0x3D6 JUMP JUMPDEST PUSH3 0x3F2 DUP2 DUP5 DUP5 PUSH3 0x3AB JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x41A JUMPI PUSH3 0x40E PUSH1 0x0 DUP3 PUSH3 0x3DB JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x3F8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x469 JUMPI PUSH3 0x433 DUP2 PUSH3 0x2DD JUMP JUMPDEST PUSH3 0x43E DUP5 PUSH3 0x2F2 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x44E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x466 PUSH3 0x45D DUP6 PUSH3 0x2F2 JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x3F7 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x48E PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x46E JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4A9 DUP4 DUP4 PUSH3 0x47B JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4C4 DUP3 PUSH3 0x23F JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4E0 JUMPI PUSH3 0x4DF PUSH3 0x24A JUMP JUMPDEST JUMPDEST PUSH3 0x4EC DUP3 SLOAD PUSH3 0x2A8 JUMP JUMPDEST PUSH3 0x4F9 DUP3 DUP3 DUP6 PUSH3 0x41E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x531 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x51C JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x528 DUP6 DUP3 PUSH3 0x49B JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x598 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x541 DUP7 PUSH3 0x2DD JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x56B JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x544 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x58B JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x587 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x47B JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x5E9 PUSH1 0x1F DUP4 PUSH3 0x5A0 JUMP JUMPDEST SWAP2 POP PUSH3 0x5F6 DUP3 PUSH3 0x5B1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x61C DUP2 PUSH3 0x5DA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x65F DUP3 PUSH3 0x365 JUMP JUMPDEST SWAP2 POP PUSH3 0x66C DUP4 PUSH3 0x365 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH3 0x687 JUMPI PUSH3 0x686 PUSH3 0x623 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x698 DUP2 PUSH3 0x365 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x6B5 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x68D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x122F DUP1 PUSH3 0x6CB 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 0xB0C 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 0xBC7 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xC22 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 0xC4C 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 0xC67 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xC22 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 0xCD6 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 0xBC7 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xC22 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 0xCF1 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xC4C 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 0xB0C 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 0xBC7 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xC22 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 0xBC7 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xC22 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 0xD1E JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xD8D 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 0xD8D 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 0x770 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FC 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 0xDED 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 0xD8D 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 0xD8D 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 0xE93 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 0x7FC 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 SUB PUSH2 0x616 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60D SWAP1 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x685 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67C SWAP1 PUSH2 0xFB7 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 0x763 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77C DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F6 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DF SWAP1 PUSH2 0x1023 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F5 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 SUB PUSH2 0x86B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x862 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D1 SWAP1 PUSH2 0x1147 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E5 DUP4 DUP4 DUP4 PUSH2 0xA72 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 0x96B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x962 SWAP1 PUSH2 0x11D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA59 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA6C DUP5 DUP5 DUP5 PUSH2 0xA77 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAB6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA9B JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADE DUP3 PUSH2 0xA7C JUMP JUMPDEST PUSH2 0xAE8 DUP2 DUP6 PUSH2 0xA87 JUMP JUMPDEST SWAP4 POP PUSH2 0xAF8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA98 JUMP JUMPDEST PUSH2 0xB01 DUP2 PUSH2 0xAC2 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xB26 DUP2 DUP5 PUSH2 0xAD3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB5E DUP3 PUSH2 0xB33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB6E DUP2 PUSH2 0xB53 JUMP JUMPDEST DUP2 EQ PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB8B DUP2 PUSH2 0xB65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA4 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP2 EQ PUSH2 0xBAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBC1 DUP2 PUSH2 0xB9B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDE JUMPI PUSH2 0xBDD PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBEC DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBFD DUP6 DUP3 DUP7 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC1C DUP2 PUSH2 0xC07 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC37 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC13 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC46 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC61 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC80 JUMPI PUSH2 0xC7F PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC8E DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC9F DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCB0 DUP7 DUP3 DUP8 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCD0 DUP2 PUSH2 0xCBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCEB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCC7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD07 JUMPI PUSH2 0xD06 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD15 DUP5 DUP3 DUP6 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD35 JUMPI PUSH2 0xD34 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD43 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD54 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDA5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xDB8 JUMPI PUSH2 0xDB7 PUSH2 0xD5E 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 PUSH1 0x0 PUSH2 0xDF8 DUP3 PUSH2 0xB91 JUMP JUMPDEST SWAP2 POP PUSH2 0xE03 DUP4 PUSH2 0xB91 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xE1B JUMPI PUSH2 0xE1A PUSH2 0xDBE JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE7D PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xE88 DUP3 PUSH2 0xE21 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEAC DUP2 PUSH2 0xE70 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F PUSH1 0x24 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xF1A DUP3 PUSH2 0xEB3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF3E DUP2 PUSH2 0xF02 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFA1 PUSH1 0x22 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xFAC DUP3 PUSH2 0xF45 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFD0 DUP2 PUSH2 0xF94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100D PUSH1 0x1D DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x1018 DUP3 PUSH2 0xFD7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x103C DUP2 PUSH2 0x1000 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109F PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1043 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10CE DUP2 PUSH2 0x1092 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1131 PUSH1 0x23 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x113C DUP3 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1160 DUP2 PUSH2 0x1124 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C3 PUSH1 0x26 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x11CE DUP3 PUSH2 0x1167 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11F2 DUP2 PUSH2 0x11B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH21 0x12E721AC2F05D2C622D2C09220CB7D7FFD21E4BD19 0xD2 PUSH12 0x3136CE85751F4D5A64736F6C PUSH4 0x43000815 STOP CALLER ",
"sourceMap": "114:131:4:-:0;;;149:94;;;;;;;;;;1980:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2054:5;2046;:13;;;;;;:::i;:::-;;2079:7;2069;:17;;;;;;:::i;:::-;;1980:113;;197:39:4::1;203:10;215:20;197:5;;;:39;;:::i;:::-;114:131:::0;;8520:535:0;8622:1;8603:21;;:7;:21;;;8595:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8671:49;8700:1;8704:7;8713:6;8671:20;;;:49;;:::i;:::-;8747:6;8731:12;;:22;;;;;;;:::i;:::-;;;;;;;;8921:6;8899:9;:18;8909:7;8899:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;8973:7;8952:37;;8969:1;8952:37;;;8982:6;8952:37;;;;;;:::i;:::-;;;;;;;;9000:48;9028:1;9032:7;9041:6;9000:19;;;:48;;:::i;:::-;8520:535;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;5234:169::-;5318:11;5352:6;5347:3;5340:19;5392:4;5387:3;5383:14;5368:29;;5234:169;;;;:::o;5409:181::-;5549:33;5545:1;5537:6;5533:14;5526:57;5409:181;:::o;5596:366::-;5738:3;5759:67;5823:2;5818:3;5759:67;:::i;:::-;5752:74;;5835:93;5924:3;5835:93;:::i;:::-;5953:2;5948:3;5944:12;5937:19;;5596:366;;;:::o;5968:419::-;6134:4;6172:2;6161:9;6157:18;6149:26;;6221:9;6215:4;6211:20;6207:1;6196:9;6192:17;6185:47;6249:131;6375:4;6249:131;:::i;:::-;6241:139;;5968:419;;;:::o;6393:180::-;6441:77;6438:1;6431:88;6538:4;6535:1;6528:15;6562:4;6559:1;6552:15;6579:191;6619:3;6638:20;6656:1;6638:20;:::i;:::-;6633:25;;6672:20;6690:1;6672:20;:::i;:::-;6667:25;;6715:1;6712;6708:9;6701:16;;6736:3;6733:1;6730:10;6727:36;;;6743:18;;:::i;:::-;6727:36;6579:191;;;;:::o;6776:118::-;6863:24;6881:5;6863:24;:::i;:::-;6858:3;6851:37;6776:118;;:::o;6900:222::-;6993:4;7031:2;7020:9;7016:18;7008:26;;7044:71;7112:1;7101:9;7097:17;7088:6;7044:71;:::i;:::-;6900:222;;;;:::o;114:131:4:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_585": {
"entryPoint": 2679,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_520": {
"entryPoint": 1447,
"id": 520,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 2674,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_701": {
"entryPoint": 1439,
"id": 701,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_563": {
"entryPoint": 1904,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_346": {
"entryPoint": 2044,
"id": 346,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_141": {
"entryPoint": 1304,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_166": {
"entryPoint": 776,
"id": 166,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_98": {
"entryPoint": 932,
"id": 98,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_74": {
"entryPoint": 868,
"id": 74,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_269": {
"entryPoint": 1150,
"id": 269,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_228": {
"entryPoint": 877,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_54": {
"entryPoint": 630,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_64": {
"entryPoint": 1004,
"id": 64,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_84": {
"entryPoint": 811,
"id": 84,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 821,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_123": {
"entryPoint": 1269,
"id": 123,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 2940,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2994,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3313,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 3358,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 3175,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 3015,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3091,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2771,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4388,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3988,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4096,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4534,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4242,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3842,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3696,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 3133,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 3271,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3106,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2828,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4423,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4023,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4131,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4569,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4277,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3877,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3731,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 3148,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 3286,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2684,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2695,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3565,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2899,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 3079,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2867,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2961,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 3258,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 2712,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 3469,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3518,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 3422,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2862,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2754,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 4309,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 3909,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 4055,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 4455,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 4163,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 3763,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 3617,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 2917,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2971,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:13699:5",
"nodeType": "YulBlock",
"src": "0:13699:5",
"statements": [
{
"body": {
"nativeSrc": "66:40:5",
"nodeType": "YulBlock",
"src": "66:40:5",
"statements": [
{
"nativeSrc": "77:22:5",
"nodeType": "YulAssignment",
"src": "77:22:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:5",
"nodeType": "YulIdentifier",
"src": "93:5:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:5",
"nodeType": "YulIdentifier",
"src": "87:5:5"
},
"nativeSrc": "87:12:5",
"nodeType": "YulFunctionCall",
"src": "87:12:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:5",
"nodeType": "YulIdentifier",
"src": "77:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:5",
"nodeType": "YulTypedName",
"src": "49:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:5",
"nodeType": "YulTypedName",
"src": "59:6:5",
"type": ""
}
],
"src": "7:99:5"
},
{
"body": {
"nativeSrc": "208:73:5",
"nodeType": "YulBlock",
"src": "208:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "225:3:5",
"nodeType": "YulIdentifier",
"src": "225:3:5"
},
{
"name": "length",
"nativeSrc": "230:6:5",
"nodeType": "YulIdentifier",
"src": "230:6:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "218:6:5",
"nodeType": "YulIdentifier",
"src": "218:6:5"
},
"nativeSrc": "218:19:5",
"nodeType": "YulFunctionCall",
"src": "218:19:5"
},
"nativeSrc": "218:19:5",
"nodeType": "YulExpressionStatement",
"src": "218:19:5"
},
{
"nativeSrc": "246:29:5",
"nodeType": "YulAssignment",
"src": "246:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "265:3:5",
"nodeType": "YulIdentifier",
"src": "265:3:5"
},
{
"kind": "number",
"nativeSrc": "270:4:5",
"nodeType": "YulLiteral",
"src": "270:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "261:3:5",
"nodeType": "YulIdentifier",
"src": "261:3:5"
},
"nativeSrc": "261:14:5",
"nodeType": "YulFunctionCall",
"src": "261:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "246:11:5",
"nodeType": "YulIdentifier",
"src": "246:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "112:169:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "180:3:5",
"nodeType": "YulTypedName",
"src": "180:3:5",
"type": ""
},
{
"name": "length",
"nativeSrc": "185:6:5",
"nodeType": "YulTypedName",
"src": "185:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "196:11:5",
"nodeType": "YulTypedName",
"src": "196:11:5",
"type": ""
}
],
"src": "112:169:5"
},
{
"body": {
"nativeSrc": "349:184:5",
"nodeType": "YulBlock",
"src": "349:184:5",
"statements": [
{
"nativeSrc": "359:10:5",
"nodeType": "YulVariableDeclaration",
"src": "359:10:5",
"value": {
"kind": "number",
"nativeSrc": "368:1:5",
"nodeType": "YulLiteral",
"src": "368:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "363:1:5",
"nodeType": "YulTypedName",
"src": "363:1:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "428:63:5",
"nodeType": "YulBlock",
"src": "428:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "453:3:5",
"nodeType": "YulIdentifier",
"src": "453:3:5"
},
{
"name": "i",
"nativeSrc": "458:1:5",
"nodeType": "YulIdentifier",
"src": "458:1:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "449:3:5",
"nodeType": "YulIdentifier",
"src": "449:3:5"
},
"nativeSrc": "449:11:5",
"nodeType": "YulFunctionCall",
"src": "449:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "472:3:5",
"nodeType": "YulIdentifier",
"src": "472:3:5"
},
{
"name": "i",
"nativeSrc": "477:1:5",
"nodeType": "YulIdentifier",
"src": "477:1:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "468:3:5",
"nodeType": "YulIdentifier",
"src": "468:3:5"
},
"nativeSrc": "468:11:5",
"nodeType": "YulFunctionCall",
"src": "468:11:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "462:5:5",
"nodeType": "YulIdentifier",
"src": "462:5:5"
},
"nativeSrc": "462:18:5",
"nodeType": "YulFunctionCall",
"src": "462:18:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "442:6:5",
"nodeType": "YulIdentifier",
"src": "442:6:5"
},
"nativeSrc": "442:39:5",
"nodeType": "YulFunctionCall",
"src": "442:39:5"
},
"nativeSrc": "442:39:5",
"nodeType": "YulExpressionStatement",
"src": "442:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "389:1:5",
"nodeType": "YulIdentifier",
"src": "389:1:5"
},
{
"name": "length",
"nativeSrc": "392:6:5",
"nodeType": "YulIdentifier",
"src": "392:6:5"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "386:2:5",
"nodeType": "YulIdentifier",
"src": "386:2:5"
},
"nativeSrc": "386:13:5",
"nodeType": "YulFunctionCall",
"src": "386:13:5"
},
"nativeSrc": "378:113:5",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "400:19:5",
"nodeType": "YulBlock",
"src": "400:19:5",
"statements": [
{
"nativeSrc": "402:15:5",
"nodeType": "YulAssignment",
"src": "402:15:5",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "411:1:5",
"nodeType": "YulIdentifier",
"src": "411:1:5"
},
{
"kind": "number",
"nativeSrc": "414:2:5",
"nodeType": "YulLiteral",
"src": "414:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "407:3:5",
"nodeType": "YulIdentifier",
"src": "407:3:5"
},
"nativeSrc": "407:10:5",
"nodeType": "YulFunctionCall",
"src": "407:10:5"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "402:1:5",
"nodeType": "YulIdentifier",
"src": "402:1:5"
}
]
}
]
},
"pre": {
"nativeSrc": "382:3:5",
"nodeType": "YulBlock",
"src": "382:3:5",
"statements": []
},
"src": "378:113:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "511:3:5",
"nodeType": "YulIdentifier",
"src": "511:3:5"
},
{
"name": "length",
"nativeSrc": "516:6:5",
"nodeType": "YulIdentifier",
"src": "516:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "507:3:5",
"nodeType": "YulIdentifier",
"src": "507:3:5"
},
"nativeSrc": "507:16:5",
"nodeType": "YulFunctionCall",
"src": "507:16:5"
},
{
"kind": "number",
"nativeSrc": "525:1:5",
"nodeType": "YulLiteral",
"src": "525:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "500:6:5",
"nodeType": "YulIdentifier",
"src": "500:6:5"
},
"nativeSrc": "500:27:5",
"nodeType": "YulFunctionCall",
"src": "500:27:5"
},
"nativeSrc": "500:27:5",
"nodeType": "YulExpressionStatement",
"src": "500:27:5"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "287:246:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "331:3:5",
"nodeType": "YulTypedName",
"src": "331:3:5",
"type": ""
},
{
"name": "dst",
"nativeSrc": "336:3:5",
"nodeType": "YulTypedName",
"src": "336:3:5",
"type": ""
},
{
"name": "length",
"nativeSrc": "341:6:5",
"nodeType": "YulTypedName",
"src": "341:6:5",
"type": ""
}
],
"src": "287:246:5"
},
{
"body": {
"nativeSrc": "587:54:5",
"nodeType": "YulBlock",
"src": "587:54:5",
"statements": [
{
"nativeSrc": "597:38:5",
"nodeType": "YulAssignment",
"src": "597:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "615:5:5",
"nodeType": "YulIdentifier",
"src": "615:5:5"
},
{
"kind": "number",
"nativeSrc": "622:2:5",
"nodeType": "YulLiteral",
"src": "622:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "611:3:5",
"nodeType": "YulIdentifier",
"src": "611:3:5"
},
"nativeSrc": "611:14:5",
"nodeType": "YulFunctionCall",
"src": "611:14:5"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "631:2:5",
"nodeType": "YulLiteral",
"src": "631:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "627:3:5",
"nodeType": "YulIdentifier",
"src": "627:3:5"
},
"nativeSrc": "627:7:5",
"nodeType": "YulFunctionCall",
"src": "627:7:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "607:3:5",
"nodeType": "YulIdentifier",
"src": "607:3:5"
},
"nativeSrc": "607:28:5",
"nodeType": "YulFunctionCall",
"src": "607:28:5"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "597:6:5",
"nodeType": "YulIdentifier",
"src": "597:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "539:102:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "570:5:5",
"nodeType": "YulTypedName",
"src": "570:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "580:6:5",
"nodeType": "YulTypedName",
"src": "580:6:5",
"type": ""
}
],
"src": "539:102:5"
},
{
"body": {
"nativeSrc": "739:285:5",
"nodeType": "YulBlock",
"src": "739:285:5",
"statements": [
{
"nativeSrc": "749:53:5",
"nodeType": "YulVariableDeclaration",
"src": "749:53:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "796:5:5",
"nodeType": "YulIdentifier",
"src": "796:5:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "763:32:5",
"nodeType": "YulIdentifier",
"src": "763:32:5"
},
"nativeSrc": "763:39:5",
"nodeType": "YulFunctionCall",
"src": "763:39:5"
},
"variables": [
{
"name": "length",
"nativeSrc": "753:6:5",
"nodeType": "YulTypedName",
"src": "753:6:5",
"type": ""
}
]
},
{
"nativeSrc": "811:78:5",
"nodeType": "YulAssignment",
"src": "811:78:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "877:3:5",
"nodeType": "YulIdentifier",
"src": "877:3:5"
},
{
"name": "length",
"nativeSrc": "882:6:5",
"nodeType": "YulIdentifier",
"src": "882:6:5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "818:58:5",
"nodeType": "YulIdentifier",
"src": "818:58:5"
},
"nativeSrc": "818:71:5",
"nodeType": "YulFunctionCall",
"src": "818:71:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "811:3:5",
"nodeType": "YulIdentifier",
"src": "811:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "937:5:5",
"nodeType": "YulIdentifier",
"src": "937:5:5"
},
{
"kind": "number",
"nativeSrc": "944:4:5",
"nodeType": "YulLiteral",
"src": "944:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "933:3:5",
"nodeType": "YulIdentifier",
"src": "933:3:5"
},
"nativeSrc": "933:16:5",
"nodeType": "YulFunctionCall",
"src": "933:16:5"
},
{
"name": "pos",
"nativeSrc": "951:3:5",
"nodeType": "YulIdentifier",
"src": "951:3:5"
},
{
"name": "length",
"nativeSrc": "956:6:5",
"nodeType": "YulIdentifier",
"src": "956:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "898:34:5",
"nodeType": "YulIdentifier",
"src": "898:34:5"
},
"nativeSrc": "898:65:5",
"nodeType": "YulFunctionCall",
"src": "898:65:5"
},
"nativeSrc": "898:65:5",
"nodeType": "YulExpressionStatement",
"src": "898:65:5"
},
{
"nativeSrc": "972:46:5",
"nodeType": "YulAssignment",
"src": "972:46:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "983:3:5",
"nodeType": "YulIdentifier",
"src": "983:3:5"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "1010:6:5",
"nodeType": "YulIdentifier",
"src": "1010:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "988:21:5",
"nodeType": "YulIdentifier",
"src": "988:21:5"
},
"nativeSrc": "988:29:5",
"nodeType": "YulFunctionCall",
"src": "988:29:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "979:3:5",
"nodeType": "YulIdentifier",
"src": "979:3:5"
},
"nativeSrc": "979:39:5",
"nodeType": "YulFunctionCall",
"src": "979:39:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "972:3:5",
"nodeType": "YulIdentifier",
"src": "972:3:5"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "647:377:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "720:5:5",
"nodeType": "YulTypedName",
"src": "720:5:5",
"type": ""
},
{
"name": "pos",
"nativeSrc": "727:3:5",
"nodeType": "YulTypedName",
"src": "727:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "735:3:5",
"nodeType": "YulTypedName",
"src": "735:3:5",
"type": ""
}
],
"src": "647:377:5"
},
{
"body": {
"nativeSrc": "1148:195:5",
"nodeType": "YulBlock",
"src": "1148:195:5",
"statements": [
{
"nativeSrc": "1158:26:5",
"nodeType": "YulAssignment",
"src": "1158:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1170:9:5",
"nodeType": "YulIdentifier",
"src": "1170:9:5"
},
{
"kind": "number",
"nativeSrc": "1181:2:5",
"nodeType": "YulLiteral",
"src": "1181:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1166:3:5",
"nodeType": "YulIdentifier",
"src": "1166:3:5"
},
"nativeSrc": "1166:18:5",
"nodeType": "YulFunctionCall",
"src": "1166:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1158:4:5",
"nodeType": "YulIdentifier",
"src": "1158:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1205:9:5",
"nodeType": "YulIdentifier",
"src": "1205:9:5"
},
{
"kind": "number",
"nativeSrc": "1216:1:5",
"nodeType": "YulLiteral",
"src": "1216:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1201:3:5",
"nodeType": "YulIdentifier",
"src": "1201:3:5"
},
"nativeSrc": "1201:17:5",
"nodeType": "YulFunctionCall",
"src": "1201:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "1224:4:5",
"nodeType": "YulIdentifier",
"src": "1224:4:5"
},
{
"name": "headStart",
"nativeSrc": "1230:9:5",
"nodeType": "YulIdentifier",
"src": "1230:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1220:3:5",
"nodeType": "YulIdentifier",
"src": "1220:3:5"
},
"nativeSrc": "1220:20:5",
"nodeType": "YulFunctionCall",
"src": "1220:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1194:6:5",
"nodeType": "YulIdentifier",
"src": "1194:6:5"
},
"nativeSrc": "1194:47:5",
"nodeType": "YulFunctionCall",
"src": "1194:47:5"
},
"nativeSrc": "1194:47:5",
"nodeType": "YulExpressionStatement",
"src": "1194:47:5"
},
{
"nativeSrc": "1250:86:5",
"nodeType": "YulAssignment",
"src": "1250:86:5",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1322:6:5",
"nodeType": "YulIdentifier",
"src": "1322:6:5"
},
{
"name": "tail",
"nativeSrc": "1331:4:5",
"nodeType": "YulIdentifier",
"src": "1331:4:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "1258:63:5",
"nodeType": "YulIdentifier",
"src": "1258:63:5"
},
"nativeSrc": "1258:78:5",
"nodeType": "YulFunctionCall",
"src": "1258:78:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1250:4:5",
"nodeType": "YulIdentifier",
"src": "1250:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "1030:313:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1120:9:5",
"nodeType": "YulTypedName",
"src": "1120:9:5",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1132:6:5",
"nodeType": "YulTypedName",
"src": "1132:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1143:4:5",
"nodeType": "YulTypedName",
"src": "1143:4:5",
"type": ""
}
],
"src": "1030:313:5"
},
{
"body": {
"nativeSrc": "1389:35:5",
"nodeType": "YulBlock",
"src": "1389:35:5",
"statements": [
{
"nativeSrc": "1399:19:5",
"nodeType": "YulAssignment",
"src": "1399:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1415:2:5",
"nodeType": "YulLiteral",
"src": "1415:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "1409:5:5",
"nodeType": "YulIdentifier",
"src": "1409:5:5"
},
"nativeSrc": "1409:9:5",
"nodeType": "YulFunctionCall",
"src": "1409:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "1399:6:5",
"nodeType": "YulIdentifier",
"src": "1399:6:5"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "1349:75:5",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "1382:6:5",
"nodeType": "YulTypedName",
"src": "1382:6:5",
"type": ""
}
],
"src": "1349:75:5"
},
{
"body": {
"nativeSrc": "1519:28:5",
"nodeType": "YulBlock",
"src": "1519:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1536:1:5",
"nodeType": "YulLiteral",
"src": "1536:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1539:1:5",
"nodeType": "YulLiteral",
"src": "1539:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1529:6:5",
"nodeType": "YulIdentifier",
"src": "1529:6:5"
},
"nativeSrc": "1529:12:5",
"nodeType": "YulFunctionCall",
"src": "1529:12:5"
},
"nativeSrc": "1529:12:5",
"nodeType": "YulExpressionStatement",
"src": "1529:12:5"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1430:117:5",
"nodeType": "YulFunctionDefinition",
"src": "1430:117:5"
},
{
"body": {
"nativeSrc": "1642:28:5",
"nodeType": "YulBlock",
"src": "1642:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1659:1:5",
"nodeType": "YulLiteral",
"src": "1659:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1662:1:5",
"nodeType": "YulLiteral",
"src": "1662:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1652:6:5",
"nodeType": "YulIdentifier",
"src": "1652:6:5"
},
"nativeSrc": "1652:12:5",
"nodeType": "YulFunctionCall",
"src": "1652:12:5"
},
"nativeSrc": "1652:12:5",
"nodeType": "YulExpressionStatement",
"src": "1652:12:5"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "1553:117:5",
"nodeType": "YulFunctionDefinition",
"src": "1553:117:5"
},
{
"body": {
"nativeSrc": "1721:81:5",
"nodeType": "YulBlock",
"src": "1721:81:5",
"statements": [
{
"nativeSrc": "1731:65:5",
"nodeType": "YulAssignment",
"src": "1731:65:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1746:5:5",
"nodeType": "YulIdentifier",
"src": "1746:5:5"
},
{
"kind": "number",
"nativeSrc": "1753:42:5",
"nodeType": "YulLiteral",
"src": "1753:42:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1742:3:5",
"nodeType": "YulIdentifier",
"src": "1742:3:5"
},
"nativeSrc": "1742:54:5",
"nodeType": "YulFunctionCall",
"src": "1742:54:5"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1731:7:5",
"nodeType": "YulIdentifier",
"src": "1731:7:5"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "1676:126:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1703:5:5",
"nodeType": "YulTypedName",
"src": "1703:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1713:7:5",
"nodeType": "YulTypedName",
"src": "1713:7:5",
"type": ""
}
],
"src": "1676:126:5"
},
{
"body": {
"nativeSrc": "1853:51:5",
"nodeType": "YulBlock",
"src": "1853:51:5",
"statements": [
{
"nativeSrc": "1863:35:5",
"nodeType": "YulAssignment",
"src": "1863:35:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1892:5:5",
"nodeType": "YulIdentifier",
"src": "1892:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "1874:17:5",
"nodeType": "YulIdentifier",
"src": "1874:17:5"
},
"nativeSrc": "1874:24:5",
"nodeType": "YulFunctionCall",
"src": "1874:24:5"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1863:7:5",
"nodeType": "YulIdentifier",
"src": "1863:7:5"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "1808:96:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1835:5:5",
"nodeType": "YulTypedName",
"src": "1835:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1845:7:5",
"nodeType": "YulTypedName",
"src": "1845:7:5",
"type": ""
}
],
"src": "1808:96:5"
},
{
"body": {
"nativeSrc": "1953:79:5",
"nodeType": "YulBlock",
"src": "1953:79:5",
"statements": [
{
"body": {
"nativeSrc": "2010:16:5",
"nodeType": "YulBlock",
"src": "2010:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2019:1:5",
"nodeType": "YulLiteral",
"src": "2019:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "2022:1:5",
"nodeType": "YulLiteral",
"src": "2022:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "2012:6:5",
"nodeType": "YulIdentifier",
"src": "2012:6:5"
},
"nativeSrc": "2012:12:5",
"nodeType": "YulFunctionCall",
"src": "2012:12:5"
},
"nativeSrc": "2012:12:5",
"nodeType": "YulExpressionStatement",
"src": "2012:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1976:5:5",
"nodeType": "YulIdentifier",
"src": "1976:5:5"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2001:5:5",
"nodeType": "YulIdentifier",
"src": "2001:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "1983:17:5",
"nodeType": "YulIdentifier",
"src": "1983:17:5"
},
"nativeSrc": "1983:24:5",
"nodeType": "YulFunctionCall",
"src": "1983:24:5"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "1973:2:5",
"nodeType": "YulIdentifier",
"src": "1973:2:5"
},
"nativeSrc": "1973:35:5",
"nodeType": "YulFunctionCall",
"src": "1973:35:5"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1966:6:5",
"nodeType": "YulIdentifier",
"src": "1966:6:5"
},
"nativeSrc": "1966:43:5",
"nodeType": "YulFunctionCall",
"src": "1966:43:5"
},
"nativeSrc": "1963:63:5",
"nodeType": "YulIf",
"src": "1963:63:5"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "1910:122:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1946:5:5",
"nodeType": "YulTypedName",
"src": "1946:5:5",
"type": ""
}
],
"src": "1910:122:5"
},
{
"body": {
"nativeSrc": "2090:87:5",
"nodeType": "YulBlock",
"src": "2090:87:5",
"statements": [
{
"nativeSrc": "2100:29:5",
"nodeType": "YulAssignment",
"src": "2100:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2122:6:5",
"nodeType": "YulIdentifier",
"src": "2122:6:5"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2109:12:5",
"nodeType": "YulIdentifier",
"src": "2109:12:5"
},
"nativeSrc": "2109:20:5",
"nodeType": "YulFunctionCall",
"src": "2109:20:5"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "2100:5:5",
"nodeType": "YulIdentifier",
"src": "2100:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "2165:5:5",
"nodeType": "YulIdentifier",
"src": "2165:5:5"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "2138:26:5",
"nodeType": "YulIdentifier",
"src": "2138:26:5"
},
"nativeSrc": "2138:33:5",
"nodeType": "YulFunctionCall",
"src": "2138:33:5"
},
"nativeSrc": "2138:33:5",
"nodeType": "YulExpressionStatement",
"src": "2138:33:5"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "2038:139:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2068:6:5",
"nodeType": "YulTypedName",
"src": "2068:6:5",
"type": ""
},
{
"name": "end",
"nativeSrc": "2076:3:5",
"nodeType": "YulTypedName",
"src": "2076:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "2084:5:5",
"nodeType": "YulTypedName",
"src": "2084:5:5",
"type": ""
}
],
"src": "2038:139:5"
},
{
"body": {
"nativeSrc": "2228:32:5",
"nodeType": "YulBlock",
"src": "2228:32:5",
"statements": [
{
"nativeSrc": "2238:16:5",
"nodeType": "YulAssignment",
"src": "2238:16:5",
"value": {
"name": "value",
"nativeSrc": "2249:5:5",
"nodeType": "YulIdentifier",
"src": "2249:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2238:7:5",
"nodeType": "YulIdentifier",
"src": "2238:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "2183:77:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2210:5:5",
"nodeType": "YulTypedName",
"src": "2210:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2220:7:5",
"nodeType": "YulTypedName",
"src": "2220:7:5",
"type": ""
}
],
"src": "2183:77:5"
},
{
"body": {
"nativeSrc": "2309:79:5",
"nodeType": "YulBlock",
"src": "2309:79:5",
"statements": [
{
"body": {
"nativeSrc": "2366:16:5",
"nodeType": "YulBlock",
"src": "2366:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2375:1:5",
"nodeType": "YulLiteral",
"src": "2375:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "2378:1:5",
"nodeType": "YulLiteral",
"src": "2378:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "2368:6:5",
"nodeType": "YulIdentifier",
"src": "2368:6:5"
},
"nativeSrc": "2368:12:5",
"nodeType": "YulFunctionCall",
"src": "2368:12:5"
},
"nativeSrc": "2368:12:5",
"nodeType": "YulExpressionStatement",
"src": "2368:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "2332:5:5",
"nodeType": "YulIdentifier",
"src": "2332:5:5"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2357:5:5",
"nodeType": "YulIdentifier",
"src": "2357:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "2339:17:5",
"nodeType": "YulIdentifier",
"src": "2339:17:5"
},
"nativeSrc": "2339:24:5",
"nodeType": "YulFunctionCall",
"src": "2339:24:5"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "2329:2:5",
"nodeType": "YulIdentifier",
"src": "2329:2:5"
},
"nativeSrc": "2329:35:5",
"nodeType": "YulFunctionCall",
"src": "2329:35:5"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2322:6:5",
"nodeType": "YulIdentifier",
"src": "2322:6:5"
},
"nativeSrc": "2322:43:5",
"nodeType": "YulFunctionCall",
"src": "2322:43:5"
},
"nativeSrc": "2319:63:5",
"nodeType": "YulIf",
"src": "2319:63:5"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "2266:122:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2302:5:5",
"nodeType": "YulTypedName",
"src": "2302:5:5",
"type": ""
}
],
"src": "2266:122:5"
},
{
"body": {
"nativeSrc": "2446:87:5",
"nodeType": "YulBlock",
"src": "2446:87:5",
"statements": [
{
"nativeSrc": "2456:29:5",
"nodeType": "YulAssignment",
"src": "2456:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2478:6:5",
"nodeType": "YulIdentifier",
"src": "2478:6:5"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2465:12:5",
"nodeType": "YulIdentifier",
"src": "2465:12:5"
},
"nativeSrc": "2465:20:5",
"nodeType": "YulFunctionCall",
"src": "2465:20:5"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "2456:5:5",
"nodeType": "YulIdentifier",
"src": "2456:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "2521:5:5",
"nodeType": "YulIdentifier",
"src": "2521:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "2494:26:5",
"nodeType": "YulIdentifier",
"src": "2494:26:5"
},
"nativeSrc": "2494:33:5",
"nodeType": "YulFunctionCall",
"src": "2494:33:5"
},
"nativeSrc": "2494:33:5",
"nodeType": "YulExpressionStatement",
"src": "2494:33:5"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "2394:139:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2424:6:5",
"nodeType": "YulTypedName",
"src": "2424:6:5",
"type": ""
},
{
"name": "end",
"nativeSrc": "2432:3:5",
"nodeType": "YulTypedName",
"src": "2432:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "2440:5:5",
"nodeType": "YulTypedName",
"src": "2440:5:5",
"type": ""
}
],
"src": "2394:139:5"
},
{
"body": {
"nativeSrc": "2622:391:5",
"nodeType": "YulBlock",
"src": "2622:391:5",
"statements": [
{
"body": {
"nativeSrc": "2668:83:5",
"nodeType": "YulBlock",
"src": "2668:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "2670:77:5",
"nodeType": "YulIdentifier",
"src": "2670:77:5"
},
"nativeSrc": "2670:79:5",
"nodeType": "YulFunctionCall",
"src": "2670:79:5"
},
"nativeSrc": "2670:79:5",
"nodeType": "YulExpressionStatement",
"src": "2670:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "2643:7:5",
"nodeType": "YulIdentifier",
"src": "2643:7:5"
},
{
"name": "headStart",
"nativeSrc": "2652:9:5",
"nodeType": "YulIdentifier",
"src": "2652:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "2639:3:5",
"nodeType": "YulIdentifier",
"src": "2639:3:5"
},
"nativeSrc": "2639:23:5",
"nodeType": "YulFunctionCall",
"src": "2639:23:5"
},
{
"kind": "number",
"nativeSrc": "2664:2:5",
"nodeType": "YulLiteral",
"src": "2664:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "2635:3:5",
"nodeType": "YulIdentifier",
"src": "2635:3:5"
},
"nativeSrc": "2635:32:5",
"nodeType": "YulFunctionCall",
"src": "2635:32:5"
},
"nativeSrc": "2632:119:5",
"nodeType": "YulIf",
"src": "2632:119:5"
},
{
"nativeSrc": "2761:117:5",
"nodeType": "YulBlock",
"src": "2761:117:5",
"statements": [
{
"nativeSrc": "2776:15:5",
"nodeType": "YulVariableDeclaration",
"src": "2776:15:5",
"value": {
"kind": "number",
"nativeSrc": "2790:1:5",
"nodeType": "YulLiteral",
"src": "2790:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2780:6:5",
"nodeType": "YulTypedName",
"src": "2780:6:5",
"type": ""
}
]
},
{
"nativeSrc": "2805:63:5",
"nodeType": "YulAssignment",
"src": "2805:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2840:9:5",
"nodeType": "YulIdentifier",
"src": "2840:9:5"
},
{
"name": "offset",
"nativeSrc": "2851:6:5",
"nodeType": "YulIdentifier",
"src": "2851:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2836:3:5",
"nodeType": "YulIdentifier",
"src": "2836:3:5"
},
"nativeSrc": "2836:22:5",
"nodeType": "YulFunctionCall",
"src": "2836:22:5"
},
{
"name": "dataEnd",
"nativeSrc": "2860:7:5",
"nodeType": "YulIdentifier",
"src": "2860:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "2815:20:5",
"nodeType": "YulIdentifier",
"src": "2815:20:5"
},
"nativeSrc": "2815:53:5",
"nodeType": "YulFunctionCall",
"src": "2815:53:5"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "2805:6:5",
"nodeType": "YulIdentifier",
"src": "2805:6:5"
}
]
}
]
},
{
"nativeSrc": "2888:118:5",
"nodeType": "YulBlock",
"src": "2888:118:5",
"statements": [
{
"nativeSrc": "2903:16:5",
"nodeType": "YulVariableDeclaration",
"src": "2903:16:5",
"value": {
"kind": "number",
"nativeSrc": "2917:2:5",
"nodeType": "YulLiteral",
"src": "2917:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2907:6:5",
"nodeType": "YulTypedName",
"src": "2907:6:5",
"type": ""
}
]
},
{
"nativeSrc": "2933:63:5",
"nodeType": "YulAssignment",
"src": "2933:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2968:9:5",
"nodeType": "YulIdentifier",
"src": "2968:9:5"
},
{
"name": "offset",
"nativeSrc": "2979:6:5",
"nodeType": "YulIdentifier",
"src": "2979:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2964:3:5",
"nodeType": "YulIdentifier",
"src": "2964:3:5"
},
"nativeSrc": "2964:22:5",
"nodeType": "YulFunctionCall",
"src": "2964:22:5"
},
{
"name": "dataEnd",
"nativeSrc": "2988:7:5",
"nodeType": "YulIdentifier",
"src": "2988:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "2943:20:5",
"nodeType": "YulIdentifier",
"src": "2943:20:5"
},
"nativeSrc": "2943:53:5",
"nodeType": "YulFunctionCall",
"src": "2943:53:5"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "2933:6:5",
"nodeType": "YulIdentifier",
"src": "2933:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nativeSrc": "2539:474:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2584:9:5",
"nodeType": "YulTypedName",
"src": "2584:9:5",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "2595:7:5",
"nodeType": "YulTypedName",
"src": "2595:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "2607:6:5",
"nodeType": "YulTypedName",
"src": "2607:6:5",
"type": ""
},
{
"name": "value1",
"nativeSrc": "2615:6:5",
"nodeType": "YulTypedName",
"src": "2615:6:5",
"type": ""
}
],
"src": "2539:474:5"
},
{
"body": {
"nativeSrc": "3061:48:5",
"nodeType": "YulBlock",
"src": "3061:48:5",
"statements": [
{
"nativeSrc": "3071:32:5",
"nodeType": "YulAssignment",
"src": "3071:32:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3096:5:5",
"nodeType": "YulIdentifier",
"src": "3096:5:5"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3089:6:5",
"nodeType": "YulIdentifier",
"src": "3089:6:5"
},
"nativeSrc": "3089:13:5",
"nodeType": "YulFunctionCall",
"src": "3089:13:5"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3082:6:5",
"nodeType": "YulIdentifier",
"src": "3082:6:5"
},
"nativeSrc": "3082:21:5",
"nodeType": "YulFunctionCall",
"src": "3082:21:5"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "3071:7:5",
"nodeType": "YulIdentifier",
"src": "3071:7:5"
}
]
}
]
},
"name": "cleanup_t_bool",
"nativeSrc": "3019:90:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3043:5:5",
"nodeType": "YulTypedName",
"src": "3043:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "3053:7:5",
"nodeType": "YulTypedName",
"src": "3053:7:5",
"type": ""
}
],
"src": "3019:90:5"
},
{
"body": {
"nativeSrc": "3174:50:5",
"nodeType": "YulBlock",
"src": "3174:50:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3191:3:5",
"nodeType": "YulIdentifier",
"src": "3191:3:5"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3211:5:5",
"nodeType": "YulIdentifier",
"src": "3211:5:5"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nativeSrc": "3196:14:5",
"nodeType": "YulIdentifier",
"src": "3196:14:5"
},
"nativeSrc": "3196:21:5",
"nodeType": "YulFunctionCall",
"src": "3196:21:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3184:6:5",
"nodeType": "YulIdentifier",
"src": "3184:6:5"
},
"nativeSrc": "3184:34:5",
"nodeType": "YulFunctionCall",
"src": "3184:34:5"
},
"nativeSrc": "3184:34:5",
"nodeType": "YulExpressionStatement",
"src": "3184:34:5"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "3115:109:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3162:5:5",
"nodeType": "YulTypedName",
"src": "3162:5:5",
"type": ""
},
{
"name": "pos",
"nativeSrc": "3169:3:5",
"nodeType": "YulTypedName",
"src": "3169:3:5",
"type": ""
}
],
"src": "3115:109:5"
},
{
"body": {
"nativeSrc": "3322:118:5",
"nodeType": "YulBlock",
"src": "3322:118:5",
"statements": [
{
"nativeSrc": "3332:26:5",
"nodeType": "YulAssignment",
"src": "3332:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3344:9:5",
"nodeType": "YulIdentifier",
"src": "3344:9:5"
},
{
"kind": "number",
"nativeSrc": "3355:2:5",
"nodeType": "YulLiteral",
"src": "3355:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3340:3:5",
"nodeType": "YulIdentifier",
"src": "3340:3:5"
},
"nativeSrc": "3340:18:5",
"nodeType": "YulFunctionCall",
"src": "3340:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3332:4:5",
"nodeType": "YulIdentifier",
"src": "3332:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "3406:6:5",
"nodeType": "YulIdentifier",
"src": "3406:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3419:9:5",
"nodeType": "YulIdentifier",
"src": "3419:9:5"
},
{
"kind": "number",
"nativeSrc": "3430:1:5",
"nodeType": "YulLiteral",
"src": "3430:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3415:3:5",
"nodeType": "YulIdentifier",
"src": "3415:3:5"
},
"nativeSrc": "3415:17:5",
"nodeType": "YulFunctionCall",
"src": "3415:17:5"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "3368:37:5",
"nodeType": "YulIdentifier",
"src": "3368:37:5"
},
"nativeSrc": "3368:65:5",
"nodeType": "YulFunctionCall",
"src": "3368:65:5"
},
"nativeSrc": "3368:65:5",
"nodeType": "YulExpressionStatement",
"src": "3368:65:5"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nativeSrc": "3230:210:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3294:9:5",
"nodeType": "YulTypedName",
"src": "3294:9:5",
"type": ""
},
{
"name": "value0",
"nativeSrc": "3306:6:5",
"nodeType": "YulTypedName",
"src": "3306:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3317:4:5",
"nodeType": "YulTypedName",
"src": "3317:4:5",
"type": ""
}
],
"src": "3230:210:5"
},
{
"body": {
"nativeSrc": "3511:53:5",
"nodeType": "YulBlock",
"src": "3511:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3528:3:5",
"nodeType": "YulIdentifier",
"src": "3528:3:5"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3551:5:5",
"nodeType": "YulIdentifier",
"src": "3551:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "3533:17:5",
"nodeType": "YulIdentifier",
"src": "3533:17:5"
},
"nativeSrc": "3533:24:5",
"nodeType": "YulFunctionCall",
"src": "3533:24:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3521:6:5",
"nodeType": "YulIdentifier",
"src": "3521:6:5"
},
"nativeSrc": "3521:37:5",
"nodeType": "YulFunctionCall",
"src": "3521:37:5"
},
"nativeSrc": "3521:37:5",
"nodeType": "YulExpressionStatement",
"src": "3521:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3446:118:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3499:5:5",
"nodeType": "YulTypedName",
"src": "3499:5:5",
"type": ""
},
{
"name": "pos",
"nativeSrc": "3506:3:5",
"nodeType": "YulTypedName",
"src": "3506:3:5",
"type": ""
}
],
"src": "3446:118:5"
},
{
"body": {
"nativeSrc": "3668:124:5",
"nodeType": "YulBlock",
"src": "3668:124:5",
"statements": [
{
"nativeSrc": "3678:26:5",
"nodeType": "YulAssignment",
"src": "3678:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3690:9:5",
"nodeType": "YulIdentifier",
"src": "3690:9:5"
},
{
"kind": "number",
"nativeSrc": "3701:2:5",
"nodeType": "YulLiteral",
"src": "3701:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3686:3:5",
"nodeType": "YulIdentifier",
"src": "3686:3:5"
},
"nativeSrc": "3686:18:5",
"nodeType": "YulFunctionCall",
"src": "3686:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3678:4:5",
"nodeType": "YulIdentifier",
"src": "3678:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "3758:6:5",
"nodeType": "YulIdentifier",
"src": "3758:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3771:9:5",
"nodeType": "YulIdentifier",
"src": "3771:9:5"
},
{
"kind": "number",
"nativeSrc": "3782:1:5",
"nodeType": "YulLiteral",
"src": "3782:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3767:3:5",
"nodeType": "YulIdentifier",
"src": "3767:3:5"
},
"nativeSrc": "3767:17:5",
"nodeType": "YulFunctionCall",
"src": "3767:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3714:43:5",
"nodeType": "YulIdentifier",
"src": "3714:43:5"
},
"nativeSrc": "3714:71:5",
"nodeType": "YulFunctionCall",
"src": "3714:71:5"
},
"nativeSrc": "3714:71:5",
"nodeType": "YulExpressionStatement",
"src": "3714:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "3570:222:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3640:9:5",
"nodeType": "YulTypedName",
"src": "3640:9:5",
"type": ""
},
{
"name": "value0",
"nativeSrc": "3652:6:5",
"nodeType": "YulTypedName",
"src": "3652:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3663:4:5",
"nodeType": "YulTypedName",
"src": "3663:4:5",
"type": ""
}
],
"src": "3570:222:5"
},
{
"body": {
"nativeSrc": "3898:519:5",
"nodeType": "YulBlock",
"src": "3898:519:5",
"statements": [
{
"body": {
"nativeSrc": "3944:83:5",
"nodeType": "YulBlock",
"src": "3944:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3946:77:5",
"nodeType": "YulIdentifier",
"src": "3946:77:5"
},
"nativeSrc": "3946:79:5",
"nodeType": "YulFunctionCall",
"src": "3946:79:5"
},
"nativeSrc": "3946:79:5",
"nodeType": "YulExpressionStatement",
"src": "3946:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3919:7:5",
"nodeType": "YulIdentifier",
"src": "3919:7:5"
},
{
"name": "headStart",
"nativeSrc": "3928:9:5",
"nodeType": "YulIdentifier",
"src": "3928:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3915:3:5",
"nodeType": "YulIdentifier",
"src": "3915:3:5"
},
"nativeSrc": "3915:23:5",
"nodeType": "YulFunctionCall",
"src": "3915:23:5"
},
{
"kind": "number",
"nativeSrc": "3940:2:5",
"nodeType": "YulLiteral",
"src": "3940:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3911:3:5",
"nodeType": "YulIdentifier",
"src": "3911:3:5"
},
"nativeSrc": "3911:32:5",
"nodeType": "YulFunctionCall",
"src": "3911:32:5"
},
"nativeSrc": "3908:119:5",
"nodeType": "YulIf",
"src": "3908:119:5"
},
{
"nativeSrc": "4037:117:5",
"nodeType": "YulBlock",
"src": "4037:117:5",
"statements": [
{
"nativeSrc": "4052:15:5",
"nodeType": "YulVariableDeclaration",
"src": "4052:15:5",
"value": {
"kind": "number",
"nativeSrc": "4066:1:5",
"nodeType": "YulLiteral",
"src": "4066:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4056:6:5",
"nodeType": "YulTypedName",
"src": "4056:6:5",
"type": ""
}
]
},
{
"nativeSrc": "4081:63:5",
"nodeType": "YulAssignment",
"src": "4081:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4116:9:5",
"nodeType": "YulIdentifier",
"src": "4116:9:5"
},
{
"name": "offset",
"nativeSrc": "4127:6:5",
"nodeType": "YulIdentifier",
"src": "4127:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4112:3:5",
"nodeType": "YulIdentifier",
"src": "4112:3:5"
},
"nativeSrc": "4112:22:5",
"nodeType": "YulFunctionCall",
"src": "4112:22:5"
},
{
"name": "dataEnd",
"nativeSrc": "4136:7:5",
"nodeType": "YulIdentifier",
"src": "4136:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "4091:20:5",
"nodeType": "YulIdentifier",
"src": "4091:20:5"
},
"nativeSrc": "4091:53:5",
"nodeType": "YulFunctionCall",
"src": "4091:53:5"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4081:6:5",
"nodeType": "YulIdentifier",
"src": "4081:6:5"
}
]
}
]
},
{
"nativeSrc": "4164:118:5",
"nodeType": "YulBlock",
"src": "4164:118:5",
"statements": [
{
"nativeSrc": "4179:16:5",
"nodeType": "YulVariableDeclaration",
"src": "4179:16:5",
"value": {
"kind": "number",
"nativeSrc": "4193:2:5",
"nodeType": "YulLiteral",
"src": "4193:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4183:6:5",
"nodeType": "YulTypedName",
"src": "4183:6:5",
"type": ""
}
]
},
{
"nativeSrc": "4209:63:5",
"nodeType": "YulAssignment",
"src": "4209:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4244:9:5",
"nodeType": "YulIdentifier",
"src": "4244:9:5"
},
{
"name": "offset",
"nativeSrc": "4255:6:5",
"nodeType": "YulIdentifier",
"src": "4255:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4240:3:5",
"nodeType": "YulIdentifier",
"src": "4240:3:5"
},
"nativeSrc": "4240:22:5",
"nodeType": "YulFunctionCall",
"src": "4240:22:5"
},
{
"name": "dataEnd",
"nativeSrc": "4264:7:5",
"nodeType": "YulIdentifier",
"src": "4264:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "4219:20:5",
"nodeType": "YulIdentifier",
"src": "4219:20:5"
},
"nativeSrc": "4219:53:5",
"nodeType": "YulFunctionCall",
"src": "4219:53:5"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "4209:6:5",
"nodeType": "YulIdentifier",
"src": "4209:6:5"
}
]
}
]
},
{
"nativeSrc": "4292:118:5",
"nodeType": "YulBlock",
"src": "4292:118:5",
"statements": [
{
"nativeSrc": "4307:16:5",
"nodeType": "YulVariableDeclaration",
"src": "4307:16:5",
"value": {
"kind": "number",
"nativeSrc": "4321:2:5",
"nodeType": "YulLiteral",
"src": "4321:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4311:6:5",
"nodeType": "YulTypedName",
"src": "4311:6:5",
"type": ""
}
]
},
{
"nativeSrc": "4337:63:5",
"nodeType": "YulAssignment",
"src": "4337:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4372:9:5",
"nodeType": "YulIdentifier",
"src": "4372:9:5"
},
{
"name": "offset",
"nativeSrc": "4383:6:5",
"nodeType": "YulIdentifier",
"src": "4383:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4368:3:5",
"nodeType": "YulIdentifier",
"src": "4368:3:5"
},
"nativeSrc": "4368:22:5",
"nodeType": "YulFunctionCall",
"src": "4368:22:5"
},
{
"name": "dataEnd",
"nativeSrc": "4392:7:5",
"nodeType": "YulIdentifier",
"src": "4392:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4347:20:5",
"nodeType": "YulIdentifier",
"src": "4347:20:5"
},
"nativeSrc": "4347:53:5",
"nodeType": "YulFunctionCall",
"src": "4347:53:5"
},
"variableNames": [
{
"name": "value2",
"nativeSrc": "4337:6:5",
"nodeType": "YulIdentifier",
"src": "4337:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nativeSrc": "3798:619:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3852:9:5",
"nodeType": "YulTypedName",
"src": "3852:9:5",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3863:7:5",
"nodeType": "YulTypedName",
"src": "3863:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3875:6:5",
"nodeType": "YulTypedName",
"src": "3875:6:5",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3883:6:5",
"nodeType": "YulTypedName",
"src": "3883:6:5",
"type": ""
},
{
"name": "value2",
"nativeSrc": "3891:6:5",
"nodeType": "YulTypedName",
"src": "3891:6:5",
"type": ""
}
],
"src": "3798:619:5"
},
{
"body": {
"nativeSrc": "4466:43:5",
"nodeType": "YulBlock",
"src": "4466:43:5",
"statements": [
{
"nativeSrc": "4476:27:5",
"nodeType": "YulAssignment",
"src": "4476:27:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4491:5:5",
"nodeType": "YulIdentifier",
"src": "4491:5:5"
},
{
"kind": "number",
"nativeSrc": "4498:4:5",
"nodeType": "YulLiteral",
"src": "4498:4:5",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4487:3:5",
"nodeType": "YulIdentifier",
"src": "4487:3:5"
},
"nativeSrc": "4487:16:5",
"nodeType": "YulFunctionCall",
"src": "4487:16:5"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "4476:7:5",
"nodeType": "YulIdentifier",
"src": "4476:7:5"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nativeSrc": "4423:86:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4448:5:5",
"nodeType": "YulTypedName",
"src": "4448:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "4458:7:5",
"nodeType": "YulTypedName",
"src": "4458:7:5",
"type": ""
}
],
"src": "4423:86:5"
},
{
"body": {
"nativeSrc": "4576:51:5",
"nodeType": "YulBlock",
"src": "4576:51:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4593:3:5",
"nodeType": "YulIdentifier",
"src": "4593:3:5"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "4614:5:5",
"nodeType": "YulIdentifier",
"src": "4614:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nativeSrc": "4598:15:5",
"nodeType": "YulIdentifier",
"src": "4598:15:5"
},
"nativeSrc": "4598:22:5",
"nodeType": "YulFunctionCall",
"src": "4598:22:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4586:6:5",
"nodeType": "YulIdentifier",
"src": "4586:6:5"
},
"nativeSrc": "4586:35:5",
"nodeType": "YulFunctionCall",
"src": "4586:35:5"
},
"nativeSrc": "4586:35:5",
"nodeType": "YulExpressionStatement",
"src": "4586:35:5"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nativeSrc": "4515:112:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4564:5:5",
"nodeType": "YulTypedName",
"src": "4564:5:5",
"type": ""
},
{
"name": "pos",
"nativeSrc": "4571:3:5",
"nodeType": "YulTypedName",
"src": "4571:3:5",
"type": ""
}
],
"src": "4515:112:5"
},
{
"body": {
"nativeSrc": "4727:120:5",
"nodeType": "YulBlock",
"src": "4727:120:5",
"statements": [
{
"nativeSrc": "4737:26:5",
"nodeType": "YulAssignment",
"src": "4737:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "4749:9:5",
"nodeType": "YulIdentifier",
"src": "4749:9:5"
},
{
"kind": "number",
"nativeSrc": "4760:2:5",
"nodeType": "YulLiteral",
"src": "4760:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4745:3:5",
"nodeType": "YulIdentifier",
"src": "4745:3:5"
},
"nativeSrc": "4745:18:5",
"nodeType": "YulFunctionCall",
"src": "4745:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "4737:4:5",
"nodeType": "YulIdentifier",
"src": "4737:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "4813:6:5",
"nodeType": "YulIdentifier",
"src": "4813:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4826:9:5",
"nodeType": "YulIdentifier",
"src": "4826:9:5"
},
{
"kind": "number",
"nativeSrc": "4837:1:5",
"nodeType": "YulLiteral",
"src": "4837:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4822:3:5",
"nodeType": "YulIdentifier",
"src": "4822:3:5"
},
"nativeSrc": "4822:17:5",
"nodeType": "YulFunctionCall",
"src": "4822:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nativeSrc": "4773:39:5",
"nodeType": "YulIdentifier",
"src": "4773:39:5"
},
"nativeSrc": "4773:67:5",
"nodeType": "YulFunctionCall",
"src": "4773:67:5"
},
"nativeSrc": "4773:67:5",
"nodeType": "YulExpressionStatement",
"src": "4773:67:5"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nativeSrc": "4633:214:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4699:9:5",
"nodeType": "YulTypedName",
"src": "4699:9:5",
"type": ""
},
{
"name": "value0",
"nativeSrc": "4711:6:5",
"nodeType": "YulTypedName",
"src": "4711:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "4722:4:5",
"nodeType": "YulTypedName",
"src": "4722:4:5",
"type": ""
}
],
"src": "4633:214:5"
},
{
"body": {
"nativeSrc": "4919:263:5",
"nodeType": "YulBlock",
"src": "4919:263:5",
"statements": [
{
"body": {
"nativeSrc": "4965:83:5",
"nodeType": "YulBlock",
"src": "4965:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "4967:77:5",
"nodeType": "YulIdentifier",
"src": "4967:77:5"
},
"nativeSrc": "4967:79:5",
"nodeType": "YulFunctionCall",
"src": "4967:79:5"
},
"nativeSrc": "4967:79:5",
"nodeType": "YulExpressionStatement",
"src": "4967:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "4940:7:5",
"nodeType": "YulIdentifier",
"src": "4940:7:5"
},
{
"name": "headStart",
"nativeSrc": "4949:9:5",
"nodeType": "YulIdentifier",
"src": "4949:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "4936:3:5",
"nodeType": "YulIdentifier",
"src": "4936:3:5"
},
"nativeSrc": "4936:23:5",
"nodeType": "YulFunctionCall",
"src": "4936:23:5"
},
{
"kind": "number",
"nativeSrc": "4961:2:5",
"nodeType": "YulLiteral",
"src": "4961:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "4932:3:5",
"nodeType": "YulIdentifier",
"src": "4932:3:5"
},
"nativeSrc": "4932:32:5",
"nodeType": "YulFunctionCall",
"src": "4932:32:5"
},
"nativeSrc": "4929:119:5",
"nodeType": "YulIf",
"src": "4929:119:5"
},
{
"nativeSrc": "5058:117:5",
"nodeType": "YulBlock",
"src": "5058:117:5",
"statements": [
{
"nativeSrc": "5073:15:5",
"nodeType": "YulVariableDeclaration",
"src": "5073:15:5",
"value": {
"kind": "number",
"nativeSrc": "5087:1:5",
"nodeType": "YulLiteral",
"src": "5087:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5077:6:5",
"nodeType": "YulTypedName",
"src": "5077:6:5",
"type": ""
}
]
},
{
"nativeSrc": "5102:63:5",
"nodeType": "YulAssignment",
"src": "5102:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5137:9:5",
"nodeType": "YulIdentifier",
"src": "5137:9:5"
},
{
"name": "offset",
"nativeSrc": "5148:6:5",
"nodeType": "YulIdentifier",
"src": "5148:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5133:3:5",
"nodeType": "YulIdentifier",
"src": "5133:3:5"
},
"nativeSrc": "5133:22:5",
"nodeType": "YulFunctionCall",
"src": "5133:22:5"
},
{
"name": "dataEnd",
"nativeSrc": "5157:7:5",
"nodeType": "YulIdentifier",
"src": "5157:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "5112:20:5",
"nodeType": "YulIdentifier",
"src": "5112:20:5"
},
"nativeSrc": "5112:53:5",
"nodeType": "YulFunctionCall",
"src": "5112:53:5"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "5102:6:5",
"nodeType": "YulIdentifier",
"src": "5102:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "4853:329:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4889:9:5",
"nodeType": "YulTypedName",
"src": "4889:9:5",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "4900:7:5",
"nodeType": "YulTypedName",
"src": "4900:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "4912:6:5",
"nodeType": "YulTypedName",
"src": "4912:6:5",
"type": ""
}
],
"src": "4853:329:5"
},
{
"body": {
"nativeSrc": "5271:391:5",
"nodeType": "YulBlock",
"src": "5271:391:5",
"statements": [
{
"body": {
"nativeSrc": "5317:83:5",
"nodeType": "YulBlock",
"src": "5317:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "5319:77:5",
"nodeType": "YulIdentifier",
"src": "5319:77:5"
},
"nativeSrc": "5319:79:5",
"nodeType": "YulFunctionCall",
"src": "5319:79:5"
},
"nativeSrc": "5319:79:5",
"nodeType": "YulExpressionStatement",
"src": "5319:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "5292:7:5",
"nodeType": "YulIdentifier",
"src": "5292:7:5"
},
{
"name": "headStart",
"nativeSrc": "5301:9:5",
"nodeType": "YulIdentifier",
"src": "5301:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5288:3:5",
"nodeType": "YulIdentifier",
"src": "5288:3:5"
},
"nativeSrc": "5288:23:5",
"nodeType": "YulFunctionCall",
"src": "5288:23:5"
},
{
"kind": "number",
"nativeSrc": "5313:2:5",
"nodeType": "YulLiteral",
"src": "5313:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "5284:3:5",
"nodeType": "YulIdentifier",
"src": "5284:3:5"
},
"nativeSrc": "5284:32:5",
"nodeType": "YulFunctionCall",
"src": "5284:32:5"
},
"nativeSrc": "5281:119:5",
"nodeType": "YulIf",
"src": "5281:119:5"
},
{
"nativeSrc": "5410:117:5",
"nodeType": "YulBlock",
"src": "5410:117:5",
"statements": [
{
"nativeSrc": "5425:15:5",
"nodeType": "YulVariableDeclaration",
"src": "5425:15:5",
"value": {
"kind": "number",
"nativeSrc": "5439:1:5",
"nodeType": "YulLiteral",
"src": "5439:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5429:6:5",
"nodeType": "YulTypedName",
"src": "5429:6:5",
"type": ""
}
]
},
{
"nativeSrc": "5454:63:5",
"nodeType": "YulAssignment",
"src": "5454:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5489:9:5",
"nodeType": "YulIdentifier",
"src": "5489:9:5"
},
{
"name": "offset",
"nativeSrc": "5500:6:5",
"nodeType": "YulIdentifier",
"src": "5500:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5485:3:5",
"nodeType": "YulIdentifier",
"src": "5485:3:5"
},
"nativeSrc": "5485:22:5",
"nodeType": "YulFunctionCall",
"src": "5485:22:5"
},
{
"name": "dataEnd",
"nativeSrc": "5509:7:5",
"nodeType": "YulIdentifier",
"src": "5509:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "5464:20:5",
"nodeType": "YulIdentifier",
"src": "5464:20:5"
},
"nativeSrc": "5464:53:5",
"nodeType": "YulFunctionCall",
"src": "5464:53:5"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "5454:6:5",
"nodeType": "YulIdentifier",
"src": "5454:6:5"
}
]
}
]
},
{
"nativeSrc": "5537:118:5",
"nodeType": "YulBlock",
"src": "5537:118:5",
"statements": [
{
"nativeSrc": "5552:16:5",
"nodeType": "YulVariableDeclaration",
"src": "5552:16:5",
"value": {
"kind": "number",
"nativeSrc": "5566:2:5",
"nodeType": "YulLiteral",
"src": "5566:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5556:6:5",
"nodeType": "YulTypedName",
"src": "5556:6:5",
"type": ""
}
]
},
{
"nativeSrc": "5582:63:5",
"nodeType": "YulAssignment",
"src": "5582:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5617:9:5",
"nodeType": "YulIdentifier",
"src": "5617:9:5"
},
{
"name": "offset",
"nativeSrc": "5628:6:5",
"nodeType": "YulIdentifier",
"src": "5628:6:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5613:3:5",
"nodeType": "YulIdentifier",
"src": "5613:3:5"
},
"nativeSrc": "5613:22:5",
"nodeType": "YulFunctionCall",
"src": "5613:22:5"
},
{
"name": "dataEnd",
"nativeSrc": "5637:7:5",
"nodeType": "YulIdentifier",
"src": "5637:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "5592:20:5",
"nodeType": "YulIdentifier",
"src": "5592:20:5"
},
"nativeSrc": "5592:53:5",
"nodeType": "YulFunctionCall",
"src": "5592:53:5"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "5582:6:5",
"nodeType": "YulIdentifier",
"src": "5582:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nativeSrc": "5188:474:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5233:9:5",
"nodeType": "YulTypedName",
"src": "5233:9:5",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "5244:7:5",
"nodeType": "YulTypedName",
"src": "5244:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "5256:6:5",
"nodeType": "YulTypedName",
"src": "5256:6:5",
"type": ""
},
{
"name": "value1",
"nativeSrc": "5264:6:5",
"nodeType": "YulTypedName",
"src": "5264:6:5",
"type": ""
}
],
"src": "5188:474:5"
},
{
"body": {
"nativeSrc": "5696:152:5",
"nodeType": "YulBlock",
"src": "5696:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5713:1:5",
"nodeType": "YulLiteral",
"src": "5713:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "5716:77:5",
"nodeType": "YulLiteral",
"src": "5716:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5706:6:5",
"nodeType": "YulIdentifier",
"src": "5706:6:5"
},
"nativeSrc": "5706:88:5",
"nodeType": "YulFunctionCall",
"src": "5706:88:5"
},
"nativeSrc": "5706:88:5",
"nodeType": "YulExpressionStatement",
"src": "5706:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5810:1:5",
"nodeType": "YulLiteral",
"src": "5810:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "5813:4:5",
"nodeType": "YulLiteral",
"src": "5813:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5803:6:5",
"nodeType": "YulIdentifier",
"src": "5803:6:5"
},
"nativeSrc": "5803:15:5",
"nodeType": "YulFunctionCall",
"src": "5803:15:5"
},
"nativeSrc": "5803:15:5",
"nodeType": "YulExpressionStatement",
"src": "5803:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5834:1:5",
"nodeType": "YulLiteral",
"src": "5834:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "5837:4:5",
"nodeType": "YulLiteral",
"src": "5837:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "5827:6:5",
"nodeType": "YulIdentifier",
"src": "5827:6:5"
},
"nativeSrc": "5827:15:5",
"nodeType": "YulFunctionCall",
"src": "5827:15:5"
},
"nativeSrc": "5827:15:5",
"nodeType": "YulExpressionStatement",
"src": "5827:15:5"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "5668:180:5",
"nodeType": "YulFunctionDefinition",
"src": "5668:180:5"
},
{
"body": {
"nativeSrc": "5905:269:5",
"nodeType": "YulBlock",
"src": "5905:269:5",
"statements": [
{
"nativeSrc": "5915:22:5",
"nodeType": "YulAssignment",
"src": "5915:22:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "5929:4:5",
"nodeType": "YulIdentifier",
"src": "5929:4:5"
},
{
"kind": "number",
"nativeSrc": "5935:1:5",
"nodeType": "YulLiteral",
"src": "5935:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "5925:3:5",
"nodeType": "YulIdentifier",
"src": "5925:3:5"
},
"nativeSrc": "5925:12:5",
"nodeType": "YulFunctionCall",
"src": "5925:12:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "5915:6:5",
"nodeType": "YulIdentifier",
"src": "5915:6:5"
}
]
},
{
"nativeSrc": "5946:38:5",
"nodeType": "YulVariableDeclaration",
"src": "5946:38:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "5976:4:5",
"nodeType": "YulIdentifier",
"src": "5976:4:5"
},
{
"kind": "number",
"nativeSrc": "5982:1:5",
"nodeType": "YulLiteral",
"src": "5982:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "5972:3:5",
"nodeType": "YulIdentifier",
"src": "5972:3:5"
},
"nativeSrc": "5972:12:5",
"nodeType": "YulFunctionCall",
"src": "5972:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "5950:18:5",
"nodeType": "YulTypedName",
"src": "5950:18:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "6023:51:5",
"nodeType": "YulBlock",
"src": "6023:51:5",
"statements": [
{
"nativeSrc": "6037:27:5",
"nodeType": "YulAssignment",
"src": "6037:27:5",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "6051:6:5",
"nodeType": "YulIdentifier",
"src": "6051:6:5"
},
{
"kind": "number",
"nativeSrc": "6059:4:5",
"nodeType": "YulLiteral",
"src": "6059:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6047:3:5",
"nodeType": "YulIdentifier",
"src": "6047:3:5"
},
"nativeSrc": "6047:17:5",
"nodeType": "YulFunctionCall",
"src": "6047:17:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6037:6:5",
"nodeType": "YulIdentifier",
"src": "6037:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6003:18:5",
"nodeType": "YulIdentifier",
"src": "6003:18:5"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "5996:6:5",
"nodeType": "YulIdentifier",
"src": "5996:6:5"
},
"nativeSrc": "5996:26:5",
"nodeType": "YulFunctionCall",
"src": "5996:26:5"
},
"nativeSrc": "5993:81:5",
"nodeType": "YulIf",
"src": "5993:81:5"
},
{
"body": {
"nativeSrc": "6126:42:5",
"nodeType": "YulBlock",
"src": "6126:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "6140:16:5",
"nodeType": "YulIdentifier",
"src": "6140:16:5"
},
"nativeSrc": "6140:18:5",
"nodeType": "YulFunctionCall",
"src": "6140:18:5"
},
"nativeSrc": "6140:18:5",
"nodeType": "YulExpressionStatement",
"src": "6140:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6090:18:5",
"nodeType": "YulIdentifier",
"src": "6090:18:5"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "6113:6:5",
"nodeType": "YulIdentifier",
"src": "6113:6:5"
},
{
"kind": "number",
"nativeSrc": "6121:2:5",
"nodeType": "YulLiteral",
"src": "6121:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "6110:2:5",
"nodeType": "YulIdentifier",
"src": "6110:2:5"
},
"nativeSrc": "6110:14:5",
"nodeType": "YulFunctionCall",
"src": "6110:14:5"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "6087:2:5",
"nodeType": "YulIdentifier",
"src": "6087:2:5"
},
"nativeSrc": "6087:38:5",
"nodeType": "YulFunctionCall",
"src": "6087:38:5"
},
"nativeSrc": "6084:84:5",
"nodeType": "YulIf",
"src": "6084:84:5"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "5854:320:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "5889:4:5",
"nodeType": "YulTypedName",
"src": "5889:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "5898:6:5",
"nodeType": "YulTypedName",
"src": "5898:6:5",
"type": ""
}
],
"src": "5854:320:5"
},
{
"body": {
"nativeSrc": "6208:152:5",
"nodeType": "YulBlock",
"src": "6208:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6225:1:5",
"nodeType": "YulLiteral",
"src": "6225:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6228:77:5",
"nodeType": "YulLiteral",
"src": "6228:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6218:6:5",
"nodeType": "YulIdentifier",
"src": "6218:6:5"
},
"nativeSrc": "6218:88:5",
"nodeType": "YulFunctionCall",
"src": "6218:88:5"
},
"nativeSrc": "6218:88:5",
"nodeType": "YulExpressionStatement",
"src": "6218:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6322:1:5",
"nodeType": "YulLiteral",
"src": "6322:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "6325:4:5",
"nodeType": "YulLiteral",
"src": "6325:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6315:6:5",
"nodeType": "YulIdentifier",
"src": "6315:6:5"
},
"nativeSrc": "6315:15:5",
"nodeType": "YulFunctionCall",
"src": "6315:15:5"
},
"nativeSrc": "6315:15:5",
"nodeType": "YulExpressionStatement",
"src": "6315:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6346:1:5",
"nodeType": "YulLiteral",
"src": "6346:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6349:4:5",
"nodeType": "YulLiteral",
"src": "6349:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6339:6:5",
"nodeType": "YulIdentifier",
"src": "6339:6:5"
},
"nativeSrc": "6339:15:5",
"nodeType": "YulFunctionCall",
"src": "6339:15:5"
},
"nativeSrc": "6339:15:5",
"nodeType": "YulExpressionStatement",
"src": "6339:15:5"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "6180:180:5",
"nodeType": "YulFunctionDefinition",
"src": "6180:180:5"
},
{
"body": {
"nativeSrc": "6410:147:5",
"nodeType": "YulBlock",
"src": "6410:147:5",
"statements": [
{
"nativeSrc": "6420:25:5",
"nodeType": "YulAssignment",
"src": "6420:25:5",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6443:1:5",
"nodeType": "YulIdentifier",
"src": "6443:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6425:17:5",
"nodeType": "YulIdentifier",
"src": "6425:17:5"
},
"nativeSrc": "6425:20:5",
"nodeType": "YulFunctionCall",
"src": "6425:20:5"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "6420:1:5",
"nodeType": "YulIdentifier",
"src": "6420:1:5"
}
]
},
{
"nativeSrc": "6454:25:5",
"nodeType": "YulAssignment",
"src": "6454:25:5",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "6477:1:5",
"nodeType": "YulIdentifier",
"src": "6477:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6459:17:5",
"nodeType": "YulIdentifier",
"src": "6459:17:5"
},
"nativeSrc": "6459:20:5",
"nodeType": "YulFunctionCall",
"src": "6459:20:5"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "6454:1:5",
"nodeType": "YulIdentifier",
"src": "6454:1:5"
}
]
},
{
"nativeSrc": "6488:16:5",
"nodeType": "YulAssignment",
"src": "6488:16:5",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6499:1:5",
"nodeType": "YulIdentifier",
"src": "6499:1:5"
},
{
"name": "y",
"nativeSrc": "6502:1:5",
"nodeType": "YulIdentifier",
"src": "6502:1:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6495:3:5",
"nodeType": "YulIdentifier",
"src": "6495:3:5"
},
"nativeSrc": "6495:9:5",
"nodeType": "YulFunctionCall",
"src": "6495:9:5"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "6488:3:5",
"nodeType": "YulIdentifier",
"src": "6488:3:5"
}
]
},
{
"body": {
"nativeSrc": "6528:22:5",
"nodeType": "YulBlock",
"src": "6528:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "6530:16:5",
"nodeType": "YulIdentifier",
"src": "6530:16:5"
},
"nativeSrc": "6530:18:5",
"nodeType": "YulFunctionCall",
"src": "6530:18:5"
},
"nativeSrc": "6530:18:5",
"nodeType": "YulExpressionStatement",
"src": "6530:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "6520:1:5",
"nodeType": "YulIdentifier",
"src": "6520:1:5"
},
{
"name": "sum",
"nativeSrc": "6523:3:5",
"nodeType": "YulIdentifier",
"src": "6523:3:5"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "6517:2:5",
"nodeType": "YulIdentifier",
"src": "6517:2:5"
},
"nativeSrc": "6517:10:5",
"nodeType": "YulFunctionCall",
"src": "6517:10:5"
},
"nativeSrc": "6514:36:5",
"nodeType": "YulIf",
"src": "6514:36:5"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "6366:191:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "6397:1:5",
"nodeType": "YulTypedName",
"src": "6397:1:5",
"type": ""
},
{
"name": "y",
"nativeSrc": "6400:1:5",
"nodeType": "YulTypedName",
"src": "6400:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "6406:3:5",
"nodeType": "YulTypedName",
"src": "6406:3:5",
"type": ""
}
],
"src": "6366:191:5"
},
{
"body": {
"nativeSrc": "6669:118:5",
"nodeType": "YulBlock",
"src": "6669:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "6691:6:5",
"nodeType": "YulIdentifier",
"src": "6691:6:5"
},
{
"kind": "number",
"nativeSrc": "6699:1:5",
"nodeType": "YulLiteral",
"src": "6699:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6687:3:5",
"nodeType": "YulIdentifier",
"src": "6687:3:5"
},
"nativeSrc": "6687:14:5",
"nodeType": "YulFunctionCall",
"src": "6687:14:5"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nativeSrc": "6703:34:5",
"nodeType": "YulLiteral",
"src": "6703:34:5",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6680:6:5",
"nodeType": "YulIdentifier",
"src": "6680:6:5"
},
"nativeSrc": "6680:58:5",
"nodeType": "YulFunctionCall",
"src": "6680:58:5"
},
"nativeSrc": "6680:58:5",
"nodeType": "YulExpressionStatement",
"src": "6680:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "6759:6:5",
"nodeType": "YulIdentifier",
"src": "6759:6:5"
},
{
"kind": "number",
"nativeSrc": "6767:2:5",
"nodeType": "YulLiteral",
"src": "6767:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6755:3:5",
"nodeType": "YulIdentifier",
"src": "6755:3:5"
},
"nativeSrc": "6755:15:5",
"nodeType": "YulFunctionCall",
"src": "6755:15:5"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nativeSrc": "6772:7:5",
"nodeType": "YulLiteral",
"src": "6772:7:5",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6748:6:5",
"nodeType": "YulIdentifier",
"src": "6748:6:5"
},
"nativeSrc": "6748:32:5",
"nodeType": "YulFunctionCall",
"src": "6748:32:5"
},
"nativeSrc": "6748:32:5",
"nodeType": "YulExpressionStatement",
"src": "6748:32:5"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nativeSrc": "6563:224:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "6661:6:5",
"nodeType": "YulTypedName",
"src": "6661:6:5",
"type": ""
}
],
"src": "6563:224:5"
},
{
"body": {
"nativeSrc": "6939:220:5",
"nodeType": "YulBlock",
"src": "6939:220:5",
"statements": [
{
"nativeSrc": "6949:74:5",
"nodeType": "YulAssignment",
"src": "6949:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7015:3:5",
"nodeType": "YulIdentifier",
"src": "7015:3:5"
},
{
"kind": "number",
"nativeSrc": "7020:2:5",
"nodeType": "YulLiteral",
"src": "7020:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "6956:58:5",
"nodeType": "YulIdentifier",
"src": "6956:58:5"
},
"nativeSrc": "6956:67:5",
"nodeType": "YulFunctionCall",
"src": "6956:67:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "6949:3:5",
"nodeType": "YulIdentifier",
"src": "6949:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7121:3:5",
"nodeType": "YulIdentifier",
"src": "7121:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nativeSrc": "7032:88:5",
"nodeType": "YulIdentifier",
"src": "7032:88:5"
},
"nativeSrc": "7032:93:5",
"nodeType": "YulFunctionCall",
"src": "7032:93:5"
},
"nativeSrc": "7032:93:5",
"nodeType": "YulExpressionStatement",
"src": "7032:93:5"
},
{
"nativeSrc": "7134:19:5",
"nodeType": "YulAssignment",
"src": "7134:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7145:3:5",
"nodeType": "YulIdentifier",
"src": "7145:3:5"
},
{
"kind": "number",
"nativeSrc": "7150:2:5",
"nodeType": "YulLiteral",
"src": "7150:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7141:3:5",
"nodeType": "YulIdentifier",
"src": "7141:3:5"
},
"nativeSrc": "7141:12:5",
"nodeType": "YulFunctionCall",
"src": "7141:12:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "7134:3:5",
"nodeType": "YulIdentifier",
"src": "7134:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6793:366:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "6927:3:5",
"nodeType": "YulTypedName",
"src": "6927:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "6935:3:5",
"nodeType": "YulTypedName",
"src": "6935:3:5",
"type": ""
}
],
"src": "6793:366:5"
},
{
"body": {
"nativeSrc": "7336:248:5",
"nodeType": "YulBlock",
"src": "7336:248:5",
"statements": [
{
"nativeSrc": "7346:26:5",
"nodeType": "YulAssignment",
"src": "7346:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7358:9:5",
"nodeType": "YulIdentifier",
"src": "7358:9:5"
},
{
"kind": "number",
"nativeSrc": "7369:2:5",
"nodeType": "YulLiteral",
"src": "7369:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7354:3:5",
"nodeType": "YulIdentifier",
"src": "7354:3:5"
},
"nativeSrc": "7354:18:5",
"nodeType": "YulFunctionCall",
"src": "7354:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7346:4:5",
"nodeType": "YulIdentifier",
"src": "7346:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7393:9:5",
"nodeType": "YulIdentifier",
"src": "7393:9:5"
},
{
"kind": "number",
"nativeSrc": "7404:1:5",
"nodeType": "YulLiteral",
"src": "7404:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7389:3:5",
"nodeType": "YulIdentifier",
"src": "7389:3:5"
},
"nativeSrc": "7389:17:5",
"nodeType": "YulFunctionCall",
"src": "7389:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "7412:4:5",
"nodeType": "YulIdentifier",
"src": "7412:4:5"
},
{
"name": "headStart",
"nativeSrc": "7418:9:5",
"nodeType": "YulIdentifier",
"src": "7418:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7408:3:5",
"nodeType": "YulIdentifier",
"src": "7408:3:5"
},
"nativeSrc": "7408:20:5",
"nodeType": "YulFunctionCall",
"src": "7408:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7382:6:5",
"nodeType": "YulIdentifier",
"src": "7382:6:5"
},
"nativeSrc": "7382:47:5",
"nodeType": "YulFunctionCall",
"src": "7382:47:5"
},
"nativeSrc": "7382:47:5",
"nodeType": "YulExpressionStatement",
"src": "7382:47:5"
},
{
"nativeSrc": "7438:139:5",
"nodeType": "YulAssignment",
"src": "7438:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "7572:4:5",
"nodeType": "YulIdentifier",
"src": "7572:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7446:124:5",
"nodeType": "YulIdentifier",
"src": "7446:124:5"
},
"nativeSrc": "7446:131:5",
"nodeType": "YulFunctionCall",
"src": "7446:131:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7438:4:5",
"nodeType": "YulIdentifier",
"src": "7438:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "7165:419:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7316:9:5",
"nodeType": "YulTypedName",
"src": "7316:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7331:4:5",
"nodeType": "YulTypedName",
"src": "7331:4:5",
"type": ""
}
],
"src": "7165:419:5"
},
{
"body": {
"nativeSrc": "7696:117:5",
"nodeType": "YulBlock",
"src": "7696:117:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "7718:6:5",
"nodeType": "YulIdentifier",
"src": "7718:6:5"
},
{
"kind": "number",
"nativeSrc": "7726:1:5",
"nodeType": "YulLiteral",
"src": "7726:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7714:3:5",
"nodeType": "YulIdentifier",
"src": "7714:3:5"
},
"nativeSrc": "7714:14:5",
"nodeType": "YulFunctionCall",
"src": "7714:14:5"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nativeSrc": "7730:34:5",
"nodeType": "YulLiteral",
"src": "7730:34:5",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7707:6:5",
"nodeType": "YulIdentifier",
"src": "7707:6:5"
},
"nativeSrc": "7707:58:5",
"nodeType": "YulFunctionCall",
"src": "7707:58:5"
},
"nativeSrc": "7707:58:5",
"nodeType": "YulExpressionStatement",
"src": "7707:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "7786:6:5",
"nodeType": "YulIdentifier",
"src": "7786:6:5"
},
{
"kind": "number",
"nativeSrc": "7794:2:5",
"nodeType": "YulLiteral",
"src": "7794:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7782:3:5",
"nodeType": "YulIdentifier",
"src": "7782:3:5"
},
"nativeSrc": "7782:15:5",
"nodeType": "YulFunctionCall",
"src": "7782:15:5"
},
{
"hexValue": "72657373",
"kind": "string",
"nativeSrc": "7799:6:5",
"nodeType": "YulLiteral",
"src": "7799:6:5",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7775:6:5",
"nodeType": "YulIdentifier",
"src": "7775:6:5"
},
"nativeSrc": "7775:31:5",
"nodeType": "YulFunctionCall",
"src": "7775:31:5"
},
"nativeSrc": "7775:31:5",
"nodeType": "YulExpressionStatement",
"src": "7775:31:5"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nativeSrc": "7590:223:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "7688:6:5",
"nodeType": "YulTypedName",
"src": "7688:6:5",
"type": ""
}
],
"src": "7590:223:5"
},
{
"body": {
"nativeSrc": "7965:220:5",
"nodeType": "YulBlock",
"src": "7965:220:5",
"statements": [
{
"nativeSrc": "7975:74:5",
"nodeType": "YulAssignment",
"src": "7975:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8041:3:5",
"nodeType": "YulIdentifier",
"src": "8041:3:5"
},
{
"kind": "number",
"nativeSrc": "8046:2:5",
"nodeType": "YulLiteral",
"src": "8046:2:5",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "7982:58:5",
"nodeType": "YulIdentifier",
"src": "7982:58:5"
},
"nativeSrc": "7982:67:5",
"nodeType": "YulFunctionCall",
"src": "7982:67:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7975:3:5",
"nodeType": "YulIdentifier",
"src": "7975:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8147:3:5",
"nodeType": "YulIdentifier",
"src": "8147:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nativeSrc": "8058:88:5",
"nodeType": "YulIdentifier",
"src": "8058:88:5"
},
"nativeSrc": "8058:93:5",
"nodeType": "YulFunctionCall",
"src": "8058:93:5"
},
"nativeSrc": "8058:93:5",
"nodeType": "YulExpressionStatement",
"src": "8058:93:5"
},
{
"nativeSrc": "8160:19:5",
"nodeType": "YulAssignment",
"src": "8160:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8171:3:5",
"nodeType": "YulIdentifier",
"src": "8171:3:5"
},
{
"kind": "number",
"nativeSrc": "8176:2:5",
"nodeType": "YulLiteral",
"src": "8176:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8167:3:5",
"nodeType": "YulIdentifier",
"src": "8167:3:5"
},
"nativeSrc": "8167:12:5",
"nodeType": "YulFunctionCall",
"src": "8167:12:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8160:3:5",
"nodeType": "YulIdentifier",
"src": "8160:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7819:366:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "7953:3:5",
"nodeType": "YulTypedName",
"src": "7953:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7961:3:5",
"nodeType": "YulTypedName",
"src": "7961:3:5",
"type": ""
}
],
"src": "7819:366:5"
},
{
"body": {
"nativeSrc": "8362:248:5",
"nodeType": "YulBlock",
"src": "8362:248:5",
"statements": [
{
"nativeSrc": "8372:26:5",
"nodeType": "YulAssignment",
"src": "8372:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "8384:9:5",
"nodeType": "YulIdentifier",
"src": "8384:9:5"
},
{
"kind": "number",
"nativeSrc": "8395:2:5",
"nodeType": "YulLiteral",
"src": "8395:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8380:3:5",
"nodeType": "YulIdentifier",
"src": "8380:3:5"
},
"nativeSrc": "8380:18:5",
"nodeType": "YulFunctionCall",
"src": "8380:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8372:4:5",
"nodeType": "YulIdentifier",
"src": "8372:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8419:9:5",
"nodeType": "YulIdentifier",
"src": "8419:9:5"
},
{
"kind": "number",
"nativeSrc": "8430:1:5",
"nodeType": "YulLiteral",
"src": "8430:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8415:3:5",
"nodeType": "YulIdentifier",
"src": "8415:3:5"
},
"nativeSrc": "8415:17:5",
"nodeType": "YulFunctionCall",
"src": "8415:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8438:4:5",
"nodeType": "YulIdentifier",
"src": "8438:4:5"
},
{
"name": "headStart",
"nativeSrc": "8444:9:5",
"nodeType": "YulIdentifier",
"src": "8444:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8434:3:5",
"nodeType": "YulIdentifier",
"src": "8434:3:5"
},
"nativeSrc": "8434:20:5",
"nodeType": "YulFunctionCall",
"src": "8434:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8408:6:5",
"nodeType": "YulIdentifier",
"src": "8408:6:5"
},
"nativeSrc": "8408:47:5",
"nodeType": "YulFunctionCall",
"src": "8408:47:5"
},
"nativeSrc": "8408:47:5",
"nodeType": "YulExpressionStatement",
"src": "8408:47:5"
},
{
"nativeSrc": "8464:139:5",
"nodeType": "YulAssignment",
"src": "8464:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "8598:4:5",
"nodeType": "YulIdentifier",
"src": "8598:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8472:124:5",
"nodeType": "YulIdentifier",
"src": "8472:124:5"
},
"nativeSrc": "8472:131:5",
"nodeType": "YulFunctionCall",
"src": "8472:131:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8464:4:5",
"nodeType": "YulIdentifier",
"src": "8464:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "8191:419:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "8342:9:5",
"nodeType": "YulTypedName",
"src": "8342:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "8357:4:5",
"nodeType": "YulTypedName",
"src": "8357:4:5",
"type": ""
}
],
"src": "8191:419:5"
},
{
"body": {
"nativeSrc": "8722:115:5",
"nodeType": "YulBlock",
"src": "8722:115:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "8744:6:5",
"nodeType": "YulIdentifier",
"src": "8744:6:5"
},
{
"kind": "number",
"nativeSrc": "8752:1:5",
"nodeType": "YulLiteral",
"src": "8752:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8740:3:5",
"nodeType": "YulIdentifier",
"src": "8740:3:5"
},
"nativeSrc": "8740:14:5",
"nodeType": "YulFunctionCall",
"src": "8740:14:5"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nativeSrc": "8756:34:5",
"nodeType": "YulLiteral",
"src": "8756:34:5",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8733:6:5",
"nodeType": "YulIdentifier",
"src": "8733:6:5"
},
"nativeSrc": "8733:58:5",
"nodeType": "YulFunctionCall",
"src": "8733:58:5"
},
"nativeSrc": "8733:58:5",
"nodeType": "YulExpressionStatement",
"src": "8733:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "8812:6:5",
"nodeType": "YulIdentifier",
"src": "8812:6:5"
},
{
"kind": "number",
"nativeSrc": "8820:2:5",
"nodeType": "YulLiteral",
"src": "8820:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8808:3:5",
"nodeType": "YulIdentifier",
"src": "8808:3:5"
},
"nativeSrc": "8808:15:5",
"nodeType": "YulFunctionCall",
"src": "8808:15:5"
},
{
"hexValue": "7373",
"kind": "string",
"nativeSrc": "8825:4:5",
"nodeType": "YulLiteral",
"src": "8825:4:5",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8801:6:5",
"nodeType": "YulIdentifier",
"src": "8801:6:5"
},
"nativeSrc": "8801:29:5",
"nodeType": "YulFunctionCall",
"src": "8801:29:5"
},
"nativeSrc": "8801:29:5",
"nodeType": "YulExpressionStatement",
"src": "8801:29:5"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nativeSrc": "8616:221:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "8714:6:5",
"nodeType": "YulTypedName",
"src": "8714:6:5",
"type": ""
}
],
"src": "8616:221:5"
},
{
"body": {
"nativeSrc": "8989:220:5",
"nodeType": "YulBlock",
"src": "8989:220:5",
"statements": [
{
"nativeSrc": "8999:74:5",
"nodeType": "YulAssignment",
"src": "8999:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9065:3:5",
"nodeType": "YulIdentifier",
"src": "9065:3:5"
},
{
"kind": "number",
"nativeSrc": "9070:2:5",
"nodeType": "YulLiteral",
"src": "9070:2:5",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "9006:58:5",
"nodeType": "YulIdentifier",
"src": "9006:58:5"
},
"nativeSrc": "9006:67:5",
"nodeType": "YulFunctionCall",
"src": "9006:67:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "8999:3:5",
"nodeType": "YulIdentifier",
"src": "8999:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9171:3:5",
"nodeType": "YulIdentifier",
"src": "9171:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nativeSrc": "9082:88:5",
"nodeType": "YulIdentifier",
"src": "9082:88:5"
},
"nativeSrc": "9082:93:5",
"nodeType": "YulFunctionCall",
"src": "9082:93:5"
},
"nativeSrc": "9082:93:5",
"nodeType": "YulExpressionStatement",
"src": "9082:93:5"
},
{
"nativeSrc": "9184:19:5",
"nodeType": "YulAssignment",
"src": "9184:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9195:3:5",
"nodeType": "YulIdentifier",
"src": "9195:3:5"
},
{
"kind": "number",
"nativeSrc": "9200:2:5",
"nodeType": "YulLiteral",
"src": "9200:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9191:3:5",
"nodeType": "YulIdentifier",
"src": "9191:3:5"
},
"nativeSrc": "9191:12:5",
"nodeType": "YulFunctionCall",
"src": "9191:12:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "9184:3:5",
"nodeType": "YulIdentifier",
"src": "9184:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8843:366:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "8977:3:5",
"nodeType": "YulTypedName",
"src": "8977:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8985:3:5",
"nodeType": "YulTypedName",
"src": "8985:3:5",
"type": ""
}
],
"src": "8843:366:5"
},
{
"body": {
"nativeSrc": "9386:248:5",
"nodeType": "YulBlock",
"src": "9386:248:5",
"statements": [
{
"nativeSrc": "9396:26:5",
"nodeType": "YulAssignment",
"src": "9396:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9408:9:5",
"nodeType": "YulIdentifier",
"src": "9408:9:5"
},
{
"kind": "number",
"nativeSrc": "9419:2:5",
"nodeType": "YulLiteral",
"src": "9419:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9404:3:5",
"nodeType": "YulIdentifier",
"src": "9404:3:5"
},
"nativeSrc": "9404:18:5",
"nodeType": "YulFunctionCall",
"src": "9404:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9396:4:5",
"nodeType": "YulIdentifier",
"src": "9396:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9443:9:5",
"nodeType": "YulIdentifier",
"src": "9443:9:5"
},
{
"kind": "number",
"nativeSrc": "9454:1:5",
"nodeType": "YulLiteral",
"src": "9454:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9439:3:5",
"nodeType": "YulIdentifier",
"src": "9439:3:5"
},
"nativeSrc": "9439:17:5",
"nodeType": "YulFunctionCall",
"src": "9439:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9462:4:5",
"nodeType": "YulIdentifier",
"src": "9462:4:5"
},
{
"name": "headStart",
"nativeSrc": "9468:9:5",
"nodeType": "YulIdentifier",
"src": "9468:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9458:3:5",
"nodeType": "YulIdentifier",
"src": "9458:3:5"
},
"nativeSrc": "9458:20:5",
"nodeType": "YulFunctionCall",
"src": "9458:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9432:6:5",
"nodeType": "YulIdentifier",
"src": "9432:6:5"
},
"nativeSrc": "9432:47:5",
"nodeType": "YulFunctionCall",
"src": "9432:47:5"
},
"nativeSrc": "9432:47:5",
"nodeType": "YulExpressionStatement",
"src": "9432:47:5"
},
{
"nativeSrc": "9488:139:5",
"nodeType": "YulAssignment",
"src": "9488:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "9622:4:5",
"nodeType": "YulIdentifier",
"src": "9622:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9496:124:5",
"nodeType": "YulIdentifier",
"src": "9496:124:5"
},
"nativeSrc": "9496:131:5",
"nodeType": "YulFunctionCall",
"src": "9496:131:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9488:4:5",
"nodeType": "YulIdentifier",
"src": "9488:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "9215:419:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9366:9:5",
"nodeType": "YulTypedName",
"src": "9366:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9381:4:5",
"nodeType": "YulTypedName",
"src": "9381:4:5",
"type": ""
}
],
"src": "9215:419:5"
},
{
"body": {
"nativeSrc": "9746:73:5",
"nodeType": "YulBlock",
"src": "9746:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "9768:6:5",
"nodeType": "YulIdentifier",
"src": "9768:6:5"
},
{
"kind": "number",
"nativeSrc": "9776:1:5",
"nodeType": "YulLiteral",
"src": "9776:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9764:3:5",
"nodeType": "YulIdentifier",
"src": "9764:3:5"
},
"nativeSrc": "9764:14:5",
"nodeType": "YulFunctionCall",
"src": "9764:14:5"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nativeSrc": "9780:31:5",
"nodeType": "YulLiteral",
"src": "9780:31:5",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9757:6:5",
"nodeType": "YulIdentifier",
"src": "9757:6:5"
},
"nativeSrc": "9757:55:5",
"nodeType": "YulFunctionCall",
"src": "9757:55:5"
},
"nativeSrc": "9757:55:5",
"nodeType": "YulExpressionStatement",
"src": "9757:55:5"
}
]
},
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nativeSrc": "9640:179:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "9738:6:5",
"nodeType": "YulTypedName",
"src": "9738:6:5",
"type": ""
}
],
"src": "9640:179:5"
},
{
"body": {
"nativeSrc": "9971:220:5",
"nodeType": "YulBlock",
"src": "9971:220:5",
"statements": [
{
"nativeSrc": "9981:74:5",
"nodeType": "YulAssignment",
"src": "9981:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10047:3:5",
"nodeType": "YulIdentifier",
"src": "10047:3:5"
},
{
"kind": "number",
"nativeSrc": "10052:2:5",
"nodeType": "YulLiteral",
"src": "10052:2:5",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "9988:58:5",
"nodeType": "YulIdentifier",
"src": "9988:58:5"
},
"nativeSrc": "9988:67:5",
"nodeType": "YulFunctionCall",
"src": "9988:67:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "9981:3:5",
"nodeType": "YulIdentifier",
"src": "9981:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10153:3:5",
"nodeType": "YulIdentifier",
"src": "10153:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nativeSrc": "10064:88:5",
"nodeType": "YulIdentifier",
"src": "10064:88:5"
},
"nativeSrc": "10064:93:5",
"nodeType": "YulFunctionCall",
"src": "10064:93:5"
},
"nativeSrc": "10064:93:5",
"nodeType": "YulExpressionStatement",
"src": "10064:93:5"
},
{
"nativeSrc": "10166:19:5",
"nodeType": "YulAssignment",
"src": "10166:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10177:3:5",
"nodeType": "YulIdentifier",
"src": "10177:3:5"
},
{
"kind": "number",
"nativeSrc": "10182:2:5",
"nodeType": "YulLiteral",
"src": "10182:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10173:3:5",
"nodeType": "YulIdentifier",
"src": "10173:3:5"
},
"nativeSrc": "10173:12:5",
"nodeType": "YulFunctionCall",
"src": "10173:12:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "10166:3:5",
"nodeType": "YulIdentifier",
"src": "10166:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9825:366:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "9959:3:5",
"nodeType": "YulTypedName",
"src": "9959:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "9967:3:5",
"nodeType": "YulTypedName",
"src": "9967:3:5",
"type": ""
}
],
"src": "9825:366:5"
},
{
"body": {
"nativeSrc": "10368:248:5",
"nodeType": "YulBlock",
"src": "10368:248:5",
"statements": [
{
"nativeSrc": "10378:26:5",
"nodeType": "YulAssignment",
"src": "10378:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "10390:9:5",
"nodeType": "YulIdentifier",
"src": "10390:9:5"
},
{
"kind": "number",
"nativeSrc": "10401:2:5",
"nodeType": "YulLiteral",
"src": "10401:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10386:3:5",
"nodeType": "YulIdentifier",
"src": "10386:3:5"
},
"nativeSrc": "10386:18:5",
"nodeType": "YulFunctionCall",
"src": "10386:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10378:4:5",
"nodeType": "YulIdentifier",
"src": "10378:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10425:9:5",
"nodeType": "YulIdentifier",
"src": "10425:9:5"
},
{
"kind": "number",
"nativeSrc": "10436:1:5",
"nodeType": "YulLiteral",
"src": "10436:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10421:3:5",
"nodeType": "YulIdentifier",
"src": "10421:3:5"
},
"nativeSrc": "10421:17:5",
"nodeType": "YulFunctionCall",
"src": "10421:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "10444:4:5",
"nodeType": "YulIdentifier",
"src": "10444:4:5"
},
{
"name": "headStart",
"nativeSrc": "10450:9:5",
"nodeType": "YulIdentifier",
"src": "10450:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10440:3:5",
"nodeType": "YulIdentifier",
"src": "10440:3:5"
},
"nativeSrc": "10440:20:5",
"nodeType": "YulFunctionCall",
"src": "10440:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10414:6:5",
"nodeType": "YulIdentifier",
"src": "10414:6:5"
},
"nativeSrc": "10414:47:5",
"nodeType": "YulFunctionCall",
"src": "10414:47:5"
},
"nativeSrc": "10414:47:5",
"nodeType": "YulExpressionStatement",
"src": "10414:47:5"
},
{
"nativeSrc": "10470:139:5",
"nodeType": "YulAssignment",
"src": "10470:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "10604:4:5",
"nodeType": "YulIdentifier",
"src": "10604:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10478:124:5",
"nodeType": "YulIdentifier",
"src": "10478:124:5"
},
"nativeSrc": "10478:131:5",
"nodeType": "YulFunctionCall",
"src": "10478:131:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10470:4:5",
"nodeType": "YulIdentifier",
"src": "10470:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "10197:419:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10348:9:5",
"nodeType": "YulTypedName",
"src": "10348:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "10363:4:5",
"nodeType": "YulTypedName",
"src": "10363:4:5",
"type": ""
}
],
"src": "10197:419:5"
},
{
"body": {
"nativeSrc": "10728:118:5",
"nodeType": "YulBlock",
"src": "10728:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "10750:6:5",
"nodeType": "YulIdentifier",
"src": "10750:6:5"
},
{
"kind": "number",
"nativeSrc": "10758:1:5",
"nodeType": "YulLiteral",
"src": "10758:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10746:3:5",
"nodeType": "YulIdentifier",
"src": "10746:3:5"
},
"nativeSrc": "10746:14:5",
"nodeType": "YulFunctionCall",
"src": "10746:14:5"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nativeSrc": "10762:34:5",
"nodeType": "YulLiteral",
"src": "10762:34:5",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10739:6:5",
"nodeType": "YulIdentifier",
"src": "10739:6:5"
},
"nativeSrc": "10739:58:5",
"nodeType": "YulFunctionCall",
"src": "10739:58:5"
},
"nativeSrc": "10739:58:5",
"nodeType": "YulExpressionStatement",
"src": "10739:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "10818:6:5",
"nodeType": "YulIdentifier",
"src": "10818:6:5"
},
{
"kind": "number",
"nativeSrc": "10826:2:5",
"nodeType": "YulLiteral",
"src": "10826:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10814:3:5",
"nodeType": "YulIdentifier",
"src": "10814:3:5"
},
"nativeSrc": "10814:15:5",
"nodeType": "YulFunctionCall",
"src": "10814:15:5"
},
{
"hexValue": "6472657373",
"kind": "string",
"nativeSrc": "10831:7:5",
"nodeType": "YulLiteral",
"src": "10831:7:5",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10807:6:5",
"nodeType": "YulIdentifier",
"src": "10807:6:5"
},
"nativeSrc": "10807:32:5",
"nodeType": "YulFunctionCall",
"src": "10807:32:5"
},
"nativeSrc": "10807:32:5",
"nodeType": "YulExpressionStatement",
"src": "10807:32:5"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nativeSrc": "10622:224:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "10720:6:5",
"nodeType": "YulTypedName",
"src": "10720:6:5",
"type": ""
}
],
"src": "10622:224:5"
},
{
"body": {
"nativeSrc": "10998:220:5",
"nodeType": "YulBlock",
"src": "10998:220:5",
"statements": [
{
"nativeSrc": "11008:74:5",
"nodeType": "YulAssignment",
"src": "11008:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11074:3:5",
"nodeType": "YulIdentifier",
"src": "11074:3:5"
},
{
"kind": "number",
"nativeSrc": "11079:2:5",
"nodeType": "YulLiteral",
"src": "11079:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "11015:58:5",
"nodeType": "YulIdentifier",
"src": "11015:58:5"
},
"nativeSrc": "11015:67:5",
"nodeType": "YulFunctionCall",
"src": "11015:67:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11008:3:5",
"nodeType": "YulIdentifier",
"src": "11008:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11180:3:5",
"nodeType": "YulIdentifier",
"src": "11180:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nativeSrc": "11091:88:5",
"nodeType": "YulIdentifier",
"src": "11091:88:5"
},
"nativeSrc": "11091:93:5",
"nodeType": "YulFunctionCall",
"src": "11091:93:5"
},
"nativeSrc": "11091:93:5",
"nodeType": "YulExpressionStatement",
"src": "11091:93:5"
},
{
"nativeSrc": "11193:19:5",
"nodeType": "YulAssignment",
"src": "11193:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11204:3:5",
"nodeType": "YulIdentifier",
"src": "11204:3:5"
},
{
"kind": "number",
"nativeSrc": "11209:2:5",
"nodeType": "YulLiteral",
"src": "11209:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11200:3:5",
"nodeType": "YulIdentifier",
"src": "11200:3:5"
},
"nativeSrc": "11200:12:5",
"nodeType": "YulFunctionCall",
"src": "11200:12:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11193:3:5",
"nodeType": "YulIdentifier",
"src": "11193:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10852:366:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10986:3:5",
"nodeType": "YulTypedName",
"src": "10986:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "10994:3:5",
"nodeType": "YulTypedName",
"src": "10994:3:5",
"type": ""
}
],
"src": "10852:366:5"
},
{
"body": {
"nativeSrc": "11395:248:5",
"nodeType": "YulBlock",
"src": "11395:248:5",
"statements": [
{
"nativeSrc": "11405:26:5",
"nodeType": "YulAssignment",
"src": "11405:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "11417:9:5",
"nodeType": "YulIdentifier",
"src": "11417:9:5"
},
{
"kind": "number",
"nativeSrc": "11428:2:5",
"nodeType": "YulLiteral",
"src": "11428:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11413:3:5",
"nodeType": "YulIdentifier",
"src": "11413:3:5"
},
"nativeSrc": "11413:18:5",
"nodeType": "YulFunctionCall",
"src": "11413:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11405:4:5",
"nodeType": "YulIdentifier",
"src": "11405:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "11452:9:5",
"nodeType": "YulIdentifier",
"src": "11452:9:5"
},
{
"kind": "number",
"nativeSrc": "11463:1:5",
"nodeType": "YulLiteral",
"src": "11463:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11448:3:5",
"nodeType": "YulIdentifier",
"src": "11448:3:5"
},
"nativeSrc": "11448:17:5",
"nodeType": "YulFunctionCall",
"src": "11448:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "11471:4:5",
"nodeType": "YulIdentifier",
"src": "11471:4:5"
},
{
"name": "headStart",
"nativeSrc": "11477:9:5",
"nodeType": "YulIdentifier",
"src": "11477:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "11467:3:5",
"nodeType": "YulIdentifier",
"src": "11467:3:5"
},
"nativeSrc": "11467:20:5",
"nodeType": "YulFunctionCall",
"src": "11467:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11441:6:5",
"nodeType": "YulIdentifier",
"src": "11441:6:5"
},
"nativeSrc": "11441:47:5",
"nodeType": "YulFunctionCall",
"src": "11441:47:5"
},
"nativeSrc": "11441:47:5",
"nodeType": "YulExpressionStatement",
"src": "11441:47:5"
},
{
"nativeSrc": "11497:139:5",
"nodeType": "YulAssignment",
"src": "11497:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "11631:4:5",
"nodeType": "YulIdentifier",
"src": "11631:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11505:124:5",
"nodeType": "YulIdentifier",
"src": "11505:124:5"
},
"nativeSrc": "11505:131:5",
"nodeType": "YulFunctionCall",
"src": "11505:131:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11497:4:5",
"nodeType": "YulIdentifier",
"src": "11497:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "11224:419:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "11375:9:5",
"nodeType": "YulTypedName",
"src": "11375:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "11390:4:5",
"nodeType": "YulTypedName",
"src": "11390:4:5",
"type": ""
}
],
"src": "11224:419:5"
},
{
"body": {
"nativeSrc": "11755:116:5",
"nodeType": "YulBlock",
"src": "11755:116:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "11777:6:5",
"nodeType": "YulIdentifier",
"src": "11777:6:5"
},
{
"kind": "number",
"nativeSrc": "11785:1:5",
"nodeType": "YulLiteral",
"src": "11785:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11773:3:5",
"nodeType": "YulIdentifier",
"src": "11773:3:5"
},
"nativeSrc": "11773:14:5",
"nodeType": "YulFunctionCall",
"src": "11773:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nativeSrc": "11789:34:5",
"nodeType": "YulLiteral",
"src": "11789:34:5",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11766:6:5",
"nodeType": "YulIdentifier",
"src": "11766:6:5"
},
"nativeSrc": "11766:58:5",
"nodeType": "YulFunctionCall",
"src": "11766:58:5"
},
"nativeSrc": "11766:58:5",
"nodeType": "YulExpressionStatement",
"src": "11766:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "11845:6:5",
"nodeType": "YulIdentifier",
"src": "11845:6:5"
},
{
"kind": "number",
"nativeSrc": "11853:2:5",
"nodeType": "YulLiteral",
"src": "11853:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11841:3:5",
"nodeType": "YulIdentifier",
"src": "11841:3:5"
},
"nativeSrc": "11841:15:5",
"nodeType": "YulFunctionCall",
"src": "11841:15:5"
},
{
"hexValue": "657373",
"kind": "string",
"nativeSrc": "11858:5:5",
"nodeType": "YulLiteral",
"src": "11858:5:5",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11834:6:5",
"nodeType": "YulIdentifier",
"src": "11834:6:5"
},
"nativeSrc": "11834:30:5",
"nodeType": "YulFunctionCall",
"src": "11834:30:5"
},
"nativeSrc": "11834:30:5",
"nodeType": "YulExpressionStatement",
"src": "11834:30:5"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nativeSrc": "11649:222:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "11747:6:5",
"nodeType": "YulTypedName",
"src": "11747:6:5",
"type": ""
}
],
"src": "11649:222:5"
},
{
"body": {
"nativeSrc": "12023:220:5",
"nodeType": "YulBlock",
"src": "12023:220:5",
"statements": [
{
"nativeSrc": "12033:74:5",
"nodeType": "YulAssignment",
"src": "12033:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12099:3:5",
"nodeType": "YulIdentifier",
"src": "12099:3:5"
},
{
"kind": "number",
"nativeSrc": "12104:2:5",
"nodeType": "YulLiteral",
"src": "12104:2:5",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "12040:58:5",
"nodeType": "YulIdentifier",
"src": "12040:58:5"
},
"nativeSrc": "12040:67:5",
"nodeType": "YulFunctionCall",
"src": "12040:67:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "12033:3:5",
"nodeType": "YulIdentifier",
"src": "12033:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12205:3:5",
"nodeType": "YulIdentifier",
"src": "12205:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nativeSrc": "12116:88:5",
"nodeType": "YulIdentifier",
"src": "12116:88:5"
},
"nativeSrc": "12116:93:5",
"nodeType": "YulFunctionCall",
"src": "12116:93:5"
},
"nativeSrc": "12116:93:5",
"nodeType": "YulExpressionStatement",
"src": "12116:93:5"
},
{
"nativeSrc": "12218:19:5",
"nodeType": "YulAssignment",
"src": "12218:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12229:3:5",
"nodeType": "YulIdentifier",
"src": "12229:3:5"
},
{
"kind": "number",
"nativeSrc": "12234:2:5",
"nodeType": "YulLiteral",
"src": "12234:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12225:3:5",
"nodeType": "YulIdentifier",
"src": "12225:3:5"
},
"nativeSrc": "12225:12:5",
"nodeType": "YulFunctionCall",
"src": "12225:12:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "12218:3:5",
"nodeType": "YulIdentifier",
"src": "12218:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11877:366:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "12011:3:5",
"nodeType": "YulTypedName",
"src": "12011:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "12019:3:5",
"nodeType": "YulTypedName",
"src": "12019:3:5",
"type": ""
}
],
"src": "11877:366:5"
},
{
"body": {
"nativeSrc": "12420:248:5",
"nodeType": "YulBlock",
"src": "12420:248:5",
"statements": [
{
"nativeSrc": "12430:26:5",
"nodeType": "YulAssignment",
"src": "12430:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "12442:9:5",
"nodeType": "YulIdentifier",
"src": "12442:9:5"
},
{
"kind": "number",
"nativeSrc": "12453:2:5",
"nodeType": "YulLiteral",
"src": "12453:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12438:3:5",
"nodeType": "YulIdentifier",
"src": "12438:3:5"
},
"nativeSrc": "12438:18:5",
"nodeType": "YulFunctionCall",
"src": "12438:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12430:4:5",
"nodeType": "YulIdentifier",
"src": "12430:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12477:9:5",
"nodeType": "YulIdentifier",
"src": "12477:9:5"
},
{
"kind": "number",
"nativeSrc": "12488:1:5",
"nodeType": "YulLiteral",
"src": "12488:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12473:3:5",
"nodeType": "YulIdentifier",
"src": "12473:3:5"
},
"nativeSrc": "12473:17:5",
"nodeType": "YulFunctionCall",
"src": "12473:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "12496:4:5",
"nodeType": "YulIdentifier",
"src": "12496:4:5"
},
{
"name": "headStart",
"nativeSrc": "12502:9:5",
"nodeType": "YulIdentifier",
"src": "12502:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "12492:3:5",
"nodeType": "YulIdentifier",
"src": "12492:3:5"
},
"nativeSrc": "12492:20:5",
"nodeType": "YulFunctionCall",
"src": "12492:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12466:6:5",
"nodeType": "YulIdentifier",
"src": "12466:6:5"
},
"nativeSrc": "12466:47:5",
"nodeType": "YulFunctionCall",
"src": "12466:47:5"
},
"nativeSrc": "12466:47:5",
"nodeType": "YulExpressionStatement",
"src": "12466:47:5"
},
{
"nativeSrc": "12522:139:5",
"nodeType": "YulAssignment",
"src": "12522:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "12656:4:5",
"nodeType": "YulIdentifier",
"src": "12656:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12530:124:5",
"nodeType": "YulIdentifier",
"src": "12530:124:5"
},
"nativeSrc": "12530:131:5",
"nodeType": "YulFunctionCall",
"src": "12530:131:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12522:4:5",
"nodeType": "YulIdentifier",
"src": "12522:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "12249:419:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "12400:9:5",
"nodeType": "YulTypedName",
"src": "12400:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "12415:4:5",
"nodeType": "YulTypedName",
"src": "12415:4:5",
"type": ""
}
],
"src": "12249:419:5"
},
{
"body": {
"nativeSrc": "12780:119:5",
"nodeType": "YulBlock",
"src": "12780:119:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "12802:6:5",
"nodeType": "YulIdentifier",
"src": "12802:6:5"
},
{
"kind": "number",
"nativeSrc": "12810:1:5",
"nodeType": "YulLiteral",
"src": "12810:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12798:3:5",
"nodeType": "YulIdentifier",
"src": "12798:3:5"
},
"nativeSrc": "12798:14:5",
"nodeType": "YulFunctionCall",
"src": "12798:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nativeSrc": "12814:34:5",
"nodeType": "YulLiteral",
"src": "12814:34:5",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12791:6:5",
"nodeType": "YulIdentifier",
"src": "12791:6:5"
},
"nativeSrc": "12791:58:5",
"nodeType": "YulFunctionCall",
"src": "12791:58:5"
},
"nativeSrc": "12791:58:5",
"nodeType": "YulExpressionStatement",
"src": "12791:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "12870:6:5",
"nodeType": "YulIdentifier",
"src": "12870:6:5"
},
{
"kind": "number",
"nativeSrc": "12878:2:5",
"nodeType": "YulLiteral",
"src": "12878:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12866:3:5",
"nodeType": "YulIdentifier",
"src": "12866:3:5"
},
"nativeSrc": "12866:15:5",
"nodeType": "YulFunctionCall",
"src": "12866:15:5"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nativeSrc": "12883:8:5",
"nodeType": "YulLiteral",
"src": "12883:8:5",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12859:6:5",
"nodeType": "YulIdentifier",
"src": "12859:6:5"
},
"nativeSrc": "12859:33:5",
"nodeType": "YulFunctionCall",
"src": "12859:33:5"
},
"nativeSrc": "12859:33:5",
"nodeType": "YulExpressionStatement",
"src": "12859:33:5"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nativeSrc": "12674:225:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "12772:6:5",
"nodeType": "YulTypedName",
"src": "12772:6:5",
"type": ""
}
],
"src": "12674:225:5"
},
{
"body": {
"nativeSrc": "13051:220:5",
"nodeType": "YulBlock",
"src": "13051:220:5",
"statements": [
{
"nativeSrc": "13061:74:5",
"nodeType": "YulAssignment",
"src": "13061:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13127:3:5",
"nodeType": "YulIdentifier",
"src": "13127:3:5"
},
{
"kind": "number",
"nativeSrc": "13132:2:5",
"nodeType": "YulLiteral",
"src": "13132:2:5",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "13068:58:5",
"nodeType": "YulIdentifier",
"src": "13068:58:5"
},
"nativeSrc": "13068:67:5",
"nodeType": "YulFunctionCall",
"src": "13068:67:5"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "13061:3:5",
"nodeType": "YulIdentifier",
"src": "13061:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13233:3:5",
"nodeType": "YulIdentifier",
"src": "13233:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nativeSrc": "13144:88:5",
"nodeType": "YulIdentifier",
"src": "13144:88:5"
},
"nativeSrc": "13144:93:5",
"nodeType": "YulFunctionCall",
"src": "13144:93:5"
},
"nativeSrc": "13144:93:5",
"nodeType": "YulExpressionStatement",
"src": "13144:93:5"
},
{
"nativeSrc": "13246:19:5",
"nodeType": "YulAssignment",
"src": "13246:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13257:3:5",
"nodeType": "YulIdentifier",
"src": "13257:3:5"
},
{
"kind": "number",
"nativeSrc": "13262:2:5",
"nodeType": "YulLiteral",
"src": "13262:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13253:3:5",
"nodeType": "YulIdentifier",
"src": "13253:3:5"
},
"nativeSrc": "13253:12:5",
"nodeType": "YulFunctionCall",
"src": "13253:12:5"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "13246:3:5",
"nodeType": "YulIdentifier",
"src": "13246:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12905:366:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "13039:3:5",
"nodeType": "YulTypedName",
"src": "13039:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "13047:3:5",
"nodeType": "YulTypedName",
"src": "13047:3:5",
"type": ""
}
],
"src": "12905:366:5"
},
{
"body": {
"nativeSrc": "13448:248:5",
"nodeType": "YulBlock",
"src": "13448:248:5",
"statements": [
{
"nativeSrc": "13458:26:5",
"nodeType": "YulAssignment",
"src": "13458:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "13470:9:5",
"nodeType": "YulIdentifier",
"src": "13470:9:5"
},
{
"kind": "number",
"nativeSrc": "13481:2:5",
"nodeType": "YulLiteral",
"src": "13481:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13466:3:5",
"nodeType": "YulIdentifier",
"src": "13466:3:5"
},
"nativeSrc": "13466:18:5",
"nodeType": "YulFunctionCall",
"src": "13466:18:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "13458:4:5",
"nodeType": "YulIdentifier",
"src": "13458:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13505:9:5",
"nodeType": "YulIdentifier",
"src": "13505:9:5"
},
{
"kind": "number",
"nativeSrc": "13516:1:5",
"nodeType": "YulLiteral",
"src": "13516:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13501:3:5",
"nodeType": "YulIdentifier",
"src": "13501:3:5"
},
"nativeSrc": "13501:17:5",
"nodeType": "YulFunctionCall",
"src": "13501:17:5"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "13524:4:5",
"nodeType": "YulIdentifier",
"src": "13524:4:5"
},
{
"name": "headStart",
"nativeSrc": "13530:9:5",
"nodeType": "YulIdentifier",
"src": "13530:9:5"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "13520:3:5",
"nodeType": "YulIdentifier",
"src": "13520:3:5"
},
"nativeSrc": "13520:20:5",
"nodeType": "YulFunctionCall",
"src": "13520:20:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13494:6:5",
"nodeType": "YulIdentifier",
"src": "13494:6:5"
},
"nativeSrc": "13494:47:5",
"nodeType": "YulFunctionCall",
"src": "13494:47:5"
},
"nativeSrc": "13494:47:5",
"nodeType": "YulExpressionStatement",
"src": "13494:47:5"
},
{
"nativeSrc": "13550:139:5",
"nodeType": "YulAssignment",
"src": "13550:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "13684:4:5",
"nodeType": "YulIdentifier",
"src": "13684:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nativeSrc": "13558:124:5",
"nodeType": "YulIdentifier",
"src": "13558:124:5"
},
"nativeSrc": "13558:131:5",
"nodeType": "YulFunctionCall",
"src": "13558:131:5"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "13550:4:5",
"nodeType": "YulIdentifier",
"src": "13550:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "13277:419:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "13428:9:5",
"nodeType": "YulTypedName",
"src": "13428:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "13443:4:5",
"nodeType": "YulTypedName",
"src": "13443:4:5",
"type": ""
}
],
"src": "13277:419:5"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\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 store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\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 store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\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 store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\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 store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\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 store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\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 store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\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 store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\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 store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\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 store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\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 store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\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 store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\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 store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\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 store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\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}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610b0c565b60405180910390f35b6100e660048036038101906100e19190610bc7565b610308565b6040516100f39190610c22565b60405180910390f35b61010461032b565b6040516101119190610c4c565b60405180910390f35b610134600480360381019061012f9190610c67565b610335565b6040516101419190610c22565b60405180910390f35b610152610364565b60405161015f9190610cd6565b60405180910390f35b610182600480360381019061017d9190610bc7565b61036d565b60405161018f9190610c22565b60405180910390f35b6101b260048036038101906101ad9190610cf1565b6103a4565b6040516101bf9190610c4c565b60405180910390f35b6101d06103ec565b6040516101dd9190610b0c565b60405180910390f35b61020060048036038101906101fb9190610bc7565b61047e565b60405161020d9190610c22565b60405180910390f35b610230600480360381019061022b9190610bc7565b6104f5565b60405161023d9190610c22565b60405180910390f35b610260600480360381019061025b9190610d1e565b610518565b60405161026d9190610c4c565b60405180910390f35b60606003805461028590610d8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610d8d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b60008061031361059f565b90506103208185856105a7565b600191505092915050565b6000600254905090565b60008061034061059f565b905061034d858285610770565b6103588585856107fc565b60019150509392505050565b60006012905090565b60008061037861059f565b905061039981858561038a8589610518565b6103949190610ded565b6105a7565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546103fb90610d8d565b80601f016020809104026020016040519081016040528092919081815260200182805461042790610d8d565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b60008061048961059f565b905060006104978286610518565b9050838110156104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390610e93565b60405180910390fd5b6104e982868684036105a7565b60019250505092915050565b60008061050061059f565b905061050d8185856107fc565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060d90610f25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067c90610fb7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107639190610c4c565b60405180910390a3505050565b600061077c8484610518565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107f657818110156107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df90611023565b60405180910390fd5b6107f584848484036105a7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361086b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610862906110b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d190611147565b60405180910390fd5b6108e5838383610a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610962906111d9565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a599190610c4c565b60405180910390a3610a6c848484610a77565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ab6578082015181840152602081019050610a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ade82610a7c565b610ae88185610a87565b9350610af8818560208601610a98565b610b0181610ac2565b840191505092915050565b60006020820190508181036000830152610b268184610ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610b5e82610b33565b9050919050565b610b6e81610b53565b8114610b7957600080fd5b50565b600081359050610b8b81610b65565b92915050565b6000819050919050565b610ba481610b91565b8114610baf57600080fd5b50565b600081359050610bc181610b9b565b92915050565b60008060408385031215610bde57610bdd610b2e565b5b6000610bec85828601610b7c565b9250506020610bfd85828601610bb2565b9150509250929050565b60008115159050919050565b610c1c81610c07565b82525050565b6000602082019050610c376000830184610c13565b92915050565b610c4681610b91565b82525050565b6000602082019050610c616000830184610c3d565b92915050565b600080600060608486031215610c8057610c7f610b2e565b5b6000610c8e86828701610b7c565b9350506020610c9f86828701610b7c565b9250506040610cb086828701610bb2565b9150509250925092565b600060ff82169050919050565b610cd081610cba565b82525050565b6000602082019050610ceb6000830184610cc7565b92915050565b600060208284031215610d0757610d06610b2e565b5b6000610d1584828501610b7c565b91505092915050565b60008060408385031215610d3557610d34610b2e565b5b6000610d4385828601610b7c565b9250506020610d5485828601610b7c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610da557607f821691505b602082108103610db857610db7610d5e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610df882610b91565b9150610e0383610b91565b9250828201905080821115610e1b57610e1a610dbe565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000610e7d602583610a87565b9150610e8882610e21565b604082019050919050565b60006020820190508181036000830152610eac81610e70565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610f0f602483610a87565b9150610f1a82610eb3565b604082019050919050565b60006020820190508181036000830152610f3e81610f02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610fa1602283610a87565b9150610fac82610f45565b604082019050919050565b60006020820190508181036000830152610fd081610f94565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061100d601d83610a87565b915061101882610fd7565b602082019050919050565b6000602082019050818103600083015261103c81611000565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061109f602583610a87565b91506110aa82611043565b604082019050919050565b600060208201905081810360008301526110ce81611092565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611131602383610a87565b915061113c826110d5565b604082019050919050565b6000602082019050818103600083015261116081611124565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006111c3602683610a87565b91506111ce82611167565b604082019050919050565b600060208201905081810360008301526111f2816111b6565b905091905056fea26469706673582212207412e721ac2f05d2c622d2c09220cb7d7ffd21e4bd19d26b3136ce85751f4d5a64736f6c63430008150033",
"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 0xB0C 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 0xBC7 JUMP JUMPDEST PUSH2 0x308 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xC22 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 0xC4C 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 0xC67 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x141 SWAP2 SWAP1 PUSH2 0xC22 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 0xCD6 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 0xBC7 JUMP JUMPDEST PUSH2 0x36D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18F SWAP2 SWAP1 PUSH2 0xC22 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 0xCF1 JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0xC4C 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 0xB0C 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 0xBC7 JUMP JUMPDEST PUSH2 0x47E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x20D SWAP2 SWAP1 PUSH2 0xC22 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 0xBC7 JUMP JUMPDEST PUSH2 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0xC22 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 0xD1E JUMP JUMPDEST PUSH2 0x518 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x285 SWAP1 PUSH2 0xD8D 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 0xD8D 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 0x770 JUMP JUMPDEST PUSH2 0x358 DUP6 DUP6 DUP6 PUSH2 0x7FC 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 0xDED 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 0xD8D 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 0xD8D 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 0xE93 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 0x7FC 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 SUB PUSH2 0x616 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x60D SWAP1 PUSH2 0xF25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x685 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x67C SWAP1 PUSH2 0xFB7 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 0x763 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x77C DUP5 DUP5 PUSH2 0x518 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7F6 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DF SWAP1 PUSH2 0x1023 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7F5 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 SUB PUSH2 0x86B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x862 SWAP1 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8D1 SWAP1 PUSH2 0x1147 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8E5 DUP4 DUP4 DUP4 PUSH2 0xA72 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 0x96B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x962 SWAP1 PUSH2 0x11D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xA59 SWAP2 SWAP1 PUSH2 0xC4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xA6C DUP5 DUP5 DUP5 PUSH2 0xA77 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAB6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA9B JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xADE DUP3 PUSH2 0xA7C JUMP JUMPDEST PUSH2 0xAE8 DUP2 DUP6 PUSH2 0xA87 JUMP JUMPDEST SWAP4 POP PUSH2 0xAF8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA98 JUMP JUMPDEST PUSH2 0xB01 DUP2 PUSH2 0xAC2 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xB26 DUP2 DUP5 PUSH2 0xAD3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB5E DUP3 PUSH2 0xB33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB6E DUP2 PUSH2 0xB53 JUMP JUMPDEST DUP2 EQ PUSH2 0xB79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB8B DUP2 PUSH2 0xB65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBA4 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP2 EQ PUSH2 0xBAF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xBC1 DUP2 PUSH2 0xB9B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBDE JUMPI PUSH2 0xBDD PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBEC DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBFD DUP6 DUP3 DUP7 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC1C DUP2 PUSH2 0xC07 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC37 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC13 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC46 DUP2 PUSH2 0xB91 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xC61 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xC3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xC80 JUMPI PUSH2 0xC7F PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC8E DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0xC9F DUP7 DUP3 DUP8 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xCB0 DUP7 DUP3 DUP8 ADD PUSH2 0xBB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xCD0 DUP2 PUSH2 0xCBA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xCEB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCC7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD07 JUMPI PUSH2 0xD06 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD15 DUP5 DUP3 DUP6 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xD35 JUMPI PUSH2 0xD34 PUSH2 0xB2E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xD43 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xD54 DUP6 DUP3 DUP7 ADD PUSH2 0xB7C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDA5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xDB8 JUMPI PUSH2 0xDB7 PUSH2 0xD5E 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 PUSH1 0x0 PUSH2 0xDF8 DUP3 PUSH2 0xB91 JUMP JUMPDEST SWAP2 POP PUSH2 0xE03 DUP4 PUSH2 0xB91 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xE1B JUMPI PUSH2 0xE1A PUSH2 0xDBE JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE7D PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xE88 DUP3 PUSH2 0xE21 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xEAC DUP2 PUSH2 0xE70 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF0F PUSH1 0x24 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xF1A DUP3 PUSH2 0xEB3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF3E DUP2 PUSH2 0xF02 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFA1 PUSH1 0x22 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0xFAC DUP3 PUSH2 0xF45 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFD0 DUP2 PUSH2 0xF94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x100D PUSH1 0x1D DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x1018 DUP3 PUSH2 0xFD7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x103C DUP2 PUSH2 0x1000 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x109F PUSH1 0x25 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x10AA DUP3 PUSH2 0x1043 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10CE DUP2 PUSH2 0x1092 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1131 PUSH1 0x23 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x113C DUP3 PUSH2 0x10D5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1160 DUP2 PUSH2 0x1124 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C3 PUSH1 0x26 DUP4 PUSH2 0xA87 JUMP JUMPDEST SWAP2 POP PUSH2 0x11CE DUP3 PUSH2 0x1167 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x11F2 DUP2 PUSH2 0x11B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH21 0x12E721AC2F05D2C622D2C09220CB7D7FFD21E4BD19 0xD2 PUSH12 0x3136CE85751F4D5A64736F6C PUSH4 0x43000815 STOP CALLER ",
"sourceMap": "114:131:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4444:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3255:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5203:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5854:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3419:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2369:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6575:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3740:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3987:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:98;2212:13;2244:5;2237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2158:98;:::o;4444:197::-;4527:4;4543:13;4559:12;:10;:12::i;:::-;4543:28;;4581:32;4590:5;4597:7;4606:6;4581:8;:32::i;:::-;4630:4;4623:11;;;4444:197;;;;:::o;3255:106::-;3316:7;3342:12;;3335:19;;3255:106;:::o;5203:256::-;5300:4;5316:15;5334:12;:10;:12::i;:::-;5316:30;;5356:38;5372:4;5378:7;5387:6;5356:15;:38::i;:::-;5404:27;5414:4;5420:2;5424:6;5404:9;:27::i;:::-;5448:4;5441:11;;;5203:256;;;;;:::o;3104:91::-;3162:5;3186:2;3179:9;;3104:91;:::o;5854:234::-;5942:4;5958:13;5974:12;:10;:12::i;:::-;5958:28;;5996:64;6005:5;6012:7;6049:10;6021:25;6031:5;6038:7;6021:9;:25::i;:::-;:38;;;;:::i;:::-;5996:8;:64::i;:::-;6077:4;6070:11;;;5854:234;;;;:::o;3419:125::-;3493:7;3519:9;:18;3529:7;3519:18;;;;;;;;;;;;;;;;3512:25;;3419:125;;;:::o;2369:102::-;2425:13;2457:7;2450:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2369:102;:::o;6575:427::-;6668:4;6684:13;6700:12;:10;:12::i;:::-;6684:28;;6722:24;6749:25;6759:5;6766:7;6749:9;:25::i;:::-;6722:52;;6812:15;6792:16;:35;;6784:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6903:60;6912:5;6919:7;6947:15;6928:16;:34;6903:8;:60::i;:::-;6991:4;6984:11;;;;6575:427;;;;:::o;3740:189::-;3819:4;3835:13;3851:12;:10;:12::i;:::-;3835:28;;3873;3883:5;3890:2;3894:6;3873:9;:28::i;:::-;3918:4;3911:11;;;3740:189;;;;:::o;3987:149::-;4076:7;4102:11;:18;4114:5;4102:18;;;;;;;;;;;;;;;:27;4121:7;4102:27;;;;;;;;;;;;;;;;4095:34;;3987:149;;;;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;10457:340:0:-;10575:1;10558:19;;:5;:19;;;10550:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10655:1;10636:21;;:7;:21;;;10628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10737:6;10707:11;:18;10719:5;10707:18;;;;;;;;;;;;;;;:27;10726:7;10707:27;;;;;;;;;;;;;;;:36;;;;10774:7;10758:32;;10767:5;10758:32;;;10783:6;10758:32;;;;;;:::i;:::-;;;;;;;;10457:340;;;:::o;11078:411::-;11178:24;11205:25;11215:5;11222:7;11205:9;:25::i;:::-;11178:52;;11264:17;11244:16;:37;11240:243;;11325:6;11305:16;:26;;11297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11407:51;11416:5;11423:7;11451:6;11432:16;:25;11407:8;:51::i;:::-;11240:243;11168:321;11078:411;;;:::o;7456:788::-;7568:1;7552:18;;:4;:18;;;7544:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7644:1;7630:16;;:2;:16;;;7622:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:38;7718:4;7724:2;7728:6;7697:20;:38::i;:::-;7746:19;7768:9;:15;7778:4;7768:15;;;;;;;;;;;;;;;;7746:37;;7816:6;7801:11;:21;;7793:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7931:6;7917:11;:20;7899:9;:15;7909:4;7899:15;;;;;;;;;;;;;;;:38;;;;8131:6;8114:9;:13;8124:2;8114:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8178:2;8163:26;;8172:4;8163:26;;;8182:6;8163:26;;;;;;:::i;:::-;;;;;;;;8200:37;8220:4;8226:2;8230:6;8200:19;:37::i;:::-;7534:710;7456:788;;;:::o;12073:91::-;;;;:::o;12752:90::-;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:180::-;6228:77;6225:1;6218:88;6325:4;6322:1;6315:15;6349:4;6346:1;6339:15;6366:191;6406:3;6425:20;6443:1;6425:20;:::i;:::-;6420:25;;6459:20;6477:1;6459:20;:::i;:::-;6454:25;;6502:1;6499;6495:9;6488:16;;6523:3;6520:1;6517:10;6514:36;;;6530:18;;:::i;:::-;6514:36;6366:191;;;;:::o;6563:224::-;6703:34;6699:1;6691:6;6687:14;6680:58;6772:7;6767:2;6759:6;6755:15;6748:32;6563:224;:::o;6793:366::-;6935:3;6956:67;7020:2;7015:3;6956:67;:::i;:::-;6949:74;;7032:93;7121:3;7032:93;:::i;:::-;7150:2;7145:3;7141:12;7134:19;;6793:366;;;:::o;7165:419::-;7331:4;7369:2;7358:9;7354:18;7346:26;;7418:9;7412:4;7408:20;7404:1;7393:9;7389:17;7382:47;7446:131;7572:4;7446:131;:::i;:::-;7438:139;;7165:419;;;:::o;7590:223::-;7730:34;7726:1;7718:6;7714:14;7707:58;7799:6;7794:2;7786:6;7782:15;7775:31;7590:223;:::o;7819:366::-;7961:3;7982:67;8046:2;8041:3;7982:67;:::i;:::-;7975:74;;8058:93;8147:3;8058:93;:::i;:::-;8176:2;8171:3;8167:12;8160:19;;7819:366;;;:::o;8191:419::-;8357:4;8395:2;8384:9;8380:18;8372:26;;8444:9;8438:4;8434:20;8430:1;8419:9;8415:17;8408:47;8472:131;8598:4;8472:131;:::i;:::-;8464:139;;8191:419;;;:::o;8616:221::-;8756:34;8752:1;8744:6;8740:14;8733:58;8825:4;8820:2;8812:6;8808:15;8801:29;8616:221;:::o;8843:366::-;8985:3;9006:67;9070:2;9065:3;9006:67;:::i;:::-;8999:74;;9082:93;9171:3;9082:93;:::i;:::-;9200:2;9195:3;9191:12;9184:19;;8843:366;;;:::o;9215:419::-;9381:4;9419:2;9408:9;9404:18;9396:26;;9468:9;9462:4;9458:20;9454:1;9443:9;9439:17;9432:47;9496:131;9622:4;9496:131;:::i;:::-;9488:139;;9215:419;;;:::o;9640:179::-;9780:31;9776:1;9768:6;9764:14;9757:55;9640:179;:::o;9825:366::-;9967:3;9988:67;10052:2;10047:3;9988:67;:::i;:::-;9981:74;;10064:93;10153:3;10064:93;:::i;:::-;10182:2;10177:3;10173:12;10166:19;;9825:366;;;:::o;10197:419::-;10363:4;10401:2;10390:9;10386:18;10378:26;;10450:9;10444:4;10440:20;10436:1;10425:9;10421:17;10414:47;10478:131;10604:4;10478:131;:::i;:::-;10470:139;;10197:419;;;:::o;10622:224::-;10762:34;10758:1;10750:6;10746:14;10739:58;10831:7;10826:2;10818:6;10814:15;10807:32;10622:224;:::o;10852:366::-;10994:3;11015:67;11079:2;11074:3;11015:67;:::i;:::-;11008:74;;11091:93;11180:3;11091:93;:::i;:::-;11209:2;11204:3;11200:12;11193:19;;10852:366;;;:::o;11224:419::-;11390:4;11428:2;11417:9;11413:18;11405:26;;11477:9;11471:4;11467:20;11463:1;11452:9;11448:17;11441:47;11505:131;11631:4;11505:131;:::i;:::-;11497:139;;11224:419;;;:::o;11649:222::-;11789:34;11785:1;11777:6;11773:14;11766:58;11858:5;11853:2;11845:6;11841:15;11834:30;11649:222;:::o;11877:366::-;12019:3;12040:67;12104:2;12099:3;12040:67;:::i;:::-;12033:74;;12116:93;12205:3;12116:93;:::i;:::-;12234:2;12229:3;12225:12;12218:19;;11877:366;;;:::o;12249:419::-;12415:4;12453:2;12442:9;12438:18;12430:26;;12502:9;12496:4;12492:20;12488:1;12477:9;12473:17;12466:47;12530:131;12656:4;12530:131;:::i;:::-;12522:139;;12249:419;;;:::o;12674:225::-;12814:34;12810:1;12802:6;12798:14;12791:58;12883:8;12878:2;12870:6;12866:15;12859:33;12674:225;:::o;12905:366::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:419::-;13443:4;13481:2;13470:9;13466:18;13458:26;;13530:9;13524:4;13520:20;13516:1;13505:9;13501:17;13494:47;13558:131;13684:4;13558:131;:::i;:::-;13550:139;;13277:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "931000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2863",
"decimals()": "432",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2482",
"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": [],
"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.21+commit.d9974bed"
},
"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": "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": {
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"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 default value returned by this function, unless it's 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/BasedToken.sol": "BasedToken"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0xa56ca923f70c1748830700250b19c61b70db9a683516dc5e216694a50445d99c",
"license": "MIT",
"urls": [
"bzz-raw://cac938788bc4be12101e59d45588b4e059579f4e61062e1cda8d6b06c0191b15",
"dweb:/ipfs/QmV2JKCyjTVH3rkWNrfdJRhAT7tZ3usAN2XcnD4h53Mvih"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305",
"license": "MIT",
"urls": [
"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5",
"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53"
]
},
"@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/BasedToken.sol": {
"keccak256": "0x05422cf863ce6c3b796fc2d9fdcebf8184c03674a2f254c995b09e1421b809cf",
"license": "MIT",
"urls": [
"bzz-raw://883309b03d59d258544ee38b0407f97a433549a730f8ffb90f690cd69081de0c",
"dweb:/ipfs/QmQgCdgUqFYxkmLmgdMR2tDcrfqsfHNNP2DdMJBSDv2Gpo"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_145": {
"entryPoint": null,
"id": 145,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 354,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address_fromMemory": {
"entryPoint": 377,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 308,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 276,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 271,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 328,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:1355:3",
"nodeType": "YulBlock",
"src": "0:1355:3",
"statements": [
{
"body": {
"nativeSrc": "47:35:3",
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nativeSrc": "57:19:3",
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:3",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:3",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nativeSrc": "67:9:3",
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:3",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:3",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:3",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nativeSrc": "177:28:3",
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:3",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:3",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:3",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nativeSrc": "187:12:3",
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nativeSrc": "187:12:3",
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:3",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nativeSrc": "300:28:3",
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:3",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:3",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:3",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nativeSrc": "310:12:3",
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nativeSrc": "310:12:3",
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:3",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nativeSrc": "379:81:3",
"nodeType": "YulBlock",
"src": "379:81:3",
"statements": [
{
"nativeSrc": "389:65:3",
"nodeType": "YulAssignment",
"src": "389:65:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "404:5:3",
"nodeType": "YulIdentifier",
"src": "404:5:3"
},
{
"kind": "number",
"nativeSrc": "411:42:3",
"nodeType": "YulLiteral",
"src": "411:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "400:3:3",
"nodeType": "YulIdentifier",
"src": "400:3:3"
},
"nativeSrc": "400:54:3",
"nodeType": "YulFunctionCall",
"src": "400:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "389:7:3",
"nodeType": "YulIdentifier",
"src": "389:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "334:126:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "361:5:3",
"nodeType": "YulTypedName",
"src": "361:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "371:7:3",
"nodeType": "YulTypedName",
"src": "371:7:3",
"type": ""
}
],
"src": "334:126:3"
},
{
"body": {
"nativeSrc": "511:51:3",
"nodeType": "YulBlock",
"src": "511:51:3",
"statements": [
{
"nativeSrc": "521:35:3",
"nodeType": "YulAssignment",
"src": "521:35:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "550:5:3",
"nodeType": "YulIdentifier",
"src": "550:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "532:17:3",
"nodeType": "YulIdentifier",
"src": "532:17:3"
},
"nativeSrc": "532:24:3",
"nodeType": "YulFunctionCall",
"src": "532:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "521:7:3",
"nodeType": "YulIdentifier",
"src": "521:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "466:96:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "493:5:3",
"nodeType": "YulTypedName",
"src": "493:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "503:7:3",
"nodeType": "YulTypedName",
"src": "503:7:3",
"type": ""
}
],
"src": "466:96:3"
},
{
"body": {
"nativeSrc": "611:79:3",
"nodeType": "YulBlock",
"src": "611:79:3",
"statements": [
{
"body": {
"nativeSrc": "668:16:3",
"nodeType": "YulBlock",
"src": "668:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "677:1:3",
"nodeType": "YulLiteral",
"src": "677:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "680:1:3",
"nodeType": "YulLiteral",
"src": "680:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "670:6:3",
"nodeType": "YulIdentifier",
"src": "670:6:3"
},
"nativeSrc": "670:12:3",
"nodeType": "YulFunctionCall",
"src": "670:12:3"
},
"nativeSrc": "670:12:3",
"nodeType": "YulExpressionStatement",
"src": "670:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "634:5:3",
"nodeType": "YulIdentifier",
"src": "634:5:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "659:5:3",
"nodeType": "YulIdentifier",
"src": "659:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "641:17:3",
"nodeType": "YulIdentifier",
"src": "641:17:3"
},
"nativeSrc": "641:24:3",
"nodeType": "YulFunctionCall",
"src": "641:24:3"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "631:2:3",
"nodeType": "YulIdentifier",
"src": "631:2:3"
},
"nativeSrc": "631:35:3",
"nodeType": "YulFunctionCall",
"src": "631:35:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "624:6:3",
"nodeType": "YulIdentifier",
"src": "624:6:3"
},
"nativeSrc": "624:43:3",
"nodeType": "YulFunctionCall",
"src": "624:43:3"
},
"nativeSrc": "621:63:3",
"nodeType": "YulIf",
"src": "621:63:3"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "568:122:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "604:5:3",
"nodeType": "YulTypedName",
"src": "604:5:3",
"type": ""
}
],
"src": "568:122:3"
},
{
"body": {
"nativeSrc": "759:80:3",
"nodeType": "YulBlock",
"src": "759:80:3",
"statements": [
{
"nativeSrc": "769:22:3",
"nodeType": "YulAssignment",
"src": "769:22:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "784:6:3",
"nodeType": "YulIdentifier",
"src": "784:6:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "778:5:3",
"nodeType": "YulIdentifier",
"src": "778:5:3"
},
"nativeSrc": "778:13:3",
"nodeType": "YulFunctionCall",
"src": "778:13:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "769:5:3",
"nodeType": "YulIdentifier",
"src": "769:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "827:5:3",
"nodeType": "YulIdentifier",
"src": "827:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "800:26:3",
"nodeType": "YulIdentifier",
"src": "800:26:3"
},
"nativeSrc": "800:33:3",
"nodeType": "YulFunctionCall",
"src": "800:33:3"
},
"nativeSrc": "800:33:3",
"nodeType": "YulExpressionStatement",
"src": "800:33:3"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nativeSrc": "696:143:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "737:6:3",
"nodeType": "YulTypedName",
"src": "737:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "745:3:3",
"nodeType": "YulTypedName",
"src": "745:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "753:5:3",
"nodeType": "YulTypedName",
"src": "753:5:3",
"type": ""
}
],
"src": "696:143:3"
},
{
"body": {
"nativeSrc": "939:413:3",
"nodeType": "YulBlock",
"src": "939:413:3",
"statements": [
{
"body": {
"nativeSrc": "985:83:3",
"nodeType": "YulBlock",
"src": "985:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "987:77:3",
"nodeType": "YulIdentifier",
"src": "987:77:3"
},
"nativeSrc": "987:79:3",
"nodeType": "YulFunctionCall",
"src": "987:79:3"
},
"nativeSrc": "987:79:3",
"nodeType": "YulExpressionStatement",
"src": "987:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "960:7:3",
"nodeType": "YulIdentifier",
"src": "960:7:3"
},
{
"name": "headStart",
"nativeSrc": "969:9:3",
"nodeType": "YulIdentifier",
"src": "969:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "956:3:3",
"nodeType": "YulIdentifier",
"src": "956:3:3"
},
"nativeSrc": "956:23:3",
"nodeType": "YulFunctionCall",
"src": "956:23:3"
},
{
"kind": "number",
"nativeSrc": "981:2:3",
"nodeType": "YulLiteral",
"src": "981:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "952:3:3",
"nodeType": "YulIdentifier",
"src": "952:3:3"
},
"nativeSrc": "952:32:3",
"nodeType": "YulFunctionCall",
"src": "952:32:3"
},
"nativeSrc": "949:119:3",
"nodeType": "YulIf",
"src": "949:119:3"
},
{
"nativeSrc": "1078:128:3",
"nodeType": "YulBlock",
"src": "1078:128:3",
"statements": [
{
"nativeSrc": "1093:15:3",
"nodeType": "YulVariableDeclaration",
"src": "1093:15:3",
"value": {
"kind": "number",
"nativeSrc": "1107:1:3",
"nodeType": "YulLiteral",
"src": "1107:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1097:6:3",
"nodeType": "YulTypedName",
"src": "1097:6:3",
"type": ""
}
]
},
{
"nativeSrc": "1122:74:3",
"nodeType": "YulAssignment",
"src": "1122:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1168:9:3",
"nodeType": "YulIdentifier",
"src": "1168:9:3"
},
{
"name": "offset",
"nativeSrc": "1179:6:3",
"nodeType": "YulIdentifier",
"src": "1179:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1164:3:3",
"nodeType": "YulIdentifier",
"src": "1164:3:3"
},
"nativeSrc": "1164:22:3",
"nodeType": "YulFunctionCall",
"src": "1164:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "1188:7:3",
"nodeType": "YulIdentifier",
"src": "1188:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nativeSrc": "1132:31:3",
"nodeType": "YulIdentifier",
"src": "1132:31:3"
},
"nativeSrc": "1132:64:3",
"nodeType": "YulFunctionCall",
"src": "1132:64:3"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1122:6:3",
"nodeType": "YulIdentifier",
"src": "1122:6:3"
}
]
}
]
},
{
"nativeSrc": "1216:129:3",
"nodeType": "YulBlock",
"src": "1216:129:3",
"statements": [
{
"nativeSrc": "1231:16:3",
"nodeType": "YulVariableDeclaration",
"src": "1231:16:3",
"value": {
"kind": "number",
"nativeSrc": "1245:2:3",
"nodeType": "YulLiteral",
"src": "1245:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1235:6:3",
"nodeType": "YulTypedName",
"src": "1235:6:3",
"type": ""
}
]
},
{
"nativeSrc": "1261:74:3",
"nodeType": "YulAssignment",
"src": "1261:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1307:9:3",
"nodeType": "YulIdentifier",
"src": "1307:9:3"
},
{
"name": "offset",
"nativeSrc": "1318:6:3",
"nodeType": "YulIdentifier",
"src": "1318:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1303:3:3",
"nodeType": "YulIdentifier",
"src": "1303:3:3"
},
"nativeSrc": "1303:22:3",
"nodeType": "YulFunctionCall",
"src": "1303:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "1327:7:3",
"nodeType": "YulIdentifier",
"src": "1327:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nativeSrc": "1271:31:3",
"nodeType": "YulIdentifier",
"src": "1271:31:3"
},
"nativeSrc": "1271:64:3",
"nodeType": "YulFunctionCall",
"src": "1271:64:3"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "1261:6:3",
"nodeType": "YulIdentifier",
"src": "1261:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address_fromMemory",
"nativeSrc": "845:507:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "901:9:3",
"nodeType": "YulTypedName",
"src": "901:9:3",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "912:7:3",
"nodeType": "YulTypedName",
"src": "912:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "924:6:3",
"nodeType": "YulTypedName",
"src": "924:6:3",
"type": ""
},
{
"name": "value1",
"nativeSrc": "932:6:3",
"nodeType": "YulTypedName",
"src": "932:6:3",
"type": ""
}
],
"src": "845:507:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_address_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526408d8f9fc0060035560466004553480156200001f57600080fd5b50604051620011fa380380620011fa833981810160405281019062000045919062000179565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050620001c0565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001418262000114565b9050919050565b620001538162000134565b81146200015f57600080fd5b50565b600081519050620001738162000148565b92915050565b600080604083850312156200019357620001926200010f565b5b6000620001a38582860162000162565b9250506020620001b68582860162000162565b9150509250929050565b61102a80620001d06000396000f3fe6080604052600436106100865760003560e01c8063594351c511610059578063594351c5146101145780638da5cb5b1461013f578063d2d93f901461016a578063e086e5ec14610195578063eedd8624146101ac57610086565b8063150d283d1461008b5780631daa0a261461009557806324dd0b46146100c05780632ab370a4146100e9575b600080fd5b6100936101c3565b005b3480156100a157600080fd5b506100aa61035e565b6040516100b79190610a66565b60405180910390f35b3480156100cc57600080fd5b506100e760048036038101906100e29190610abc565b610384565b005b3480156100f557600080fd5b506100fe61066a565b60405161010b9190610a66565b60405180910390f35b34801561012057600080fd5b50610129610690565b6040516101369190610af8565b60405180910390f35b34801561014b57600080fd5b50610154610696565b6040516101619190610b34565b60405180910390f35b34801561017657600080fd5b5061017f6106ba565b60405161018c9190610af8565b60405180910390f35b3480156101a157600080fd5b506101aa6106c0565b005b3480156101b857600080fd5b506101c16107b7565b005b6000600354600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102599190610b88565b600a6102659190610d17565b346102709190610d62565b61027a9190610dd3565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016102d9929190610e04565b6020604051808303816000875af11580156102f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031c9190610e65565b61035b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035290610eef565b60405180910390fd5b50565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104179190610b88565b600a6104239190610d17565b6004546104309190610d62565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561049d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c19190610b88565b600a6104cd9190610d17565b836104d89190610d62565b6104e29190610dd3565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161054393929190610f0f565b6020604051808303816000875af1158015610562573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105869190610e65565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016105e4929190610e04565b6020604051808303816000875af1158015610603573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106279190610e65565b610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90610eef565b60405180910390fd5b5050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461074e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074590610f92565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156107b4573d6000803e3d6000fd5b50565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90610f92565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108a29190610b34565b602060405180830381865afa1580156108bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e39190610fc7565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610962929190610e04565b6020604051808303816000875af1158015610981573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a59190610e65565b6109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90610eef565b60405180910390fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610a2c610a27610a22846109e7565b610a07565b6109e7565b9050919050565b6000610a3e82610a11565b9050919050565b6000610a5082610a33565b9050919050565b610a6081610a45565b82525050565b6000602082019050610a7b6000830184610a57565b92915050565b600080fd5b6000819050919050565b610a9981610a86565b8114610aa457600080fd5b50565b600081359050610ab681610a90565b92915050565b600060208284031215610ad257610ad1610a81565b5b6000610ae084828501610aa7565b91505092915050565b610af281610a86565b82525050565b6000602082019050610b0d6000830184610ae9565b92915050565b6000610b1e826109e7565b9050919050565b610b2e81610b13565b82525050565b6000602082019050610b496000830184610b25565b92915050565b600060ff82169050919050565b610b6581610b4f565b8114610b7057600080fd5b50565b600081519050610b8281610b5c565b92915050565b600060208284031215610b9e57610b9d610a81565b5b6000610bac84828501610b73565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115610c3b57808604811115610c1757610c16610bb5565b5b6001851615610c265780820291505b8081029050610c3485610be4565b9450610bfb565b94509492505050565b600082610c545760019050610d10565b81610c625760009050610d10565b8160018114610c785760028114610c8257610cb1565b6001915050610d10565b60ff841115610c9457610c93610bb5565b5b8360020a915084821115610cab57610caa610bb5565b5b50610d10565b5060208310610133831016604e8410600b8410161715610ce65782820a905083811115610ce157610ce0610bb5565b5b610d10565b610cf38484846001610bf1565b92509050818404811115610d0a57610d09610bb5565b5b81810290505b9392505050565b6000610d2282610a86565b9150610d2d83610b4f565b9250610d5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610c44565b905092915050565b6000610d6d82610a86565b9150610d7883610a86565b9250828202610d8681610a86565b91508282048414831517610d9d57610d9c610bb5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610dde82610a86565b9150610de983610a86565b925082610df957610df8610da4565b5b828204905092915050565b6000604082019050610e196000830185610b25565b610e266020830184610ae9565b9392505050565b60008115159050919050565b610e4281610e2d565b8114610e4d57600080fd5b50565b600081519050610e5f81610e39565b92915050565b600060208284031215610e7b57610e7a610a81565b5b6000610e8984828501610e50565b91505092915050565b600082825260208201905092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000610ed9600f83610e92565b9150610ee482610ea3565b602082019050919050565b60006020820190508181036000830152610f0881610ecc565b9050919050565b6000606082019050610f246000830186610b25565b610f316020830185610b25565b610f3e6040830184610ae9565b949350505050565b7f4e6f742074686520636f6e7472616374206f776e657200000000000000000000600082015250565b6000610f7c601683610e92565b9150610f8782610f46565b602082019050919050565b60006020820190508181036000830152610fab81610f6f565b9050919050565b600081519050610fc181610a90565b92915050565b600060208284031215610fdd57610fdc610a81565b5b6000610feb84828501610fb2565b9150509291505056fea2646970667358221220d52d1104274860e0bfea5c2073bc9ba05b223d400d6cfae7e231ce5efbaad4a564736f6c63430008150033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH5 0x8D8F9FC00 PUSH1 0x3 SSTORE PUSH1 0x46 PUSH1 0x4 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0x1F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x11FA CODESIZE SUB DUP1 PUSH3 0x11FA DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x45 SWAP2 SWAP1 PUSH3 0x179 JUMP JUMPDEST CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP PUSH3 0x1C0 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x141 DUP3 PUSH3 0x114 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x153 DUP2 PUSH3 0x134 JUMP JUMPDEST DUP2 EQ PUSH3 0x15F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x173 DUP2 PUSH3 0x148 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x193 JUMPI PUSH3 0x192 PUSH3 0x10F JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1A3 DUP6 DUP3 DUP7 ADD PUSH3 0x162 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x1B6 DUP6 DUP3 DUP7 ADD PUSH3 0x162 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x102A DUP1 PUSH3 0x1D0 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x86 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x594351C5 GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x594351C5 EQ PUSH2 0x114 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x13F JUMPI DUP1 PUSH4 0xD2D93F90 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0xE086E5EC EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0xEEDD8624 EQ PUSH2 0x1AC JUMPI PUSH2 0x86 JUMP JUMPDEST DUP1 PUSH4 0x150D283D EQ PUSH2 0x8B JUMPI DUP1 PUSH4 0x1DAA0A26 EQ PUSH2 0x95 JUMPI DUP1 PUSH4 0x24DD0B46 EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0x2AB370A4 EQ PUSH2 0xE9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x93 PUSH2 0x1C3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAA PUSH2 0x35E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB7 SWAP2 SWAP1 PUSH2 0xA66 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE2 SWAP2 SWAP1 PUSH2 0xABC JUMP JUMPDEST PUSH2 0x384 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xFE PUSH2 0x66A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10B SWAP2 SWAP1 PUSH2 0xA66 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x120 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x129 PUSH2 0x690 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x136 SWAP2 SWAP1 PUSH2 0xAF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x154 PUSH2 0x696 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x161 SWAP2 SWAP1 PUSH2 0xB34 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x176 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x17F PUSH2 0x6BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0xAF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1AA PUSH2 0x6C0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1C1 PUSH2 0x7B7 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x235 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x259 SWAP2 SWAP1 PUSH2 0xB88 JUMP JUMPDEST PUSH1 0xA PUSH2 0x265 SWAP2 SWAP1 PUSH2 0xD17 JUMP JUMPDEST CALLVALUE PUSH2 0x270 SWAP2 SWAP1 PUSH2 0xD62 JUMP JUMPDEST PUSH2 0x27A SWAP2 SWAP1 PUSH2 0xDD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D9 SWAP3 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2F8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x31C SWAP2 SWAP1 PUSH2 0xE65 JUMP JUMPDEST PUSH2 0x35B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x352 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3F3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x417 SWAP2 SWAP1 PUSH2 0xB88 JUMP JUMPDEST PUSH1 0xA PUSH2 0x423 SWAP2 SWAP1 PUSH2 0xD17 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH2 0x430 SWAP2 SWAP1 PUSH2 0xD62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x49D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x4C1 SWAP2 SWAP1 PUSH2 0xB88 JUMP JUMPDEST PUSH1 0xA PUSH2 0x4CD SWAP2 SWAP1 PUSH2 0xD17 JUMP JUMPDEST DUP4 PUSH2 0x4D8 SWAP2 SWAP1 PUSH2 0xD62 JUMP JUMPDEST PUSH2 0x4E2 SWAP2 SWAP1 PUSH2 0xDD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x543 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xF0F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x562 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x586 SWAP2 SWAP1 PUSH2 0xE65 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E4 SWAP3 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x603 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x627 SWAP2 SWAP1 PUSH2 0xE65 JUMP JUMPDEST PUSH2 0x666 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x65D SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x74E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x745 SWAP1 PUSH2 0xF92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC SELFBALANCE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x7B4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x845 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x83C SWAP1 PUSH2 0xF92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A2 SWAP2 SWAP1 PUSH2 0xB34 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8BF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x8E3 SWAP2 SWAP1 PUSH2 0xFC7 JUMP JUMPDEST SWAP1 POP PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x962 SWAP3 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x981 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9A5 SWAP2 SWAP1 PUSH2 0xE65 JUMP JUMPDEST PUSH2 0x9E4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9DB SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA2C PUSH2 0xA27 PUSH2 0xA22 DUP5 PUSH2 0x9E7 JUMP JUMPDEST PUSH2 0xA07 JUMP JUMPDEST PUSH2 0x9E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA3E DUP3 PUSH2 0xA11 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA50 DUP3 PUSH2 0xA33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA60 DUP2 PUSH2 0xA45 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA7B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xA57 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA99 DUP2 PUSH2 0xA86 JUMP JUMPDEST DUP2 EQ PUSH2 0xAA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAB6 DUP2 PUSH2 0xA90 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAD2 JUMPI PUSH2 0xAD1 PUSH2 0xA81 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xAE0 DUP5 DUP3 DUP6 ADD PUSH2 0xAA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xAF2 DUP2 PUSH2 0xA86 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB0D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xAE9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB1E DUP3 PUSH2 0x9E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB2E DUP2 PUSH2 0xB13 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB49 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB25 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB65 DUP2 PUSH2 0xB4F JUMP JUMPDEST DUP2 EQ PUSH2 0xB70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xB82 DUP2 PUSH2 0xB5C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB9E JUMPI PUSH2 0xB9D PUSH2 0xA81 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBAC DUP5 DUP3 DUP6 ADD PUSH2 0xB73 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH2 0xC3B JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH2 0xC17 JUMPI PUSH2 0xC16 PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH2 0xC26 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH2 0xC34 DUP6 PUSH2 0xBE4 JUMP JUMPDEST SWAP5 POP PUSH2 0xBFB JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0xC54 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xD10 JUMP JUMPDEST DUP2 PUSH2 0xC62 JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0xD10 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0xC78 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0xC82 JUMPI PUSH2 0xCB1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD10 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0xC94 JUMPI PUSH2 0xC93 PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH2 0xCAB JUMPI PUSH2 0xCAA PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST POP PUSH2 0xD10 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0xCE6 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH2 0xCE1 JUMPI PUSH2 0xCE0 PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST PUSH2 0xD10 JUMP JUMPDEST PUSH2 0xCF3 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0xBF1 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH2 0xD0A JUMPI PUSH2 0xD09 PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD22 DUP3 PUSH2 0xA86 JUMP JUMPDEST SWAP2 POP PUSH2 0xD2D DUP4 PUSH2 0xB4F JUMP JUMPDEST SWAP3 POP PUSH2 0xD5A PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH2 0xC44 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD6D DUP3 PUSH2 0xA86 JUMP JUMPDEST SWAP2 POP PUSH2 0xD78 DUP4 PUSH2 0xA86 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0xD86 DUP2 PUSH2 0xA86 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0xD9D JUMPI PUSH2 0xD9C PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDDE DUP3 PUSH2 0xA86 JUMP JUMPDEST SWAP2 POP PUSH2 0xDE9 DUP4 PUSH2 0xA86 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0xDF9 JUMPI PUSH2 0xDF8 PUSH2 0xDA4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xE19 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xB25 JUMP JUMPDEST PUSH2 0xE26 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xAE9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE42 DUP2 PUSH2 0xE2D JUMP JUMPDEST DUP2 EQ PUSH2 0xE4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xE5F DUP2 PUSH2 0xE39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE7B JUMPI PUSH2 0xE7A PUSH2 0xA81 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE89 DUP5 DUP3 DUP6 ADD PUSH2 0xE50 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5472616E73666572206661696C65640000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xED9 PUSH1 0xF DUP4 PUSH2 0xE92 JUMP JUMPDEST SWAP2 POP PUSH2 0xEE4 DUP3 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF08 DUP2 PUSH2 0xECC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0xF24 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0xB25 JUMP JUMPDEST PUSH2 0xF31 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0xB25 JUMP JUMPDEST PUSH2 0xF3E PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0xAE9 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E6F742074686520636F6E7472616374206F776E657200000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF7C PUSH1 0x16 DUP4 PUSH2 0xE92 JUMP JUMPDEST SWAP2 POP PUSH2 0xF87 DUP3 PUSH2 0xF46 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFAB DUP2 PUSH2 0xF6F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xFC1 DUP2 PUSH2 0xA90 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFDD JUMPI PUSH2 0xFDC PUSH2 0xA81 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xFEB DUP5 DUP3 DUP6 ADD PUSH2 0xFB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 0x2D GT DIV 0x27 BASEFEE PUSH1 0xE0 0xBF 0xEA 0x5C KECCAK256 PUSH20 0xBC9BA05B223D400D6CFAE7E231CE5EFBAAD4A564 PUSH20 0x6F6C634300081500330000000000000000000000 ",
"sourceMap": "191:1472:2:-:0;;;349:17;324:42;;426:2;399:29;;497:189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;569:10;561:5;;:18;;;;;;;;;;;;;;;;;;617:11;589:10;;:40;;;;;;;;;;;;;;;;;;667:11;639:10;;:40;;;;;;;;;;;;;;;;;;497:189;;191:1472;;88:117:3;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:143::-;753:5;784:6;778:13;769:22;;800:33;827:5;800:33;:::i;:::-;696:143;;;;:::o;845:507::-;924:6;932;981:2;969:9;960:7;956:23;952:32;949:119;;;987:79;;:::i;:::-;949:119;1107:1;1132:64;1188:7;1179:6;1168:9;1164:22;1132:64;:::i;:::-;1122:74;;1078:128;1245:2;1271:64;1327:7;1318:6;1307:9;1303:22;1271:64;:::i;:::-;1261:74;;1216:129;845:507;;;;;:::o;191:1472:2:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@basedToken_111": {
"entryPoint": 1642,
"id": 111,
"parameterSlots": 0,
"returnSlots": 0
},
"@buyWithETH_186": {
"entryPoint": 451,
"id": 186,
"parameterSlots": 0,
"returnSlots": 0
},
"@buyWithUSDbC_236": {
"entryPoint": 900,
"id": 236,
"parameterSlots": 1,
"returnSlots": 0
},
"@ethRate_117": {
"entryPoint": 1722,
"id": 117,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_108": {
"entryPoint": 1686,
"id": 108,
"parameterSlots": 0,
"returnSlots": 0
},
"@usdbcRate_120": {
"entryPoint": 1680,
"id": 120,
"parameterSlots": 0,
"returnSlots": 0
},
"@usdbcToken_114": {
"entryPoint": 862,
"id": 114,
"parameterSlots": 0,
"returnSlots": 0
},
"@withdrawETH_254": {
"entryPoint": 1728,
"id": 254,
"parameterSlots": 0,
"returnSlots": 0
},
"@withdrawUSDbC_279": {
"entryPoint": 1975,
"id": 279,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 3664,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2727,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 4018,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8_fromMemory": {
"entryPoint": 2931,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 3685,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 2748,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 4039,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint8_fromMemory": {
"entryPoint": 2952,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 2853,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_contract$_IERC20Metadata_$102_to_t_address_fromStack": {
"entryPoint": 2647,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3788,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3951,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2793,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 2868,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 3855,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 3588,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_IERC20Metadata_$102__to_t_address__fromStack_reversed": {
"entryPoint": 2662,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3823,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3986,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2808,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 3730,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 3539,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_helper": {
"entryPoint": 3057,
"id": null,
"parameterSlots": 4,
"returnSlots": 2
},
"checked_exp_t_uint256_t_uint8": {
"entryPoint": 3351,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_unsigned": {
"entryPoint": 3140,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 3426,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2835,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 3629,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2535,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2694,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 2895,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_IERC20Metadata_$102_to_t_address": {
"entryPoint": 2629,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 2611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 2577,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"identity": {
"entryPoint": 2567,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2997,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 3492,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2689,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"shift_right_1_unsigned": {
"entryPoint": 3044,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51": {
"entryPoint": 3747,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8": {
"entryPoint": 3910,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 3641,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2704,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 2908,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:11056:3",
"nodeType": "YulBlock",
"src": "0:11056:3",
"statements": [
{
"body": {
"nativeSrc": "52:81:3",
"nodeType": "YulBlock",
"src": "52:81:3",
"statements": [
{
"nativeSrc": "62:65:3",
"nodeType": "YulAssignment",
"src": "62:65:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "77:5:3",
"nodeType": "YulIdentifier",
"src": "77:5:3"
},
{
"kind": "number",
"nativeSrc": "84:42:3",
"nodeType": "YulLiteral",
"src": "84:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "73:3:3",
"nodeType": "YulIdentifier",
"src": "73:3:3"
},
"nativeSrc": "73:54:3",
"nodeType": "YulFunctionCall",
"src": "73:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "62:7:3",
"nodeType": "YulIdentifier",
"src": "62:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "7:126:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "34:5:3",
"nodeType": "YulTypedName",
"src": "34:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "44:7:3",
"nodeType": "YulTypedName",
"src": "44:7:3",
"type": ""
}
],
"src": "7:126:3"
},
{
"body": {
"nativeSrc": "171:28:3",
"nodeType": "YulBlock",
"src": "171:28:3",
"statements": [
{
"nativeSrc": "181:12:3",
"nodeType": "YulAssignment",
"src": "181:12:3",
"value": {
"name": "value",
"nativeSrc": "188:5:3",
"nodeType": "YulIdentifier",
"src": "188:5:3"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "181:3:3",
"nodeType": "YulIdentifier",
"src": "181:3:3"
}
]
}
]
},
"name": "identity",
"nativeSrc": "139:60:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "157:5:3",
"nodeType": "YulTypedName",
"src": "157:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "167:3:3",
"nodeType": "YulTypedName",
"src": "167:3:3",
"type": ""
}
],
"src": "139:60:3"
},
{
"body": {
"nativeSrc": "265:82:3",
"nodeType": "YulBlock",
"src": "265:82:3",
"statements": [
{
"nativeSrc": "275:66:3",
"nodeType": "YulAssignment",
"src": "275:66:3",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "333:5:3",
"nodeType": "YulIdentifier",
"src": "333:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "315:17:3",
"nodeType": "YulIdentifier",
"src": "315:17:3"
},
"nativeSrc": "315:24:3",
"nodeType": "YulFunctionCall",
"src": "315:24:3"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "306:8:3",
"nodeType": "YulIdentifier",
"src": "306:8:3"
},
"nativeSrc": "306:34:3",
"nodeType": "YulFunctionCall",
"src": "306:34:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "288:17:3",
"nodeType": "YulIdentifier",
"src": "288:17:3"
},
"nativeSrc": "288:53:3",
"nodeType": "YulFunctionCall",
"src": "288:53:3"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "275:9:3",
"nodeType": "YulIdentifier",
"src": "275:9:3"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nativeSrc": "205:142:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "245:5:3",
"nodeType": "YulTypedName",
"src": "245:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "255:9:3",
"nodeType": "YulTypedName",
"src": "255:9:3",
"type": ""
}
],
"src": "205:142:3"
},
{
"body": {
"nativeSrc": "413:66:3",
"nodeType": "YulBlock",
"src": "413:66:3",
"statements": [
{
"nativeSrc": "423:50:3",
"nodeType": "YulAssignment",
"src": "423:50:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "467:5:3",
"nodeType": "YulIdentifier",
"src": "467:5:3"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nativeSrc": "436:30:3",
"nodeType": "YulIdentifier",
"src": "436:30:3"
},
"nativeSrc": "436:37:3",
"nodeType": "YulFunctionCall",
"src": "436:37:3"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "423:9:3",
"nodeType": "YulIdentifier",
"src": "423:9:3"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nativeSrc": "353:126:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "393:5:3",
"nodeType": "YulTypedName",
"src": "393:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "403:9:3",
"nodeType": "YulTypedName",
"src": "403:9:3",
"type": ""
}
],
"src": "353:126:3"
},
{
"body": {
"nativeSrc": "567:66:3",
"nodeType": "YulBlock",
"src": "567:66:3",
"statements": [
{
"nativeSrc": "577:50:3",
"nodeType": "YulAssignment",
"src": "577:50:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "621:5:3",
"nodeType": "YulIdentifier",
"src": "621:5:3"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nativeSrc": "590:30:3",
"nodeType": "YulIdentifier",
"src": "590:30:3"
},
"nativeSrc": "590:37:3",
"nodeType": "YulFunctionCall",
"src": "590:37:3"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "577:9:3",
"nodeType": "YulIdentifier",
"src": "577:9:3"
}
]
}
]
},
"name": "convert_t_contract$_IERC20Metadata_$102_to_t_address",
"nativeSrc": "485:148:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "547:5:3",
"nodeType": "YulTypedName",
"src": "547:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "557:9:3",
"nodeType": "YulTypedName",
"src": "557:9:3",
"type": ""
}
],
"src": "485:148:3"
},
{
"body": {
"nativeSrc": "726:88:3",
"nodeType": "YulBlock",
"src": "726:88:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "743:3:3",
"nodeType": "YulIdentifier",
"src": "743:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "801:5:3",
"nodeType": "YulIdentifier",
"src": "801:5:3"
}
],
"functionName": {
"name": "convert_t_contract$_IERC20Metadata_$102_to_t_address",
"nativeSrc": "748:52:3",
"nodeType": "YulIdentifier",
"src": "748:52:3"
},
"nativeSrc": "748:59:3",
"nodeType": "YulFunctionCall",
"src": "748:59:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "736:6:3",
"nodeType": "YulIdentifier",
"src": "736:6:3"
},
"nativeSrc": "736:72:3",
"nodeType": "YulFunctionCall",
"src": "736:72:3"
},
"nativeSrc": "736:72:3",
"nodeType": "YulExpressionStatement",
"src": "736:72:3"
}
]
},
"name": "abi_encode_t_contract$_IERC20Metadata_$102_to_t_address_fromStack",
"nativeSrc": "639:175:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "714:5:3",
"nodeType": "YulTypedName",
"src": "714:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "721:3:3",
"nodeType": "YulTypedName",
"src": "721:3:3",
"type": ""
}
],
"src": "639:175:3"
},
{
"body": {
"nativeSrc": "940:146:3",
"nodeType": "YulBlock",
"src": "940:146:3",
"statements": [
{
"nativeSrc": "950:26:3",
"nodeType": "YulAssignment",
"src": "950:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "962:9:3",
"nodeType": "YulIdentifier",
"src": "962:9:3"
},
{
"kind": "number",
"nativeSrc": "973:2:3",
"nodeType": "YulLiteral",
"src": "973:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "958:3:3",
"nodeType": "YulIdentifier",
"src": "958:3:3"
},
"nativeSrc": "958:18:3",
"nodeType": "YulFunctionCall",
"src": "958:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "950:4:3",
"nodeType": "YulIdentifier",
"src": "950:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1052:6:3",
"nodeType": "YulIdentifier",
"src": "1052:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1065:9:3",
"nodeType": "YulIdentifier",
"src": "1065:9:3"
},
{
"kind": "number",
"nativeSrc": "1076:1:3",
"nodeType": "YulLiteral",
"src": "1076:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1061:3:3",
"nodeType": "YulIdentifier",
"src": "1061:3:3"
},
"nativeSrc": "1061:17:3",
"nodeType": "YulFunctionCall",
"src": "1061:17:3"
}
],
"functionName": {
"name": "abi_encode_t_contract$_IERC20Metadata_$102_to_t_address_fromStack",
"nativeSrc": "986:65:3",
"nodeType": "YulIdentifier",
"src": "986:65:3"
},
"nativeSrc": "986:93:3",
"nodeType": "YulFunctionCall",
"src": "986:93:3"
},
"nativeSrc": "986:93:3",
"nodeType": "YulExpressionStatement",
"src": "986:93:3"
}
]
},
"name": "abi_encode_tuple_t_contract$_IERC20Metadata_$102__to_t_address__fromStack_reversed",
"nativeSrc": "820:266:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "912:9:3",
"nodeType": "YulTypedName",
"src": "912:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "924:6:3",
"nodeType": "YulTypedName",
"src": "924:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "935:4:3",
"nodeType": "YulTypedName",
"src": "935:4:3",
"type": ""
}
],
"src": "820:266:3"
},
{
"body": {
"nativeSrc": "1132:35:3",
"nodeType": "YulBlock",
"src": "1132:35:3",
"statements": [
{
"nativeSrc": "1142:19:3",
"nodeType": "YulAssignment",
"src": "1142:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1158:2:3",
"nodeType": "YulLiteral",
"src": "1158:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "1152:5:3",
"nodeType": "YulIdentifier",
"src": "1152:5:3"
},
"nativeSrc": "1152:9:3",
"nodeType": "YulFunctionCall",
"src": "1152:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "1142:6:3",
"nodeType": "YulIdentifier",
"src": "1142:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "1092:75:3",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "1125:6:3",
"nodeType": "YulTypedName",
"src": "1125:6:3",
"type": ""
}
],
"src": "1092:75:3"
},
{
"body": {
"nativeSrc": "1262:28:3",
"nodeType": "YulBlock",
"src": "1262:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1279:1:3",
"nodeType": "YulLiteral",
"src": "1279:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1282:1:3",
"nodeType": "YulLiteral",
"src": "1282:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1272:6:3",
"nodeType": "YulIdentifier",
"src": "1272:6:3"
},
"nativeSrc": "1272:12:3",
"nodeType": "YulFunctionCall",
"src": "1272:12:3"
},
"nativeSrc": "1272:12:3",
"nodeType": "YulExpressionStatement",
"src": "1272:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1173:117:3",
"nodeType": "YulFunctionDefinition",
"src": "1173:117:3"
},
{
"body": {
"nativeSrc": "1385:28:3",
"nodeType": "YulBlock",
"src": "1385:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1402:1:3",
"nodeType": "YulLiteral",
"src": "1402:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1405:1:3",
"nodeType": "YulLiteral",
"src": "1405:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1395:6:3",
"nodeType": "YulIdentifier",
"src": "1395:6:3"
},
"nativeSrc": "1395:12:3",
"nodeType": "YulFunctionCall",
"src": "1395:12:3"
},
"nativeSrc": "1395:12:3",
"nodeType": "YulExpressionStatement",
"src": "1395:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "1296:117:3",
"nodeType": "YulFunctionDefinition",
"src": "1296:117:3"
},
{
"body": {
"nativeSrc": "1464:32:3",
"nodeType": "YulBlock",
"src": "1464:32:3",
"statements": [
{
"nativeSrc": "1474:16:3",
"nodeType": "YulAssignment",
"src": "1474:16:3",
"value": {
"name": "value",
"nativeSrc": "1485:5:3",
"nodeType": "YulIdentifier",
"src": "1485:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1474:7:3",
"nodeType": "YulIdentifier",
"src": "1474:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "1419:77:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1446:5:3",
"nodeType": "YulTypedName",
"src": "1446:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1456:7:3",
"nodeType": "YulTypedName",
"src": "1456:7:3",
"type": ""
}
],
"src": "1419:77:3"
},
{
"body": {
"nativeSrc": "1545:79:3",
"nodeType": "YulBlock",
"src": "1545:79:3",
"statements": [
{
"body": {
"nativeSrc": "1602:16:3",
"nodeType": "YulBlock",
"src": "1602:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1611:1:3",
"nodeType": "YulLiteral",
"src": "1611:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1614:1:3",
"nodeType": "YulLiteral",
"src": "1614:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1604:6:3",
"nodeType": "YulIdentifier",
"src": "1604:6:3"
},
"nativeSrc": "1604:12:3",
"nodeType": "YulFunctionCall",
"src": "1604:12:3"
},
"nativeSrc": "1604:12:3",
"nodeType": "YulExpressionStatement",
"src": "1604:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1568:5:3",
"nodeType": "YulIdentifier",
"src": "1568:5:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1593:5:3",
"nodeType": "YulIdentifier",
"src": "1593:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1575:17:3",
"nodeType": "YulIdentifier",
"src": "1575:17:3"
},
"nativeSrc": "1575:24:3",
"nodeType": "YulFunctionCall",
"src": "1575:24:3"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "1565:2:3",
"nodeType": "YulIdentifier",
"src": "1565:2:3"
},
"nativeSrc": "1565:35:3",
"nodeType": "YulFunctionCall",
"src": "1565:35:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1558:6:3",
"nodeType": "YulIdentifier",
"src": "1558:6:3"
},
"nativeSrc": "1558:43:3",
"nodeType": "YulFunctionCall",
"src": "1558:43:3"
},
"nativeSrc": "1555:63:3",
"nodeType": "YulIf",
"src": "1555:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "1502:122:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1538:5:3",
"nodeType": "YulTypedName",
"src": "1538:5:3",
"type": ""
}
],
"src": "1502:122:3"
},
{
"body": {
"nativeSrc": "1682:87:3",
"nodeType": "YulBlock",
"src": "1682:87:3",
"statements": [
{
"nativeSrc": "1692:29:3",
"nodeType": "YulAssignment",
"src": "1692:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "1714:6:3",
"nodeType": "YulIdentifier",
"src": "1714:6:3"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "1701:12:3",
"nodeType": "YulIdentifier",
"src": "1701:12:3"
},
"nativeSrc": "1701:20:3",
"nodeType": "YulFunctionCall",
"src": "1701:20:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1692:5:3",
"nodeType": "YulIdentifier",
"src": "1692:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1757:5:3",
"nodeType": "YulIdentifier",
"src": "1757:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "1730:26:3",
"nodeType": "YulIdentifier",
"src": "1730:26:3"
},
"nativeSrc": "1730:33:3",
"nodeType": "YulFunctionCall",
"src": "1730:33:3"
},
"nativeSrc": "1730:33:3",
"nodeType": "YulExpressionStatement",
"src": "1730:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "1630:139:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "1660:6:3",
"nodeType": "YulTypedName",
"src": "1660:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "1668:3:3",
"nodeType": "YulTypedName",
"src": "1668:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "1676:5:3",
"nodeType": "YulTypedName",
"src": "1676:5:3",
"type": ""
}
],
"src": "1630:139:3"
},
{
"body": {
"nativeSrc": "1841:263:3",
"nodeType": "YulBlock",
"src": "1841:263:3",
"statements": [
{
"body": {
"nativeSrc": "1887:83:3",
"nodeType": "YulBlock",
"src": "1887:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1889:77:3",
"nodeType": "YulIdentifier",
"src": "1889:77:3"
},
"nativeSrc": "1889:79:3",
"nodeType": "YulFunctionCall",
"src": "1889:79:3"
},
"nativeSrc": "1889:79:3",
"nodeType": "YulExpressionStatement",
"src": "1889:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1862:7:3",
"nodeType": "YulIdentifier",
"src": "1862:7:3"
},
{
"name": "headStart",
"nativeSrc": "1871:9:3",
"nodeType": "YulIdentifier",
"src": "1871:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1858:3:3",
"nodeType": "YulIdentifier",
"src": "1858:3:3"
},
"nativeSrc": "1858:23:3",
"nodeType": "YulFunctionCall",
"src": "1858:23:3"
},
{
"kind": "number",
"nativeSrc": "1883:2:3",
"nodeType": "YulLiteral",
"src": "1883:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1854:3:3",
"nodeType": "YulIdentifier",
"src": "1854:3:3"
},
"nativeSrc": "1854:32:3",
"nodeType": "YulFunctionCall",
"src": "1854:32:3"
},
"nativeSrc": "1851:119:3",
"nodeType": "YulIf",
"src": "1851:119:3"
},
{
"nativeSrc": "1980:117:3",
"nodeType": "YulBlock",
"src": "1980:117:3",
"statements": [
{
"nativeSrc": "1995:15:3",
"nodeType": "YulVariableDeclaration",
"src": "1995:15:3",
"value": {
"kind": "number",
"nativeSrc": "2009:1:3",
"nodeType": "YulLiteral",
"src": "2009:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "1999:6:3",
"nodeType": "YulTypedName",
"src": "1999:6:3",
"type": ""
}
]
},
{
"nativeSrc": "2024:63:3",
"nodeType": "YulAssignment",
"src": "2024:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2059:9:3",
"nodeType": "YulIdentifier",
"src": "2059:9:3"
},
{
"name": "offset",
"nativeSrc": "2070:6:3",
"nodeType": "YulIdentifier",
"src": "2070:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2055:3:3",
"nodeType": "YulIdentifier",
"src": "2055:3:3"
},
"nativeSrc": "2055:22:3",
"nodeType": "YulFunctionCall",
"src": "2055:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "2079:7:3",
"nodeType": "YulIdentifier",
"src": "2079:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "2034:20:3",
"nodeType": "YulIdentifier",
"src": "2034:20:3"
},
"nativeSrc": "2034:53:3",
"nodeType": "YulFunctionCall",
"src": "2034:53:3"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "2024:6:3",
"nodeType": "YulIdentifier",
"src": "2024:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "1775:329:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1811:9:3",
"nodeType": "YulTypedName",
"src": "1811:9:3",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1822:7:3",
"nodeType": "YulTypedName",
"src": "1822:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1834:6:3",
"nodeType": "YulTypedName",
"src": "1834:6:3",
"type": ""
}
],
"src": "1775:329:3"
},
{
"body": {
"nativeSrc": "2175:53:3",
"nodeType": "YulBlock",
"src": "2175:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2192:3:3",
"nodeType": "YulIdentifier",
"src": "2192:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2215:5:3",
"nodeType": "YulIdentifier",
"src": "2215:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "2197:17:3",
"nodeType": "YulIdentifier",
"src": "2197:17:3"
},
"nativeSrc": "2197:24:3",
"nodeType": "YulFunctionCall",
"src": "2197:24:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2185:6:3",
"nodeType": "YulIdentifier",
"src": "2185:6:3"
},
"nativeSrc": "2185:37:3",
"nodeType": "YulFunctionCall",
"src": "2185:37:3"
},
"nativeSrc": "2185:37:3",
"nodeType": "YulExpressionStatement",
"src": "2185:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "2110:118:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2163:5:3",
"nodeType": "YulTypedName",
"src": "2163:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2170:3:3",
"nodeType": "YulTypedName",
"src": "2170:3:3",
"type": ""
}
],
"src": "2110:118:3"
},
{
"body": {
"nativeSrc": "2332:124:3",
"nodeType": "YulBlock",
"src": "2332:124:3",
"statements": [
{
"nativeSrc": "2342:26:3",
"nodeType": "YulAssignment",
"src": "2342:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "2354:9:3",
"nodeType": "YulIdentifier",
"src": "2354:9:3"
},
{
"kind": "number",
"nativeSrc": "2365:2:3",
"nodeType": "YulLiteral",
"src": "2365:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2350:3:3",
"nodeType": "YulIdentifier",
"src": "2350:3:3"
},
"nativeSrc": "2350:18:3",
"nodeType": "YulFunctionCall",
"src": "2350:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2342:4:3",
"nodeType": "YulIdentifier",
"src": "2342:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "2422:6:3",
"nodeType": "YulIdentifier",
"src": "2422:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2435:9:3",
"nodeType": "YulIdentifier",
"src": "2435:9:3"
},
{
"kind": "number",
"nativeSrc": "2446:1:3",
"nodeType": "YulLiteral",
"src": "2446:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2431:3:3",
"nodeType": "YulIdentifier",
"src": "2431:3:3"
},
"nativeSrc": "2431:17:3",
"nodeType": "YulFunctionCall",
"src": "2431:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "2378:43:3",
"nodeType": "YulIdentifier",
"src": "2378:43:3"
},
"nativeSrc": "2378:71:3",
"nodeType": "YulFunctionCall",
"src": "2378:71:3"
},
"nativeSrc": "2378:71:3",
"nodeType": "YulExpressionStatement",
"src": "2378:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "2234:222:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2304:9:3",
"nodeType": "YulTypedName",
"src": "2304:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "2316:6:3",
"nodeType": "YulTypedName",
"src": "2316:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "2327:4:3",
"nodeType": "YulTypedName",
"src": "2327:4:3",
"type": ""
}
],
"src": "2234:222:3"
},
{
"body": {
"nativeSrc": "2507:51:3",
"nodeType": "YulBlock",
"src": "2507:51:3",
"statements": [
{
"nativeSrc": "2517:35:3",
"nodeType": "YulAssignment",
"src": "2517:35:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "2546:5:3",
"nodeType": "YulIdentifier",
"src": "2546:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "2528:17:3",
"nodeType": "YulIdentifier",
"src": "2528:17:3"
},
"nativeSrc": "2528:24:3",
"nodeType": "YulFunctionCall",
"src": "2528:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2517:7:3",
"nodeType": "YulIdentifier",
"src": "2517:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "2462:96:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2489:5:3",
"nodeType": "YulTypedName",
"src": "2489:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2499:7:3",
"nodeType": "YulTypedName",
"src": "2499:7:3",
"type": ""
}
],
"src": "2462:96:3"
},
{
"body": {
"nativeSrc": "2629:53:3",
"nodeType": "YulBlock",
"src": "2629:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2646:3:3",
"nodeType": "YulIdentifier",
"src": "2646:3:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2669:5:3",
"nodeType": "YulIdentifier",
"src": "2669:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "2651:17:3",
"nodeType": "YulIdentifier",
"src": "2651:17:3"
},
"nativeSrc": "2651:24:3",
"nodeType": "YulFunctionCall",
"src": "2651:24:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2639:6:3",
"nodeType": "YulIdentifier",
"src": "2639:6:3"
},
"nativeSrc": "2639:37:3",
"nodeType": "YulFunctionCall",
"src": "2639:37:3"
},
"nativeSrc": "2639:37:3",
"nodeType": "YulExpressionStatement",
"src": "2639:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "2564:118:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2617:5:3",
"nodeType": "YulTypedName",
"src": "2617:5:3",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2624:3:3",
"nodeType": "YulTypedName",
"src": "2624:3:3",
"type": ""
}
],
"src": "2564:118:3"
},
{
"body": {
"nativeSrc": "2786:124:3",
"nodeType": "YulBlock",
"src": "2786:124:3",
"statements": [
{
"nativeSrc": "2796:26:3",
"nodeType": "YulAssignment",
"src": "2796:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "2808:9:3",
"nodeType": "YulIdentifier",
"src": "2808:9:3"
},
{
"kind": "number",
"nativeSrc": "2819:2:3",
"nodeType": "YulLiteral",
"src": "2819:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2804:3:3",
"nodeType": "YulIdentifier",
"src": "2804:3:3"
},
"nativeSrc": "2804:18:3",
"nodeType": "YulFunctionCall",
"src": "2804:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2796:4:3",
"nodeType": "YulIdentifier",
"src": "2796:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "2876:6:3",
"nodeType": "YulIdentifier",
"src": "2876:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2889:9:3",
"nodeType": "YulIdentifier",
"src": "2889:9:3"
},
{
"kind": "number",
"nativeSrc": "2900:1:3",
"nodeType": "YulLiteral",
"src": "2900:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2885:3:3",
"nodeType": "YulIdentifier",
"src": "2885:3:3"
},
"nativeSrc": "2885:17:3",
"nodeType": "YulFunctionCall",
"src": "2885:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "2832:43:3",
"nodeType": "YulIdentifier",
"src": "2832:43:3"
},
"nativeSrc": "2832:71:3",
"nodeType": "YulFunctionCall",
"src": "2832:71:3"
},
"nativeSrc": "2832:71:3",
"nodeType": "YulExpressionStatement",
"src": "2832:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "2688:222:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2758:9:3",
"nodeType": "YulTypedName",
"src": "2758:9:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "2770:6:3",
"nodeType": "YulTypedName",
"src": "2770:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "2781:4:3",
"nodeType": "YulTypedName",
"src": "2781:4:3",
"type": ""
}
],
"src": "2688:222:3"
},
{
"body": {
"nativeSrc": "2959:43:3",
"nodeType": "YulBlock",
"src": "2959:43:3",
"statements": [
{
"nativeSrc": "2969:27:3",
"nodeType": "YulAssignment",
"src": "2969:27:3",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "2984:5:3",
"nodeType": "YulIdentifier",
"src": "2984:5:3"
},
{
"kind": "number",
"nativeSrc": "2991:4:3",
"nodeType": "YulLiteral",
"src": "2991:4:3",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "2980:3:3",
"nodeType": "YulIdentifier",
"src": "2980:3:3"
},
"nativeSrc": "2980:16:3",
"nodeType": "YulFunctionCall",
"src": "2980:16:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2969:7:3",
"nodeType": "YulIdentifier",
"src": "2969:7:3"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nativeSrc": "2916:86:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2941:5:3",
"nodeType": "YulTypedName",
"src": "2941:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2951:7:3",
"nodeType": "YulTypedName",
"src": "2951:7:3",
"type": ""
}
],
"src": "2916:86:3"
},
{
"body": {
"nativeSrc": "3049:77:3",
"nodeType": "YulBlock",
"src": "3049:77:3",
"statements": [
{
"body": {
"nativeSrc": "3104:16:3",
"nodeType": "YulBlock",
"src": "3104:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3113:1:3",
"nodeType": "YulLiteral",
"src": "3113:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3116:1:3",
"nodeType": "YulLiteral",
"src": "3116:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "3106:6:3",
"nodeType": "YulIdentifier",
"src": "3106:6:3"
},
"nativeSrc": "3106:12:3",
"nodeType": "YulFunctionCall",
"src": "3106:12:3"
},
"nativeSrc": "3106:12:3",
"nodeType": "YulExpressionStatement",
"src": "3106:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3072:5:3",
"nodeType": "YulIdentifier",
"src": "3072:5:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3095:5:3",
"nodeType": "YulIdentifier",
"src": "3095:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nativeSrc": "3079:15:3",
"nodeType": "YulIdentifier",
"src": "3079:15:3"
},
"nativeSrc": "3079:22:3",
"nodeType": "YulFunctionCall",
"src": "3079:22:3"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "3069:2:3",
"nodeType": "YulIdentifier",
"src": "3069:2:3"
},
"nativeSrc": "3069:33:3",
"nodeType": "YulFunctionCall",
"src": "3069:33:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3062:6:3",
"nodeType": "YulIdentifier",
"src": "3062:6:3"
},
"nativeSrc": "3062:41:3",
"nodeType": "YulFunctionCall",
"src": "3062:41:3"
},
"nativeSrc": "3059:61:3",
"nodeType": "YulIf",
"src": "3059:61:3"
}
]
},
"name": "validator_revert_t_uint8",
"nativeSrc": "3008:118:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3042:5:3",
"nodeType": "YulTypedName",
"src": "3042:5:3",
"type": ""
}
],
"src": "3008:118:3"
},
{
"body": {
"nativeSrc": "3193:78:3",
"nodeType": "YulBlock",
"src": "3193:78:3",
"statements": [
{
"nativeSrc": "3203:22:3",
"nodeType": "YulAssignment",
"src": "3203:22:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3218:6:3",
"nodeType": "YulIdentifier",
"src": "3218:6:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "3212:5:3",
"nodeType": "YulIdentifier",
"src": "3212:5:3"
},
"nativeSrc": "3212:13:3",
"nodeType": "YulFunctionCall",
"src": "3212:13:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "3203:5:3",
"nodeType": "YulIdentifier",
"src": "3203:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "3259:5:3",
"nodeType": "YulIdentifier",
"src": "3259:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nativeSrc": "3234:24:3",
"nodeType": "YulIdentifier",
"src": "3234:24:3"
},
"nativeSrc": "3234:31:3",
"nodeType": "YulFunctionCall",
"src": "3234:31:3"
},
"nativeSrc": "3234:31:3",
"nodeType": "YulExpressionStatement",
"src": "3234:31:3"
}
]
},
"name": "abi_decode_t_uint8_fromMemory",
"nativeSrc": "3132:139:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "3171:6:3",
"nodeType": "YulTypedName",
"src": "3171:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "3179:3:3",
"nodeType": "YulTypedName",
"src": "3179:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "3187:5:3",
"nodeType": "YulTypedName",
"src": "3187:5:3",
"type": ""
}
],
"src": "3132:139:3"
},
{
"body": {
"nativeSrc": "3352:272:3",
"nodeType": "YulBlock",
"src": "3352:272:3",
"statements": [
{
"body": {
"nativeSrc": "3398:83:3",
"nodeType": "YulBlock",
"src": "3398:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3400:77:3",
"nodeType": "YulIdentifier",
"src": "3400:77:3"
},
"nativeSrc": "3400:79:3",
"nodeType": "YulFunctionCall",
"src": "3400:79:3"
},
"nativeSrc": "3400:79:3",
"nodeType": "YulExpressionStatement",
"src": "3400:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3373:7:3",
"nodeType": "YulIdentifier",
"src": "3373:7:3"
},
{
"name": "headStart",
"nativeSrc": "3382:9:3",
"nodeType": "YulIdentifier",
"src": "3382:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3369:3:3",
"nodeType": "YulIdentifier",
"src": "3369:3:3"
},
"nativeSrc": "3369:23:3",
"nodeType": "YulFunctionCall",
"src": "3369:23:3"
},
{
"kind": "number",
"nativeSrc": "3394:2:3",
"nodeType": "YulLiteral",
"src": "3394:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3365:3:3",
"nodeType": "YulIdentifier",
"src": "3365:3:3"
},
"nativeSrc": "3365:32:3",
"nodeType": "YulFunctionCall",
"src": "3365:32:3"
},
"nativeSrc": "3362:119:3",
"nodeType": "YulIf",
"src": "3362:119:3"
},
{
"nativeSrc": "3491:126:3",
"nodeType": "YulBlock",
"src": "3491:126:3",
"statements": [
{
"nativeSrc": "3506:15:3",
"nodeType": "YulVariableDeclaration",
"src": "3506:15:3",
"value": {
"kind": "number",
"nativeSrc": "3520:1:3",
"nodeType": "YulLiteral",
"src": "3520:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3510:6:3",
"nodeType": "YulTypedName",
"src": "3510:6:3",
"type": ""
}
]
},
{
"nativeSrc": "3535:72:3",
"nodeType": "YulAssignment",
"src": "3535:72:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3579:9:3",
"nodeType": "YulIdentifier",
"src": "3579:9:3"
},
{
"name": "offset",
"nativeSrc": "3590:6:3",
"nodeType": "YulIdentifier",
"src": "3590:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3575:3:3",
"nodeType": "YulIdentifier",
"src": "3575:3:3"
},
"nativeSrc": "3575:22:3",
"nodeType": "YulFunctionCall",
"src": "3575:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "3599:7:3",
"nodeType": "YulIdentifier",
"src": "3599:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint8_fromMemory",
"nativeSrc": "3545:29:3",
"nodeType": "YulIdentifier",
"src": "3545:29:3"
},
"nativeSrc": "3545:62:3",
"nodeType": "YulFunctionCall",
"src": "3545:62:3"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "3535:6:3",
"nodeType": "YulIdentifier",
"src": "3535:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8_fromMemory",
"nativeSrc": "3277:347:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3322:9:3",
"nodeType": "YulTypedName",
"src": "3322:9:3",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3333:7:3",
"nodeType": "YulTypedName",
"src": "3333:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3345:6:3",
"nodeType": "YulTypedName",
"src": "3345:6:3",
"type": ""
}
],
"src": "3277:347:3"
},
{
"body": {
"nativeSrc": "3658:152:3",
"nodeType": "YulBlock",
"src": "3658:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3675:1:3",
"nodeType": "YulLiteral",
"src": "3675:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3678:77:3",
"nodeType": "YulLiteral",
"src": "3678:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3668:6:3",
"nodeType": "YulIdentifier",
"src": "3668:6:3"
},
"nativeSrc": "3668:88:3",
"nodeType": "YulFunctionCall",
"src": "3668:88:3"
},
"nativeSrc": "3668:88:3",
"nodeType": "YulExpressionStatement",
"src": "3668:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3772:1:3",
"nodeType": "YulLiteral",
"src": "3772:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "3775:4:3",
"nodeType": "YulLiteral",
"src": "3775:4:3",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3765:6:3",
"nodeType": "YulIdentifier",
"src": "3765:6:3"
},
"nativeSrc": "3765:15:3",
"nodeType": "YulFunctionCall",
"src": "3765:15:3"
},
"nativeSrc": "3765:15:3",
"nodeType": "YulExpressionStatement",
"src": "3765:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3796:1:3",
"nodeType": "YulLiteral",
"src": "3796:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3799:4:3",
"nodeType": "YulLiteral",
"src": "3799:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "3789:6:3",
"nodeType": "YulIdentifier",
"src": "3789:6:3"
},
"nativeSrc": "3789:15:3",
"nodeType": "YulFunctionCall",
"src": "3789:15:3"
},
"nativeSrc": "3789:15:3",
"nodeType": "YulExpressionStatement",
"src": "3789:15:3"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "3630:180:3",
"nodeType": "YulFunctionDefinition",
"src": "3630:180:3"
},
{
"body": {
"nativeSrc": "3867:51:3",
"nodeType": "YulBlock",
"src": "3867:51:3",
"statements": [
{
"nativeSrc": "3877:34:3",
"nodeType": "YulAssignment",
"src": "3877:34:3",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3902:1:3",
"nodeType": "YulLiteral",
"src": "3902:1:3",
"type": "",
"value": "1"
},
{
"name": "value",
"nativeSrc": "3905:5:3",
"nodeType": "YulIdentifier",
"src": "3905:5:3"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "3898:3:3",
"nodeType": "YulIdentifier",
"src": "3898:3:3"
},
"nativeSrc": "3898:13:3",
"nodeType": "YulFunctionCall",
"src": "3898:13:3"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "3877:8:3",
"nodeType": "YulIdentifier",
"src": "3877:8:3"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nativeSrc": "3816:102:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3848:5:3",
"nodeType": "YulTypedName",
"src": "3848:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "3858:8:3",
"nodeType": "YulTypedName",
"src": "3858:8:3",
"type": ""
}
],
"src": "3816:102:3"
},
{
"body": {
"nativeSrc": "3997:775:3",
"nodeType": "YulBlock",
"src": "3997:775:3",
"statements": [
{
"nativeSrc": "4007:15:3",
"nodeType": "YulAssignment",
"src": "4007:15:3",
"value": {
"name": "_power",
"nativeSrc": "4016:6:3",
"nodeType": "YulIdentifier",
"src": "4016:6:3"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "4007:5:3",
"nodeType": "YulIdentifier",
"src": "4007:5:3"
}
]
},
{
"nativeSrc": "4031:14:3",
"nodeType": "YulAssignment",
"src": "4031:14:3",
"value": {
"name": "_base",
"nativeSrc": "4040:5:3",
"nodeType": "YulIdentifier",
"src": "4040:5:3"
},
"variableNames": [
{
"name": "base",
"nativeSrc": "4031:4:3",
"nodeType": "YulIdentifier",
"src": "4031:4:3"
}
]
},
{
"body": {
"nativeSrc": "4089:677:3",
"nodeType": "YulBlock",
"src": "4089:677:3",
"statements": [
{
"body": {
"nativeSrc": "4177:22:3",
"nodeType": "YulBlock",
"src": "4177:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "4179:16:3",
"nodeType": "YulIdentifier",
"src": "4179:16:3"
},
"nativeSrc": "4179:18:3",
"nodeType": "YulFunctionCall",
"src": "4179:18:3"
},
"nativeSrc": "4179:18:3",
"nodeType": "YulExpressionStatement",
"src": "4179:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nativeSrc": "4155:4:3",
"nodeType": "YulIdentifier",
"src": "4155:4:3"
},
{
"arguments": [
{
"name": "max",
"nativeSrc": "4165:3:3",
"nodeType": "YulIdentifier",
"src": "4165:3:3"
},
{
"name": "base",
"nativeSrc": "4170:4:3",
"nodeType": "YulIdentifier",
"src": "4170:4:3"
}
],
"functionName": {
"name": "div",
"nativeSrc": "4161:3:3",
"nodeType": "YulIdentifier",
"src": "4161:3:3"
},
"nativeSrc": "4161:14:3",
"nodeType": "YulFunctionCall",
"src": "4161:14:3"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4152:2:3",
"nodeType": "YulIdentifier",
"src": "4152:2:3"
},
"nativeSrc": "4152:24:3",
"nodeType": "YulFunctionCall",
"src": "4152:24:3"
},
"nativeSrc": "4149:50:3",
"nodeType": "YulIf",
"src": "4149:50:3"
},
{
"body": {
"nativeSrc": "4244:419:3",
"nodeType": "YulBlock",
"src": "4244:419:3",
"statements": [
{
"nativeSrc": "4624:25:3",
"nodeType": "YulAssignment",
"src": "4624:25:3",
"value": {
"arguments": [
{
"name": "power",
"nativeSrc": "4637:5:3",
"nodeType": "YulIdentifier",
"src": "4637:5:3"
},
{
"name": "base",
"nativeSrc": "4644:4:3",
"nodeType": "YulIdentifier",
"src": "4644:4:3"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "4633:3:3",
"nodeType": "YulIdentifier",
"src": "4633:3:3"
},
"nativeSrc": "4633:16:3",
"nodeType": "YulFunctionCall",
"src": "4633:16:3"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "4624:5:3",
"nodeType": "YulIdentifier",
"src": "4624:5:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "4219:8:3",
"nodeType": "YulIdentifier",
"src": "4219:8:3"
},
{
"kind": "number",
"nativeSrc": "4229:1:3",
"nodeType": "YulLiteral",
"src": "4229:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4215:3:3",
"nodeType": "YulIdentifier",
"src": "4215:3:3"
},
"nativeSrc": "4215:16:3",
"nodeType": "YulFunctionCall",
"src": "4215:16:3"
},
"nativeSrc": "4212:451:3",
"nodeType": "YulIf",
"src": "4212:451:3"
},
{
"nativeSrc": "4676:23:3",
"nodeType": "YulAssignment",
"src": "4676:23:3",
"value": {
"arguments": [
{
"name": "base",
"nativeSrc": "4688:4:3",
"nodeType": "YulIdentifier",
"src": "4688:4:3"
},
{
"name": "base",
"nativeSrc": "4694:4:3",
"nodeType": "YulIdentifier",
"src": "4694:4:3"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "4684:3:3",
"nodeType": "YulIdentifier",
"src": "4684:3:3"
},
"nativeSrc": "4684:15:3",
"nodeType": "YulFunctionCall",
"src": "4684:15:3"
},
"variableNames": [
{
"name": "base",
"nativeSrc": "4676:4:3",
"nodeType": "YulIdentifier",
"src": "4676:4:3"
}
]
},
{
"nativeSrc": "4712:44:3",
"nodeType": "YulAssignment",
"src": "4712:44:3",
"value": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "4747:8:3",
"nodeType": "YulIdentifier",
"src": "4747:8:3"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nativeSrc": "4724:22:3",
"nodeType": "YulIdentifier",
"src": "4724:22:3"
},
"nativeSrc": "4724:32:3",
"nodeType": "YulFunctionCall",
"src": "4724:32:3"
},
"variableNames": [
{
"name": "exponent",
"nativeSrc": "4712:8:3",
"nodeType": "YulIdentifier",
"src": "4712:8:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "4065:8:3",
"nodeType": "YulIdentifier",
"src": "4065:8:3"
},
{
"kind": "number",
"nativeSrc": "4075:1:3",
"nodeType": "YulLiteral",
"src": "4075:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4062:2:3",
"nodeType": "YulIdentifier",
"src": "4062:2:3"
},
"nativeSrc": "4062:15:3",
"nodeType": "YulFunctionCall",
"src": "4062:15:3"
},
"nativeSrc": "4054:712:3",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "4078:2:3",
"nodeType": "YulBlock",
"src": "4078:2:3",
"statements": []
},
"pre": {
"nativeSrc": "4058:3:3",
"nodeType": "YulBlock",
"src": "4058:3:3",
"statements": []
},
"src": "4054:712:3"
}
]
},
"name": "checked_exp_helper",
"nativeSrc": "3924:848:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nativeSrc": "3952:6:3",
"nodeType": "YulTypedName",
"src": "3952:6:3",
"type": ""
},
{
"name": "_base",
"nativeSrc": "3960:5:3",
"nodeType": "YulTypedName",
"src": "3960:5:3",
"type": ""
},
{
"name": "exponent",
"nativeSrc": "3967:8:3",
"nodeType": "YulTypedName",
"src": "3967:8:3",
"type": ""
},
{
"name": "max",
"nativeSrc": "3977:3:3",
"nodeType": "YulTypedName",
"src": "3977:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nativeSrc": "3985:5:3",
"nodeType": "YulTypedName",
"src": "3985:5:3",
"type": ""
},
{
"name": "base",
"nativeSrc": "3992:4:3",
"nodeType": "YulTypedName",
"src": "3992:4:3",
"type": ""
}
],
"src": "3924:848:3"
},
{
"body": {
"nativeSrc": "4838:1013:3",
"nodeType": "YulBlock",
"src": "4838:1013:3",
"statements": [
{
"body": {
"nativeSrc": "5033:20:3",
"nodeType": "YulBlock",
"src": "5033:20:3",
"statements": [
{
"nativeSrc": "5035:10:3",
"nodeType": "YulAssignment",
"src": "5035:10:3",
"value": {
"kind": "number",
"nativeSrc": "5044:1:3",
"nodeType": "YulLiteral",
"src": "5044:1:3",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "5035:5:3",
"nodeType": "YulIdentifier",
"src": "5035:5:3"
}
]
},
{
"nativeSrc": "5046:5:3",
"nodeType": "YulLeave",
"src": "5046:5:3"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "5023:8:3",
"nodeType": "YulIdentifier",
"src": "5023:8:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "5016:6:3",
"nodeType": "YulIdentifier",
"src": "5016:6:3"
},
"nativeSrc": "5016:16:3",
"nodeType": "YulFunctionCall",
"src": "5016:16:3"
},
"nativeSrc": "5013:40:3",
"nodeType": "YulIf",
"src": "5013:40:3"
},
{
"body": {
"nativeSrc": "5078:20:3",
"nodeType": "YulBlock",
"src": "5078:20:3",
"statements": [
{
"nativeSrc": "5080:10:3",
"nodeType": "YulAssignment",
"src": "5080:10:3",
"value": {
"kind": "number",
"nativeSrc": "5089:1:3",
"nodeType": "YulLiteral",
"src": "5089:1:3",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "5080:5:3",
"nodeType": "YulIdentifier",
"src": "5080:5:3"
}
]
},
{
"nativeSrc": "5091:5:3",
"nodeType": "YulLeave",
"src": "5091:5:3"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nativeSrc": "5072:4:3",
"nodeType": "YulIdentifier",
"src": "5072:4:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "5065:6:3",
"nodeType": "YulIdentifier",
"src": "5065:6:3"
},
"nativeSrc": "5065:12:3",
"nodeType": "YulFunctionCall",
"src": "5065:12:3"
},
"nativeSrc": "5062:36:3",
"nodeType": "YulIf",
"src": "5062:36:3"
},
{
"cases": [
{
"body": {
"nativeSrc": "5208:20:3",
"nodeType": "YulBlock",
"src": "5208:20:3",
"statements": [
{
"nativeSrc": "5210:10:3",
"nodeType": "YulAssignment",
"src": "5210:10:3",
"value": {
"kind": "number",
"nativeSrc": "5219:1:3",
"nodeType": "YulLiteral",
"src": "5219:1:3",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "5210:5:3",
"nodeType": "YulIdentifier",
"src": "5210:5:3"
}
]
},
{
"nativeSrc": "5221:5:3",
"nodeType": "YulLeave",
"src": "5221:5:3"
}
]
},
"nativeSrc": "5201:27:3",
"nodeType": "YulCase",
"src": "5201:27:3",
"value": {
"kind": "number",
"nativeSrc": "5206:1:3",
"nodeType": "YulLiteral",
"src": "5206:1:3",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "5252:176:3",
"nodeType": "YulBlock",
"src": "5252:176:3",
"statements": [
{
"body": {
"nativeSrc": "5287:22:3",
"nodeType": "YulBlock",
"src": "5287:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "5289:16:3",
"nodeType": "YulIdentifier",
"src": "5289:16:3"
},
"nativeSrc": "5289:18:3",
"nodeType": "YulFunctionCall",
"src": "5289:18:3"
},
"nativeSrc": "5289:18:3",
"nodeType": "YulExpressionStatement",
"src": "5289:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "5272:8:3",
"nodeType": "YulIdentifier",
"src": "5272:8:3"
},
{
"kind": "number",
"nativeSrc": "5282:3:3",
"nodeType": "YulLiteral",
"src": "5282:3:3",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "5269:2:3",
"nodeType": "YulIdentifier",
"src": "5269:2:3"
},
"nativeSrc": "5269:17:3",
"nodeType": "YulFunctionCall",
"src": "5269:17:3"
},
"nativeSrc": "5266:43:3",
"nodeType": "YulIf",
"src": "5266:43:3"
},
{
"nativeSrc": "5322:25:3",
"nodeType": "YulAssignment",
"src": "5322:25:3",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5335:1:3",
"nodeType": "YulLiteral",
"src": "5335:1:3",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nativeSrc": "5338:8:3",
"nodeType": "YulIdentifier",
"src": "5338:8:3"
}
],
"functionName": {
"name": "exp",
"nativeSrc": "5331:3:3",
"nodeType": "YulIdentifier",
"src": "5331:3:3"
},
"nativeSrc": "5331:16:3",
"nodeType": "YulFunctionCall",
"src": "5331:16:3"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "5322:5:3",
"nodeType": "YulIdentifier",
"src": "5322:5:3"
}
]
},
{
"body": {
"nativeSrc": "5378:22:3",
"nodeType": "YulBlock",
"src": "5378:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "5380:16:3",
"nodeType": "YulIdentifier",
"src": "5380:16:3"
},
"nativeSrc": "5380:18:3",
"nodeType": "YulFunctionCall",
"src": "5380:18:3"
},
"nativeSrc": "5380:18:3",
"nodeType": "YulExpressionStatement",
"src": "5380:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nativeSrc": "5366:5:3",
"nodeType": "YulIdentifier",
"src": "5366:5:3"
},
{
"name": "max",
"nativeSrc": "5373:3:3",
"nodeType": "YulIdentifier",
"src": "5373:3:3"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "5363:2:3",
"nodeType": "YulIdentifier",
"src": "5363:2:3"
},
"nativeSrc": "5363:14:3",
"nodeType": "YulFunctionCall",
"src": "5363:14:3"
},
"nativeSrc": "5360:40:3",
"nodeType": "YulIf",
"src": "5360:40:3"
},
{
"nativeSrc": "5413:5:3",
"nodeType": "YulLeave",
"src": "5413:5:3"
}
]
},
"nativeSrc": "5237:191:3",
"nodeType": "YulCase",
"src": "5237:191:3",
"value": {
"kind": "number",
"nativeSrc": "5242:1:3",
"nodeType": "YulLiteral",
"src": "5242:1:3",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nativeSrc": "5158:4:3",
"nodeType": "YulIdentifier",
"src": "5158:4:3"
},
"nativeSrc": "5151:277:3",
"nodeType": "YulSwitch",
"src": "5151:277:3"
},
{
"body": {
"nativeSrc": "5560:123:3",
"nodeType": "YulBlock",
"src": "5560:123:3",
"statements": [
{
"nativeSrc": "5574:28:3",
"nodeType": "YulAssignment",
"src": "5574:28:3",
"value": {
"arguments": [
{
"name": "base",
"nativeSrc": "5587:4:3",
"nodeType": "YulIdentifier",
"src": "5587:4:3"
},
{
"name": "exponent",
"nativeSrc": "5593:8:3",
"nodeType": "YulIdentifier",
"src": "5593:8:3"
}
],
"functionName": {
"name": "exp",
"nativeSrc": "5583:3:3",
"nodeType": "YulIdentifier",
"src": "5583:3:3"
},
"nativeSrc": "5583:19:3",
"nodeType": "YulFunctionCall",
"src": "5583:19:3"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "5574:5:3",
"nodeType": "YulIdentifier",
"src": "5574:5:3"
}
]
},
{
"body": {
"nativeSrc": "5633:22:3",
"nodeType": "YulBlock",
"src": "5633:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "5635:16:3",
"nodeType": "YulIdentifier",
"src": "5635:16:3"
},
"nativeSrc": "5635:18:3",
"nodeType": "YulFunctionCall",
"src": "5635:18:3"
},
"nativeSrc": "5635:18:3",
"nodeType": "YulExpressionStatement",
"src": "5635:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nativeSrc": "5621:5:3",
"nodeType": "YulIdentifier",
"src": "5621:5:3"
},
{
"name": "max",
"nativeSrc": "5628:3:3",
"nodeType": "YulIdentifier",
"src": "5628:3:3"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "5618:2:3",
"nodeType": "YulIdentifier",
"src": "5618:2:3"
},
"nativeSrc": "5618:14:3",
"nodeType": "YulFunctionCall",
"src": "5618:14:3"
},
"nativeSrc": "5615:40:3",
"nodeType": "YulIf",
"src": "5615:40:3"
},
{
"nativeSrc": "5668:5:3",
"nodeType": "YulLeave",
"src": "5668:5:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nativeSrc": "5463:4:3",
"nodeType": "YulIdentifier",
"src": "5463:4:3"
},
{
"kind": "number",
"nativeSrc": "5469:2:3",
"nodeType": "YulLiteral",
"src": "5469:2:3",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "5460:2:3",
"nodeType": "YulIdentifier",
"src": "5460:2:3"
},
"nativeSrc": "5460:12:3",
"nodeType": "YulFunctionCall",
"src": "5460:12:3"
},
{
"arguments": [
{
"name": "exponent",
"nativeSrc": "5477:8:3",
"nodeType": "YulIdentifier",
"src": "5477:8:3"
},
{
"kind": "number",
"nativeSrc": "5487:2:3",
"nodeType": "YulLiteral",
"src": "5487:2:3",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "5474:2:3",
"nodeType": "YulIdentifier",
"src": "5474:2:3"
},
"nativeSrc": "5474:16:3",
"nodeType": "YulFunctionCall",
"src": "5474:16:3"
}
],
"functionName": {
"name": "and",
"nativeSrc": "5456:3:3",
"nodeType": "YulIdentifier",
"src": "5456:3:3"
},
"nativeSrc": "5456:35:3",
"nodeType": "YulFunctionCall",
"src": "5456:35:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nativeSrc": "5512:4:3",
"nodeType": "YulIdentifier",
"src": "5512:4:3"
},
{
"kind": "number",
"nativeSrc": "5518:3:3",
"nodeType": "YulLiteral",
"src": "5518:3:3",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "5509:2:3",
"nodeType": "YulIdentifier",
"src": "5509:2:3"
},
"nativeSrc": "5509:13:3",
"nodeType": "YulFunctionCall",
"src": "5509:13:3"
},
{
"arguments": [
{
"name": "exponent",
"nativeSrc": "5527:8:3",
"nodeType": "YulIdentifier",
"src": "5527:8:3"
},
{
"kind": "number",
"nativeSrc": "5537:2:3",
"nodeType": "YulLiteral",
"src": "5537:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "5524:2:3",
"nodeType": "YulIdentifier",
"src": "5524:2:3"
},
"nativeSrc": "5524:16:3",
"nodeType": "YulFunctionCall",
"src": "5524:16:3"
}
],
"functionName": {
"name": "and",
"nativeSrc": "5505:3:3",
"nodeType": "YulIdentifier",
"src": "5505:3:3"
},
"nativeSrc": "5505:36:3",
"nodeType": "YulFunctionCall",
"src": "5505:36:3"
}
],
"functionName": {
"name": "or",
"nativeSrc": "5440:2:3",
"nodeType": "YulIdentifier",
"src": "5440:2:3"
},
"nativeSrc": "5440:111:3",
"nodeType": "YulFunctionCall",
"src": "5440:111:3"
},
"nativeSrc": "5437:246:3",
"nodeType": "YulIf",
"src": "5437:246:3"
},
{
"nativeSrc": "5693:57:3",
"nodeType": "YulAssignment",
"src": "5693:57:3",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5727:1:3",
"nodeType": "YulLiteral",
"src": "5727:1:3",
"type": "",
"value": "1"
},
{
"name": "base",
"nativeSrc": "5730:4:3",
"nodeType": "YulIdentifier",
"src": "5730:4:3"
},
{
"name": "exponent",
"nativeSrc": "5736:8:3",
"nodeType": "YulIdentifier",
"src": "5736:8:3"
},
{
"name": "max",
"nativeSrc": "5746:3:3",
"nodeType": "YulIdentifier",
"src": "5746:3:3"
}
],
"functionName": {
"name": "checked_exp_helper",
"nativeSrc": "5708:18:3",
"nodeType": "YulIdentifier",
"src": "5708:18:3"
},
"nativeSrc": "5708:42:3",
"nodeType": "YulFunctionCall",
"src": "5708:42:3"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "5693:5:3",
"nodeType": "YulIdentifier",
"src": "5693:5:3"
},
{
"name": "base",
"nativeSrc": "5700:4:3",
"nodeType": "YulIdentifier",
"src": "5700:4:3"
}
]
},
{
"body": {
"nativeSrc": "5789:22:3",
"nodeType": "YulBlock",
"src": "5789:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "5791:16:3",
"nodeType": "YulIdentifier",
"src": "5791:16:3"
},
"nativeSrc": "5791:18:3",
"nodeType": "YulFunctionCall",
"src": "5791:18:3"
},
"nativeSrc": "5791:18:3",
"nodeType": "YulExpressionStatement",
"src": "5791:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nativeSrc": "5766:5:3",
"nodeType": "YulIdentifier",
"src": "5766:5:3"
},
{
"arguments": [
{
"name": "max",
"nativeSrc": "5777:3:3",
"nodeType": "YulIdentifier",
"src": "5777:3:3"
},
{
"name": "base",
"nativeSrc": "5782:4:3",
"nodeType": "YulIdentifier",
"src": "5782:4:3"
}
],
"functionName": {
"name": "div",
"nativeSrc": "5773:3:3",
"nodeType": "YulIdentifier",
"src": "5773:3:3"
},
"nativeSrc": "5773:14:3",
"nodeType": "YulFunctionCall",
"src": "5773:14:3"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "5763:2:3",
"nodeType": "YulIdentifier",
"src": "5763:2:3"
},
"nativeSrc": "5763:25:3",
"nodeType": "YulFunctionCall",
"src": "5763:25:3"
},
"nativeSrc": "5760:51:3",
"nodeType": "YulIf",
"src": "5760:51:3"
},
{
"nativeSrc": "5820:25:3",
"nodeType": "YulAssignment",
"src": "5820:25:3",
"value": {
"arguments": [
{
"name": "power",
"nativeSrc": "5833:5:3",
"nodeType": "YulIdentifier",
"src": "5833:5:3"
},
{
"name": "base",
"nativeSrc": "5840:4:3",
"nodeType": "YulIdentifier",
"src": "5840:4:3"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "5829:3:3",
"nodeType": "YulIdentifier",
"src": "5829:3:3"
},
"nativeSrc": "5829:16:3",
"nodeType": "YulFunctionCall",
"src": "5829:16:3"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "5820:5:3",
"nodeType": "YulIdentifier",
"src": "5820:5:3"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nativeSrc": "4778:1073:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nativeSrc": "4808:4:3",
"nodeType": "YulTypedName",
"src": "4808:4:3",
"type": ""
},
{
"name": "exponent",
"nativeSrc": "4814:8:3",
"nodeType": "YulTypedName",
"src": "4814:8:3",
"type": ""
},
{
"name": "max",
"nativeSrc": "4824:3:3",
"nodeType": "YulTypedName",
"src": "4824:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nativeSrc": "4832:5:3",
"nodeType": "YulTypedName",
"src": "4832:5:3",
"type": ""
}
],
"src": "4778:1073:3"
},
{
"body": {
"nativeSrc": "5921:217:3",
"nodeType": "YulBlock",
"src": "5921:217:3",
"statements": [
{
"nativeSrc": "5931:31:3",
"nodeType": "YulAssignment",
"src": "5931:31:3",
"value": {
"arguments": [
{
"name": "base",
"nativeSrc": "5957:4:3",
"nodeType": "YulIdentifier",
"src": "5957:4:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "5939:17:3",
"nodeType": "YulIdentifier",
"src": "5939:17:3"
},
"nativeSrc": "5939:23:3",
"nodeType": "YulFunctionCall",
"src": "5939:23:3"
},
"variableNames": [
{
"name": "base",
"nativeSrc": "5931:4:3",
"nodeType": "YulIdentifier",
"src": "5931:4:3"
}
]
},
{
"nativeSrc": "5971:37:3",
"nodeType": "YulAssignment",
"src": "5971:37:3",
"value": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "5999:8:3",
"nodeType": "YulIdentifier",
"src": "5999:8:3"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nativeSrc": "5983:15:3",
"nodeType": "YulIdentifier",
"src": "5983:15:3"
},
"nativeSrc": "5983:25:3",
"nodeType": "YulFunctionCall",
"src": "5983:25:3"
},
"variableNames": [
{
"name": "exponent",
"nativeSrc": "5971:8:3",
"nodeType": "YulIdentifier",
"src": "5971:8:3"
}
]
},
{
"nativeSrc": "6018:113:3",
"nodeType": "YulAssignment",
"src": "6018:113:3",
"value": {
"arguments": [
{
"name": "base",
"nativeSrc": "6048:4:3",
"nodeType": "YulIdentifier",
"src": "6048:4:3"
},
{
"name": "exponent",
"nativeSrc": "6054:8:3",
"nodeType": "YulIdentifier",
"src": "6054:8:3"
},
{
"kind": "number",
"nativeSrc": "6064:66:3",
"nodeType": "YulLiteral",
"src": "6064:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nativeSrc": "6027:20:3",
"nodeType": "YulIdentifier",
"src": "6027:20:3"
},
"nativeSrc": "6027:104:3",
"nodeType": "YulFunctionCall",
"src": "6027:104:3"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "6018:5:3",
"nodeType": "YulIdentifier",
"src": "6018:5:3"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nativeSrc": "5857:281:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nativeSrc": "5896:4:3",
"nodeType": "YulTypedName",
"src": "5896:4:3",
"type": ""
},
{
"name": "exponent",
"nativeSrc": "5902:8:3",
"nodeType": "YulTypedName",
"src": "5902:8:3",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nativeSrc": "5915:5:3",
"nodeType": "YulTypedName",
"src": "5915:5:3",
"type": ""
}
],
"src": "5857:281:3"
},
{
"body": {
"nativeSrc": "6192:362:3",
"nodeType": "YulBlock",
"src": "6192:362:3",
"statements": [
{
"nativeSrc": "6202:25:3",
"nodeType": "YulAssignment",
"src": "6202:25:3",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6225:1:3",
"nodeType": "YulIdentifier",
"src": "6225:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6207:17:3",
"nodeType": "YulIdentifier",
"src": "6207:17:3"
},
"nativeSrc": "6207:20:3",
"nodeType": "YulFunctionCall",
"src": "6207:20:3"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "6202:1:3",
"nodeType": "YulIdentifier",
"src": "6202:1:3"
}
]
},
{
"nativeSrc": "6236:25:3",
"nodeType": "YulAssignment",
"src": "6236:25:3",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "6259:1:3",
"nodeType": "YulIdentifier",
"src": "6259:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6241:17:3",
"nodeType": "YulIdentifier",
"src": "6241:17:3"
},
"nativeSrc": "6241:20:3",
"nodeType": "YulFunctionCall",
"src": "6241:20:3"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "6236:1:3",
"nodeType": "YulIdentifier",
"src": "6236:1:3"
}
]
},
{
"nativeSrc": "6270:28:3",
"nodeType": "YulVariableDeclaration",
"src": "6270:28:3",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6293:1:3",
"nodeType": "YulIdentifier",
"src": "6293:1:3"
},
{
"name": "y",
"nativeSrc": "6296:1:3",
"nodeType": "YulIdentifier",
"src": "6296:1:3"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "6289:3:3",
"nodeType": "YulIdentifier",
"src": "6289:3:3"
},
"nativeSrc": "6289:9:3",
"nodeType": "YulFunctionCall",
"src": "6289:9:3"
},
"variables": [
{
"name": "product_raw",
"nativeSrc": "6274:11:3",
"nodeType": "YulTypedName",
"src": "6274:11:3",
"type": ""
}
]
},
{
"nativeSrc": "6307:41:3",
"nodeType": "YulAssignment",
"src": "6307:41:3",
"value": {
"arguments": [
{
"name": "product_raw",
"nativeSrc": "6336:11:3",
"nodeType": "YulIdentifier",
"src": "6336:11:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6318:17:3",
"nodeType": "YulIdentifier",
"src": "6318:17:3"
},
"nativeSrc": "6318:30:3",
"nodeType": "YulFunctionCall",
"src": "6318:30:3"
},
"variableNames": [
{
"name": "product",
"nativeSrc": "6307:7:3",
"nodeType": "YulIdentifier",
"src": "6307:7:3"
}
]
},
{
"body": {
"nativeSrc": "6525:22:3",
"nodeType": "YulBlock",
"src": "6525:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "6527:16:3",
"nodeType": "YulIdentifier",
"src": "6527:16:3"
},
"nativeSrc": "6527:18:3",
"nodeType": "YulFunctionCall",
"src": "6527:18:3"
},
"nativeSrc": "6527:18:3",
"nodeType": "YulExpressionStatement",
"src": "6527:18:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nativeSrc": "6458:1:3",
"nodeType": "YulIdentifier",
"src": "6458:1:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6451:6:3",
"nodeType": "YulIdentifier",
"src": "6451:6:3"
},
"nativeSrc": "6451:9:3",
"nodeType": "YulFunctionCall",
"src": "6451:9:3"
},
{
"arguments": [
{
"name": "y",
"nativeSrc": "6481:1:3",
"nodeType": "YulIdentifier",
"src": "6481:1:3"
},
{
"arguments": [
{
"name": "product",
"nativeSrc": "6488:7:3",
"nodeType": "YulIdentifier",
"src": "6488:7:3"
},
{
"name": "x",
"nativeSrc": "6497:1:3",
"nodeType": "YulIdentifier",
"src": "6497:1:3"
}
],
"functionName": {
"name": "div",
"nativeSrc": "6484:3:3",
"nodeType": "YulIdentifier",
"src": "6484:3:3"
},
"nativeSrc": "6484:15:3",
"nodeType": "YulFunctionCall",
"src": "6484:15:3"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "6478:2:3",
"nodeType": "YulIdentifier",
"src": "6478:2:3"
},
"nativeSrc": "6478:22:3",
"nodeType": "YulFunctionCall",
"src": "6478:22:3"
}
],
"functionName": {
"name": "or",
"nativeSrc": "6431:2:3",
"nodeType": "YulIdentifier",
"src": "6431:2:3"
},
"nativeSrc": "6431:83:3",
"nodeType": "YulFunctionCall",
"src": "6431:83:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6411:6:3",
"nodeType": "YulIdentifier",
"src": "6411:6:3"
},
"nativeSrc": "6411:113:3",
"nodeType": "YulFunctionCall",
"src": "6411:113:3"
},
"nativeSrc": "6408:139:3",
"nodeType": "YulIf",
"src": "6408:139:3"
}
]
},
"name": "checked_mul_t_uint256",
"nativeSrc": "6144:410:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "6175:1:3",
"nodeType": "YulTypedName",
"src": "6175:1:3",
"type": ""
},
{
"name": "y",
"nativeSrc": "6178:1:3",
"nodeType": "YulTypedName",
"src": "6178:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nativeSrc": "6184:7:3",
"nodeType": "YulTypedName",
"src": "6184:7:3",
"type": ""
}
],
"src": "6144:410:3"
},
{
"body": {
"nativeSrc": "6588:152:3",
"nodeType": "YulBlock",
"src": "6588:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6605:1:3",
"nodeType": "YulLiteral",
"src": "6605:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6608:77:3",
"nodeType": "YulLiteral",
"src": "6608:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6598:6:3",
"nodeType": "YulIdentifier",
"src": "6598:6:3"
},
"nativeSrc": "6598:88:3",
"nodeType": "YulFunctionCall",
"src": "6598:88:3"
},
"nativeSrc": "6598:88:3",
"nodeType": "YulExpressionStatement",
"src": "6598:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6702:1:3",
"nodeType": "YulLiteral",
"src": "6702:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "6705:4:3",
"nodeType": "YulLiteral",
"src": "6705:4:3",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6695:6:3",
"nodeType": "YulIdentifier",
"src": "6695:6:3"
},
"nativeSrc": "6695:15:3",
"nodeType": "YulFunctionCall",
"src": "6695:15:3"
},
"nativeSrc": "6695:15:3",
"nodeType": "YulExpressionStatement",
"src": "6695:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6726:1:3",
"nodeType": "YulLiteral",
"src": "6726:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6729:4:3",
"nodeType": "YulLiteral",
"src": "6729:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6719:6:3",
"nodeType": "YulIdentifier",
"src": "6719:6:3"
},
"nativeSrc": "6719:15:3",
"nodeType": "YulFunctionCall",
"src": "6719:15:3"
},
"nativeSrc": "6719:15:3",
"nodeType": "YulExpressionStatement",
"src": "6719:15:3"
}
]
},
"name": "panic_error_0x12",
"nativeSrc": "6560:180:3",
"nodeType": "YulFunctionDefinition",
"src": "6560:180:3"
},
{
"body": {
"nativeSrc": "6788:143:3",
"nodeType": "YulBlock",
"src": "6788:143:3",
"statements": [
{
"nativeSrc": "6798:25:3",
"nodeType": "YulAssignment",
"src": "6798:25:3",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6821:1:3",
"nodeType": "YulIdentifier",
"src": "6821:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6803:17:3",
"nodeType": "YulIdentifier",
"src": "6803:17:3"
},
"nativeSrc": "6803:20:3",
"nodeType": "YulFunctionCall",
"src": "6803:20:3"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "6798:1:3",
"nodeType": "YulIdentifier",
"src": "6798:1:3"
}
]
},
{
"nativeSrc": "6832:25:3",
"nodeType": "YulAssignment",
"src": "6832:25:3",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "6855:1:3",
"nodeType": "YulIdentifier",
"src": "6855:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6837:17:3",
"nodeType": "YulIdentifier",
"src": "6837:17:3"
},
"nativeSrc": "6837:20:3",
"nodeType": "YulFunctionCall",
"src": "6837:20:3"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "6832:1:3",
"nodeType": "YulIdentifier",
"src": "6832:1:3"
}
]
},
{
"body": {
"nativeSrc": "6879:22:3",
"nodeType": "YulBlock",
"src": "6879:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nativeSrc": "6881:16:3",
"nodeType": "YulIdentifier",
"src": "6881:16:3"
},
"nativeSrc": "6881:18:3",
"nodeType": "YulFunctionCall",
"src": "6881:18:3"
},
"nativeSrc": "6881:18:3",
"nodeType": "YulExpressionStatement",
"src": "6881:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nativeSrc": "6876:1:3",
"nodeType": "YulIdentifier",
"src": "6876:1:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6869:6:3",
"nodeType": "YulIdentifier",
"src": "6869:6:3"
},
"nativeSrc": "6869:9:3",
"nodeType": "YulFunctionCall",
"src": "6869:9:3"
},
"nativeSrc": "6866:35:3",
"nodeType": "YulIf",
"src": "6866:35:3"
},
{
"nativeSrc": "6911:14:3",
"nodeType": "YulAssignment",
"src": "6911:14:3",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6920:1:3",
"nodeType": "YulIdentifier",
"src": "6920:1:3"
},
{
"name": "y",
"nativeSrc": "6923:1:3",
"nodeType": "YulIdentifier",
"src": "6923:1:3"
}
],
"functionName": {
"name": "div",
"nativeSrc": "6916:3:3",
"nodeType": "YulIdentifier",
"src": "6916:3:3"
},
"nativeSrc": "6916:9:3",
"nodeType": "YulFunctionCall",
"src": "6916:9:3"
},
"variableNames": [
{
"name": "r",
"nativeSrc": "6911:1:3",
"nodeType": "YulIdentifier",
"src": "6911:1:3"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nativeSrc": "6746:185:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "6777:1:3",
"nodeType": "YulTypedName",
"src": "6777:1:3",
"type": ""
},
{
"name": "y",
"nativeSrc": "6780:1:3",
"nodeType": "YulTypedName",
"src": "6780:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nativeSrc": "6786:1:3",
"nodeType": "YulTypedName",
"src": "6786:1:3",
"type": ""
}
],
"src": "6746:185:3"
},
{
"body": {
"nativeSrc": "7063:206:3",
"nodeType": "YulBlock",
"src": "7063:206:3",
"statements": [
{
"nativeSrc": "7073:26:3",
"nodeType": "YulAssignment",
"src": "7073:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7085:9:3",
"nodeType": "YulIdentifier",
"src": "7085:9:3"
},
{
"kind": "number",
"nativeSrc": "7096:2:3",
"nodeType": "YulLiteral",
"src": "7096:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7081:3:3",
"nodeType": "YulIdentifier",
"src": "7081:3:3"
},
"nativeSrc": "7081:18:3",
"nodeType": "YulFunctionCall",
"src": "7081:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7073:4:3",
"nodeType": "YulIdentifier",
"src": "7073:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "7153:6:3",
"nodeType": "YulIdentifier",
"src": "7153:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7166:9:3",
"nodeType": "YulIdentifier",
"src": "7166:9:3"
},
{
"kind": "number",
"nativeSrc": "7177:1:3",
"nodeType": "YulLiteral",
"src": "7177:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7162:3:3",
"nodeType": "YulIdentifier",
"src": "7162:3:3"
},
"nativeSrc": "7162:17:3",
"nodeType": "YulFunctionCall",
"src": "7162:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "7109:43:3",
"nodeType": "YulIdentifier",
"src": "7109:43:3"
},
"nativeSrc": "7109:71:3",
"nodeType": "YulFunctionCall",
"src": "7109:71:3"
},
"nativeSrc": "7109:71:3",
"nodeType": "YulExpressionStatement",
"src": "7109:71:3"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "7234:6:3",
"nodeType": "YulIdentifier",
"src": "7234:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7247:9:3",
"nodeType": "YulIdentifier",
"src": "7247:9:3"
},
{
"kind": "number",
"nativeSrc": "7258:2:3",
"nodeType": "YulLiteral",
"src": "7258:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7243:3:3",
"nodeType": "YulIdentifier",
"src": "7243:3:3"
},
"nativeSrc": "7243:18:3",
"nodeType": "YulFunctionCall",
"src": "7243:18:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "7190:43:3",
"nodeType": "YulIdentifier",
"src": "7190:43:3"
},
"nativeSrc": "7190:72:3",
"nodeType": "YulFunctionCall",
"src": "7190:72:3"
},
"nativeSrc": "7190:72:3",
"nodeType": "YulExpressionStatement",
"src": "7190:72:3"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed",
"nativeSrc": "6937:332:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7027:9:3",
"nodeType": "YulTypedName",
"src": "7027:9:3",
"type": ""
},
{
"name": "value1",
"nativeSrc": "7039:6:3",
"nodeType": "YulTypedName",
"src": "7039:6:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "7047:6:3",
"nodeType": "YulTypedName",
"src": "7047:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7058:4:3",
"nodeType": "YulTypedName",
"src": "7058:4:3",
"type": ""
}
],
"src": "6937:332:3"
},
{
"body": {
"nativeSrc": "7317:48:3",
"nodeType": "YulBlock",
"src": "7317:48:3",
"statements": [
{
"nativeSrc": "7327:32:3",
"nodeType": "YulAssignment",
"src": "7327:32:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "7352:5:3",
"nodeType": "YulIdentifier",
"src": "7352:5:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "7345:6:3",
"nodeType": "YulIdentifier",
"src": "7345:6:3"
},
"nativeSrc": "7345:13:3",
"nodeType": "YulFunctionCall",
"src": "7345:13:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "7338:6:3",
"nodeType": "YulIdentifier",
"src": "7338:6:3"
},
"nativeSrc": "7338:21:3",
"nodeType": "YulFunctionCall",
"src": "7338:21:3"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "7327:7:3",
"nodeType": "YulIdentifier",
"src": "7327:7:3"
}
]
}
]
},
"name": "cleanup_t_bool",
"nativeSrc": "7275:90:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7299:5:3",
"nodeType": "YulTypedName",
"src": "7299:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "7309:7:3",
"nodeType": "YulTypedName",
"src": "7309:7:3",
"type": ""
}
],
"src": "7275:90:3"
},
{
"body": {
"nativeSrc": "7411:76:3",
"nodeType": "YulBlock",
"src": "7411:76:3",
"statements": [
{
"body": {
"nativeSrc": "7465:16:3",
"nodeType": "YulBlock",
"src": "7465:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "7474:1:3",
"nodeType": "YulLiteral",
"src": "7474:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "7477:1:3",
"nodeType": "YulLiteral",
"src": "7477:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "7467:6:3",
"nodeType": "YulIdentifier",
"src": "7467:6:3"
},
"nativeSrc": "7467:12:3",
"nodeType": "YulFunctionCall",
"src": "7467:12:3"
},
"nativeSrc": "7467:12:3",
"nodeType": "YulExpressionStatement",
"src": "7467:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "7434:5:3",
"nodeType": "YulIdentifier",
"src": "7434:5:3"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "7456:5:3",
"nodeType": "YulIdentifier",
"src": "7456:5:3"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nativeSrc": "7441:14:3",
"nodeType": "YulIdentifier",
"src": "7441:14:3"
},
"nativeSrc": "7441:21:3",
"nodeType": "YulFunctionCall",
"src": "7441:21:3"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "7431:2:3",
"nodeType": "YulIdentifier",
"src": "7431:2:3"
},
"nativeSrc": "7431:32:3",
"nodeType": "YulFunctionCall",
"src": "7431:32:3"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "7424:6:3",
"nodeType": "YulIdentifier",
"src": "7424:6:3"
},
"nativeSrc": "7424:40:3",
"nodeType": "YulFunctionCall",
"src": "7424:40:3"
},
"nativeSrc": "7421:60:3",
"nodeType": "YulIf",
"src": "7421:60:3"
}
]
},
"name": "validator_revert_t_bool",
"nativeSrc": "7371:116:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7404:5:3",
"nodeType": "YulTypedName",
"src": "7404:5:3",
"type": ""
}
],
"src": "7371:116:3"
},
{
"body": {
"nativeSrc": "7553:77:3",
"nodeType": "YulBlock",
"src": "7553:77:3",
"statements": [
{
"nativeSrc": "7563:22:3",
"nodeType": "YulAssignment",
"src": "7563:22:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "7578:6:3",
"nodeType": "YulIdentifier",
"src": "7578:6:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "7572:5:3",
"nodeType": "YulIdentifier",
"src": "7572:5:3"
},
"nativeSrc": "7572:13:3",
"nodeType": "YulFunctionCall",
"src": "7572:13:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "7563:5:3",
"nodeType": "YulIdentifier",
"src": "7563:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "7618:5:3",
"nodeType": "YulIdentifier",
"src": "7618:5:3"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nativeSrc": "7594:23:3",
"nodeType": "YulIdentifier",
"src": "7594:23:3"
},
"nativeSrc": "7594:30:3",
"nodeType": "YulFunctionCall",
"src": "7594:30:3"
},
"nativeSrc": "7594:30:3",
"nodeType": "YulExpressionStatement",
"src": "7594:30:3"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nativeSrc": "7493:137:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "7531:6:3",
"nodeType": "YulTypedName",
"src": "7531:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "7539:3:3",
"nodeType": "YulTypedName",
"src": "7539:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "7547:5:3",
"nodeType": "YulTypedName",
"src": "7547:5:3",
"type": ""
}
],
"src": "7493:137:3"
},
{
"body": {
"nativeSrc": "7710:271:3",
"nodeType": "YulBlock",
"src": "7710:271:3",
"statements": [
{
"body": {
"nativeSrc": "7756:83:3",
"nodeType": "YulBlock",
"src": "7756:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "7758:77:3",
"nodeType": "YulIdentifier",
"src": "7758:77:3"
},
"nativeSrc": "7758:79:3",
"nodeType": "YulFunctionCall",
"src": "7758:79:3"
},
"nativeSrc": "7758:79:3",
"nodeType": "YulExpressionStatement",
"src": "7758:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "7731:7:3",
"nodeType": "YulIdentifier",
"src": "7731:7:3"
},
{
"name": "headStart",
"nativeSrc": "7740:9:3",
"nodeType": "YulIdentifier",
"src": "7740:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7727:3:3",
"nodeType": "YulIdentifier",
"src": "7727:3:3"
},
"nativeSrc": "7727:23:3",
"nodeType": "YulFunctionCall",
"src": "7727:23:3"
},
{
"kind": "number",
"nativeSrc": "7752:2:3",
"nodeType": "YulLiteral",
"src": "7752:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "7723:3:3",
"nodeType": "YulIdentifier",
"src": "7723:3:3"
},
"nativeSrc": "7723:32:3",
"nodeType": "YulFunctionCall",
"src": "7723:32:3"
},
"nativeSrc": "7720:119:3",
"nodeType": "YulIf",
"src": "7720:119:3"
},
{
"nativeSrc": "7849:125:3",
"nodeType": "YulBlock",
"src": "7849:125:3",
"statements": [
{
"nativeSrc": "7864:15:3",
"nodeType": "YulVariableDeclaration",
"src": "7864:15:3",
"value": {
"kind": "number",
"nativeSrc": "7878:1:3",
"nodeType": "YulLiteral",
"src": "7878:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "7868:6:3",
"nodeType": "YulTypedName",
"src": "7868:6:3",
"type": ""
}
]
},
{
"nativeSrc": "7893:71:3",
"nodeType": "YulAssignment",
"src": "7893:71:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7936:9:3",
"nodeType": "YulIdentifier",
"src": "7936:9:3"
},
{
"name": "offset",
"nativeSrc": "7947:6:3",
"nodeType": "YulIdentifier",
"src": "7947:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7932:3:3",
"nodeType": "YulIdentifier",
"src": "7932:3:3"
},
"nativeSrc": "7932:22:3",
"nodeType": "YulFunctionCall",
"src": "7932:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "7956:7:3",
"nodeType": "YulIdentifier",
"src": "7956:7:3"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nativeSrc": "7903:28:3",
"nodeType": "YulIdentifier",
"src": "7903:28:3"
},
"nativeSrc": "7903:61:3",
"nodeType": "YulFunctionCall",
"src": "7903:61:3"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "7893:6:3",
"nodeType": "YulIdentifier",
"src": "7893:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nativeSrc": "7636:345:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7680:9:3",
"nodeType": "YulTypedName",
"src": "7680:9:3",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "7691:7:3",
"nodeType": "YulTypedName",
"src": "7691:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "7703:6:3",
"nodeType": "YulTypedName",
"src": "7703:6:3",
"type": ""
}
],
"src": "7636:345:3"
},
{
"body": {
"nativeSrc": "8083:73:3",
"nodeType": "YulBlock",
"src": "8083:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8100:3:3",
"nodeType": "YulIdentifier",
"src": "8100:3:3"
},
{
"name": "length",
"nativeSrc": "8105:6:3",
"nodeType": "YulIdentifier",
"src": "8105:6:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8093:6:3",
"nodeType": "YulIdentifier",
"src": "8093:6:3"
},
"nativeSrc": "8093:19:3",
"nodeType": "YulFunctionCall",
"src": "8093:19:3"
},
"nativeSrc": "8093:19:3",
"nodeType": "YulExpressionStatement",
"src": "8093:19:3"
},
{
"nativeSrc": "8121:29:3",
"nodeType": "YulAssignment",
"src": "8121:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8140:3:3",
"nodeType": "YulIdentifier",
"src": "8140:3:3"
},
{
"kind": "number",
"nativeSrc": "8145:4:3",
"nodeType": "YulLiteral",
"src": "8145:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8136:3:3",
"nodeType": "YulIdentifier",
"src": "8136:3:3"
},
"nativeSrc": "8136:14:3",
"nodeType": "YulFunctionCall",
"src": "8136:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "8121:11:3",
"nodeType": "YulIdentifier",
"src": "8121:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "7987:169:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "8055:3:3",
"nodeType": "YulTypedName",
"src": "8055:3:3",
"type": ""
},
{
"name": "length",
"nativeSrc": "8060:6:3",
"nodeType": "YulTypedName",
"src": "8060:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "8071:11:3",
"nodeType": "YulTypedName",
"src": "8071:11:3",
"type": ""
}
],
"src": "7987:169:3"
},
{
"body": {
"nativeSrc": "8268:59:3",
"nodeType": "YulBlock",
"src": "8268:59:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "8290:6:3",
"nodeType": "YulIdentifier",
"src": "8290:6:3"
},
{
"kind": "number",
"nativeSrc": "8298:1:3",
"nodeType": "YulLiteral",
"src": "8298:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8286:3:3",
"nodeType": "YulIdentifier",
"src": "8286:3:3"
},
"nativeSrc": "8286:14:3",
"nodeType": "YulFunctionCall",
"src": "8286:14:3"
},
{
"hexValue": "5472616e73666572206661696c6564",
"kind": "string",
"nativeSrc": "8302:17:3",
"nodeType": "YulLiteral",
"src": "8302:17:3",
"type": "",
"value": "Transfer failed"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8279:6:3",
"nodeType": "YulIdentifier",
"src": "8279:6:3"
},
"nativeSrc": "8279:41:3",
"nodeType": "YulFunctionCall",
"src": "8279:41:3"
},
"nativeSrc": "8279:41:3",
"nodeType": "YulExpressionStatement",
"src": "8279:41:3"
}
]
},
"name": "store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51",
"nativeSrc": "8162:165:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "8260:6:3",
"nodeType": "YulTypedName",
"src": "8260:6:3",
"type": ""
}
],
"src": "8162:165:3"
},
{
"body": {
"nativeSrc": "8479:220:3",
"nodeType": "YulBlock",
"src": "8479:220:3",
"statements": [
{
"nativeSrc": "8489:74:3",
"nodeType": "YulAssignment",
"src": "8489:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8555:3:3",
"nodeType": "YulIdentifier",
"src": "8555:3:3"
},
{
"kind": "number",
"nativeSrc": "8560:2:3",
"nodeType": "YulLiteral",
"src": "8560:2:3",
"type": "",
"value": "15"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "8496:58:3",
"nodeType": "YulIdentifier",
"src": "8496:58:3"
},
"nativeSrc": "8496:67:3",
"nodeType": "YulFunctionCall",
"src": "8496:67:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "8489:3:3",
"nodeType": "YulIdentifier",
"src": "8489:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8661:3:3",
"nodeType": "YulIdentifier",
"src": "8661:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51",
"nativeSrc": "8572:88:3",
"nodeType": "YulIdentifier",
"src": "8572:88:3"
},
"nativeSrc": "8572:93:3",
"nodeType": "YulFunctionCall",
"src": "8572:93:3"
},
"nativeSrc": "8572:93:3",
"nodeType": "YulExpressionStatement",
"src": "8572:93:3"
},
{
"nativeSrc": "8674:19:3",
"nodeType": "YulAssignment",
"src": "8674:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8685:3:3",
"nodeType": "YulIdentifier",
"src": "8685:3:3"
},
{
"kind": "number",
"nativeSrc": "8690:2:3",
"nodeType": "YulLiteral",
"src": "8690:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8681:3:3",
"nodeType": "YulIdentifier",
"src": "8681:3:3"
},
"nativeSrc": "8681:12:3",
"nodeType": "YulFunctionCall",
"src": "8681:12:3"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8674:3:3",
"nodeType": "YulIdentifier",
"src": "8674:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8333:366:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "8467:3:3",
"nodeType": "YulTypedName",
"src": "8467:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8475:3:3",
"nodeType": "YulTypedName",
"src": "8475:3:3",
"type": ""
}
],
"src": "8333:366:3"
},
{
"body": {
"nativeSrc": "8876:248:3",
"nodeType": "YulBlock",
"src": "8876:248:3",
"statements": [
{
"nativeSrc": "8886:26:3",
"nodeType": "YulAssignment",
"src": "8886:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "8898:9:3",
"nodeType": "YulIdentifier",
"src": "8898:9:3"
},
{
"kind": "number",
"nativeSrc": "8909:2:3",
"nodeType": "YulLiteral",
"src": "8909:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8894:3:3",
"nodeType": "YulIdentifier",
"src": "8894:3:3"
},
"nativeSrc": "8894:18:3",
"nodeType": "YulFunctionCall",
"src": "8894:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8886:4:3",
"nodeType": "YulIdentifier",
"src": "8886:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8933:9:3",
"nodeType": "YulIdentifier",
"src": "8933:9:3"
},
{
"kind": "number",
"nativeSrc": "8944:1:3",
"nodeType": "YulLiteral",
"src": "8944:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8929:3:3",
"nodeType": "YulIdentifier",
"src": "8929:3:3"
},
"nativeSrc": "8929:17:3",
"nodeType": "YulFunctionCall",
"src": "8929:17:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8952:4:3",
"nodeType": "YulIdentifier",
"src": "8952:4:3"
},
{
"name": "headStart",
"nativeSrc": "8958:9:3",
"nodeType": "YulIdentifier",
"src": "8958:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8948:3:3",
"nodeType": "YulIdentifier",
"src": "8948:3:3"
},
"nativeSrc": "8948:20:3",
"nodeType": "YulFunctionCall",
"src": "8948:20:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8922:6:3",
"nodeType": "YulIdentifier",
"src": "8922:6:3"
},
"nativeSrc": "8922:47:3",
"nodeType": "YulFunctionCall",
"src": "8922:47:3"
},
"nativeSrc": "8922:47:3",
"nodeType": "YulExpressionStatement",
"src": "8922:47:3"
},
{
"nativeSrc": "8978:139:3",
"nodeType": "YulAssignment",
"src": "8978:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "9112:4:3",
"nodeType": "YulIdentifier",
"src": "9112:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8986:124:3",
"nodeType": "YulIdentifier",
"src": "8986:124:3"
},
"nativeSrc": "8986:131:3",
"nodeType": "YulFunctionCall",
"src": "8986:131:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8978:4:3",
"nodeType": "YulIdentifier",
"src": "8978:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "8705:419:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "8856:9:3",
"nodeType": "YulTypedName",
"src": "8856:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "8871:4:3",
"nodeType": "YulTypedName",
"src": "8871:4:3",
"type": ""
}
],
"src": "8705:419:3"
},
{
"body": {
"nativeSrc": "9284:288:3",
"nodeType": "YulBlock",
"src": "9284:288:3",
"statements": [
{
"nativeSrc": "9294:26:3",
"nodeType": "YulAssignment",
"src": "9294:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9306:9:3",
"nodeType": "YulIdentifier",
"src": "9306:9:3"
},
{
"kind": "number",
"nativeSrc": "9317:2:3",
"nodeType": "YulLiteral",
"src": "9317:2:3",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9302:3:3",
"nodeType": "YulIdentifier",
"src": "9302:3:3"
},
"nativeSrc": "9302:18:3",
"nodeType": "YulFunctionCall",
"src": "9302:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9294:4:3",
"nodeType": "YulIdentifier",
"src": "9294:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "9374:6:3",
"nodeType": "YulIdentifier",
"src": "9374:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9387:9:3",
"nodeType": "YulIdentifier",
"src": "9387:9:3"
},
{
"kind": "number",
"nativeSrc": "9398:1:3",
"nodeType": "YulLiteral",
"src": "9398:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9383:3:3",
"nodeType": "YulIdentifier",
"src": "9383:3:3"
},
"nativeSrc": "9383:17:3",
"nodeType": "YulFunctionCall",
"src": "9383:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "9330:43:3",
"nodeType": "YulIdentifier",
"src": "9330:43:3"
},
"nativeSrc": "9330:71:3",
"nodeType": "YulFunctionCall",
"src": "9330:71:3"
},
"nativeSrc": "9330:71:3",
"nodeType": "YulExpressionStatement",
"src": "9330:71:3"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "9455:6:3",
"nodeType": "YulIdentifier",
"src": "9455:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9468:9:3",
"nodeType": "YulIdentifier",
"src": "9468:9:3"
},
{
"kind": "number",
"nativeSrc": "9479:2:3",
"nodeType": "YulLiteral",
"src": "9479:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9464:3:3",
"nodeType": "YulIdentifier",
"src": "9464:3:3"
},
"nativeSrc": "9464:18:3",
"nodeType": "YulFunctionCall",
"src": "9464:18:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "9411:43:3",
"nodeType": "YulIdentifier",
"src": "9411:43:3"
},
"nativeSrc": "9411:72:3",
"nodeType": "YulFunctionCall",
"src": "9411:72:3"
},
"nativeSrc": "9411:72:3",
"nodeType": "YulExpressionStatement",
"src": "9411:72:3"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "9537:6:3",
"nodeType": "YulIdentifier",
"src": "9537:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9550:9:3",
"nodeType": "YulIdentifier",
"src": "9550:9:3"
},
{
"kind": "number",
"nativeSrc": "9561:2:3",
"nodeType": "YulLiteral",
"src": "9561:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9546:3:3",
"nodeType": "YulIdentifier",
"src": "9546:3:3"
},
"nativeSrc": "9546:18:3",
"nodeType": "YulFunctionCall",
"src": "9546:18:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "9493:43:3",
"nodeType": "YulIdentifier",
"src": "9493:43:3"
},
"nativeSrc": "9493:72:3",
"nodeType": "YulFunctionCall",
"src": "9493:72:3"
},
"nativeSrc": "9493:72:3",
"nodeType": "YulExpressionStatement",
"src": "9493:72:3"
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed",
"nativeSrc": "9130:442:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9240:9:3",
"nodeType": "YulTypedName",
"src": "9240:9:3",
"type": ""
},
{
"name": "value2",
"nativeSrc": "9252:6:3",
"nodeType": "YulTypedName",
"src": "9252:6:3",
"type": ""
},
{
"name": "value1",
"nativeSrc": "9260:6:3",
"nodeType": "YulTypedName",
"src": "9260:6:3",
"type": ""
},
{
"name": "value0",
"nativeSrc": "9268:6:3",
"nodeType": "YulTypedName",
"src": "9268:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9279:4:3",
"nodeType": "YulTypedName",
"src": "9279:4:3",
"type": ""
}
],
"src": "9130:442:3"
},
{
"body": {
"nativeSrc": "9684:66:3",
"nodeType": "YulBlock",
"src": "9684:66:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "9706:6:3",
"nodeType": "YulIdentifier",
"src": "9706:6:3"
},
{
"kind": "number",
"nativeSrc": "9714:1:3",
"nodeType": "YulLiteral",
"src": "9714:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9702:3:3",
"nodeType": "YulIdentifier",
"src": "9702:3:3"
},
"nativeSrc": "9702:14:3",
"nodeType": "YulFunctionCall",
"src": "9702:14:3"
},
{
"hexValue": "4e6f742074686520636f6e7472616374206f776e6572",
"kind": "string",
"nativeSrc": "9718:24:3",
"nodeType": "YulLiteral",
"src": "9718:24:3",
"type": "",
"value": "Not the contract owner"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9695:6:3",
"nodeType": "YulIdentifier",
"src": "9695:6:3"
},
"nativeSrc": "9695:48:3",
"nodeType": "YulFunctionCall",
"src": "9695:48:3"
},
"nativeSrc": "9695:48:3",
"nodeType": "YulExpressionStatement",
"src": "9695:48:3"
}
]
},
"name": "store_literal_in_memory_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8",
"nativeSrc": "9578:172:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "9676:6:3",
"nodeType": "YulTypedName",
"src": "9676:6:3",
"type": ""
}
],
"src": "9578:172:3"
},
{
"body": {
"nativeSrc": "9902:220:3",
"nodeType": "YulBlock",
"src": "9902:220:3",
"statements": [
{
"nativeSrc": "9912:74:3",
"nodeType": "YulAssignment",
"src": "9912:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9978:3:3",
"nodeType": "YulIdentifier",
"src": "9978:3:3"
},
{
"kind": "number",
"nativeSrc": "9983:2:3",
"nodeType": "YulLiteral",
"src": "9983:2:3",
"type": "",
"value": "22"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "9919:58:3",
"nodeType": "YulIdentifier",
"src": "9919:58:3"
},
"nativeSrc": "9919:67:3",
"nodeType": "YulFunctionCall",
"src": "9919:67:3"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "9912:3:3",
"nodeType": "YulIdentifier",
"src": "9912:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10084:3:3",
"nodeType": "YulIdentifier",
"src": "10084:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8",
"nativeSrc": "9995:88:3",
"nodeType": "YulIdentifier",
"src": "9995:88:3"
},
"nativeSrc": "9995:93:3",
"nodeType": "YulFunctionCall",
"src": "9995:93:3"
},
"nativeSrc": "9995:93:3",
"nodeType": "YulExpressionStatement",
"src": "9995:93:3"
},
{
"nativeSrc": "10097:19:3",
"nodeType": "YulAssignment",
"src": "10097:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10108:3:3",
"nodeType": "YulIdentifier",
"src": "10108:3:3"
},
{
"kind": "number",
"nativeSrc": "10113:2:3",
"nodeType": "YulLiteral",
"src": "10113:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10104:3:3",
"nodeType": "YulIdentifier",
"src": "10104:3:3"
},
"nativeSrc": "10104:12:3",
"nodeType": "YulFunctionCall",
"src": "10104:12:3"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "10097:3:3",
"nodeType": "YulIdentifier",
"src": "10097:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9756:366:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "9890:3:3",
"nodeType": "YulTypedName",
"src": "9890:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "9898:3:3",
"nodeType": "YulTypedName",
"src": "9898:3:3",
"type": ""
}
],
"src": "9756:366:3"
},
{
"body": {
"nativeSrc": "10299:248:3",
"nodeType": "YulBlock",
"src": "10299:248:3",
"statements": [
{
"nativeSrc": "10309:26:3",
"nodeType": "YulAssignment",
"src": "10309:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "10321:9:3",
"nodeType": "YulIdentifier",
"src": "10321:9:3"
},
{
"kind": "number",
"nativeSrc": "10332:2:3",
"nodeType": "YulLiteral",
"src": "10332:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10317:3:3",
"nodeType": "YulIdentifier",
"src": "10317:3:3"
},
"nativeSrc": "10317:18:3",
"nodeType": "YulFunctionCall",
"src": "10317:18:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10309:4:3",
"nodeType": "YulIdentifier",
"src": "10309:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10356:9:3",
"nodeType": "YulIdentifier",
"src": "10356:9:3"
},
{
"kind": "number",
"nativeSrc": "10367:1:3",
"nodeType": "YulLiteral",
"src": "10367:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10352:3:3",
"nodeType": "YulIdentifier",
"src": "10352:3:3"
},
"nativeSrc": "10352:17:3",
"nodeType": "YulFunctionCall",
"src": "10352:17:3"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "10375:4:3",
"nodeType": "YulIdentifier",
"src": "10375:4:3"
},
{
"name": "headStart",
"nativeSrc": "10381:9:3",
"nodeType": "YulIdentifier",
"src": "10381:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10371:3:3",
"nodeType": "YulIdentifier",
"src": "10371:3:3"
},
"nativeSrc": "10371:20:3",
"nodeType": "YulFunctionCall",
"src": "10371:20:3"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10345:6:3",
"nodeType": "YulIdentifier",
"src": "10345:6:3"
},
"nativeSrc": "10345:47:3",
"nodeType": "YulFunctionCall",
"src": "10345:47:3"
},
"nativeSrc": "10345:47:3",
"nodeType": "YulExpressionStatement",
"src": "10345:47:3"
},
{
"nativeSrc": "10401:139:3",
"nodeType": "YulAssignment",
"src": "10401:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "10535:4:3",
"nodeType": "YulIdentifier",
"src": "10535:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10409:124:3",
"nodeType": "YulIdentifier",
"src": "10409:124:3"
},
"nativeSrc": "10409:131:3",
"nodeType": "YulFunctionCall",
"src": "10409:131:3"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10401:4:3",
"nodeType": "YulIdentifier",
"src": "10401:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "10128:419:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10279:9:3",
"nodeType": "YulTypedName",
"src": "10279:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "10294:4:3",
"nodeType": "YulTypedName",
"src": "10294:4:3",
"type": ""
}
],
"src": "10128:419:3"
},
{
"body": {
"nativeSrc": "10616:80:3",
"nodeType": "YulBlock",
"src": "10616:80:3",
"statements": [
{
"nativeSrc": "10626:22:3",
"nodeType": "YulAssignment",
"src": "10626:22:3",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "10641:6:3",
"nodeType": "YulIdentifier",
"src": "10641:6:3"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "10635:5:3",
"nodeType": "YulIdentifier",
"src": "10635:5:3"
},
"nativeSrc": "10635:13:3",
"nodeType": "YulFunctionCall",
"src": "10635:13:3"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "10626:5:3",
"nodeType": "YulIdentifier",
"src": "10626:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "10684:5:3",
"nodeType": "YulIdentifier",
"src": "10684:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "10657:26:3",
"nodeType": "YulIdentifier",
"src": "10657:26:3"
},
"nativeSrc": "10657:33:3",
"nodeType": "YulFunctionCall",
"src": "10657:33:3"
},
"nativeSrc": "10657:33:3",
"nodeType": "YulExpressionStatement",
"src": "10657:33:3"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nativeSrc": "10553:143:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "10594:6:3",
"nodeType": "YulTypedName",
"src": "10594:6:3",
"type": ""
},
{
"name": "end",
"nativeSrc": "10602:3:3",
"nodeType": "YulTypedName",
"src": "10602:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "10610:5:3",
"nodeType": "YulTypedName",
"src": "10610:5:3",
"type": ""
}
],
"src": "10553:143:3"
},
{
"body": {
"nativeSrc": "10779:274:3",
"nodeType": "YulBlock",
"src": "10779:274:3",
"statements": [
{
"body": {
"nativeSrc": "10825:83:3",
"nodeType": "YulBlock",
"src": "10825:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "10827:77:3",
"nodeType": "YulIdentifier",
"src": "10827:77:3"
},
"nativeSrc": "10827:79:3",
"nodeType": "YulFunctionCall",
"src": "10827:79:3"
},
"nativeSrc": "10827:79:3",
"nodeType": "YulExpressionStatement",
"src": "10827:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "10800:7:3",
"nodeType": "YulIdentifier",
"src": "10800:7:3"
},
{
"name": "headStart",
"nativeSrc": "10809:9:3",
"nodeType": "YulIdentifier",
"src": "10809:9:3"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10796:3:3",
"nodeType": "YulIdentifier",
"src": "10796:3:3"
},
"nativeSrc": "10796:23:3",
"nodeType": "YulFunctionCall",
"src": "10796:23:3"
},
{
"kind": "number",
"nativeSrc": "10821:2:3",
"nodeType": "YulLiteral",
"src": "10821:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "10792:3:3",
"nodeType": "YulIdentifier",
"src": "10792:3:3"
},
"nativeSrc": "10792:32:3",
"nodeType": "YulFunctionCall",
"src": "10792:32:3"
},
"nativeSrc": "10789:119:3",
"nodeType": "YulIf",
"src": "10789:119:3"
},
{
"nativeSrc": "10918:128:3",
"nodeType": "YulBlock",
"src": "10918:128:3",
"statements": [
{
"nativeSrc": "10933:15:3",
"nodeType": "YulVariableDeclaration",
"src": "10933:15:3",
"value": {
"kind": "number",
"nativeSrc": "10947:1:3",
"nodeType": "YulLiteral",
"src": "10947:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "10937:6:3",
"nodeType": "YulTypedName",
"src": "10937:6:3",
"type": ""
}
]
},
{
"nativeSrc": "10962:74:3",
"nodeType": "YulAssignment",
"src": "10962:74:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "11008:9:3",
"nodeType": "YulIdentifier",
"src": "11008:9:3"
},
{
"name": "offset",
"nativeSrc": "11019:6:3",
"nodeType": "YulIdentifier",
"src": "11019:6:3"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11004:3:3",
"nodeType": "YulIdentifier",
"src": "11004:3:3"
},
"nativeSrc": "11004:22:3",
"nodeType": "YulFunctionCall",
"src": "11004:22:3"
},
{
"name": "dataEnd",
"nativeSrc": "11028:7:3",
"nodeType": "YulIdentifier",
"src": "11028:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nativeSrc": "10972:31:3",
"nodeType": "YulIdentifier",
"src": "10972:31:3"
},
"nativeSrc": "10972:64:3",
"nodeType": "YulFunctionCall",
"src": "10972:64:3"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "10962:6:3",
"nodeType": "YulIdentifier",
"src": "10962:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nativeSrc": "10702:351:3",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10749:9:3",
"nodeType": "YulTypedName",
"src": "10749:9:3",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "10760:7:3",
"nodeType": "YulTypedName",
"src": "10760:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "10772:6:3",
"nodeType": "YulTypedName",
"src": "10772:6:3",
"type": ""
}
],
"src": "10702:351:3"
}
]
},
"contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(identity(cleanup_t_uint160(value)))\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_contract$_IERC20Metadata_$102_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function abi_encode_t_contract$_IERC20Metadata_$102_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_contract$_IERC20Metadata_$102_to_t_address(value))\n }\n\n function abi_encode_tuple_t_contract$_IERC20Metadata_$102__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_contract$_IERC20Metadata_$102_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint8_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint8(value)\n }\n\n function abi_decode_tuple_t_uint8_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint8_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\n\n }\n\n function checked_exp_helper(_power, _base, exponent, max) -> power, base {\n power := _power\n base := _base\n for { } gt(exponent, 1) {}\n {\n // overflow check for base * base\n if gt(base, div(max, base)) { panic_error_0x11() }\n if and(exponent, 1)\n {\n // No checks for power := mul(power, base) needed, because the check\n // for base * base above is sufficient, since:\n // |power| <= base (proof by induction) and thus:\n // |power * base| <= base * base <= max <= |min| (for signed)\n // (this is equally true for signed and unsigned exp)\n power := mul(power, base)\n }\n base := mul(base, base)\n exponent := shift_right_1_unsigned(exponent)\n }\n }\n\n function checked_exp_unsigned(base, exponent, max) -> power {\n // This function currently cannot be inlined because of the\n // \"leave\" statements. We have to improve the optimizer.\n\n // Note that 0**0 == 1\n if iszero(exponent) { power := 1 leave }\n if iszero(base) { power := 0 leave }\n\n // Specializations for small bases\n switch base\n // 0 is handled above\n case 1 { power := 1 leave }\n case 2\n {\n if gt(exponent, 255) { panic_error_0x11() }\n power := exp(2, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n if or(\n and(lt(base, 11), lt(exponent, 78)),\n and(lt(base, 307), lt(exponent, 32))\n )\n {\n power := exp(base, exponent)\n if gt(power, max) { panic_error_0x11() }\n leave\n }\n\n power, base := checked_exp_helper(1, base, exponent, max)\n\n if gt(power, div(max, base)) { panic_error_0x11() }\n power := mul(power, base)\n }\n\n function checked_exp_t_uint256_t_uint8(base, exponent) -> power {\n base := cleanup_t_uint256(base)\n exponent := cleanup_t_uint8(exponent)\n\n power := checked_exp_unsigned(base, exponent, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function 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 store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51(memPtr) {\n\n mstore(add(memPtr, 0), \"Transfer failed\")\n\n }\n\n function abi_encode_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 15)\n store_literal_in_memory_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51__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_25adaa6d082ce15f901e0d8a3d393e7462ef9edf2e6bc8321fa14d1615b6fc51_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function store_literal_in_memory_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8(memPtr) {\n\n mstore(add(memPtr, 0), \"Not the contract owner\")\n\n }\n\n function abi_encode_t_stringliteral_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 22)\n store_literal_in_memory_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8__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_f40f899e3d827919ff313c4325c1ece4db0c8c5fc3251000e1c0632edd92ebc8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100865760003560e01c8063594351c511610059578063594351c5146101145780638da5cb5b1461013f578063d2d93f901461016a578063e086e5ec14610195578063eedd8624146101ac57610086565b8063150d283d1461008b5780631daa0a261461009557806324dd0b46146100c05780632ab370a4146100e9575b600080fd5b6100936101c3565b005b3480156100a157600080fd5b506100aa61035e565b6040516100b79190610a66565b60405180910390f35b3480156100cc57600080fd5b506100e760048036038101906100e29190610abc565b610384565b005b3480156100f557600080fd5b506100fe61066a565b60405161010b9190610a66565b60405180910390f35b34801561012057600080fd5b50610129610690565b6040516101369190610af8565b60405180910390f35b34801561014b57600080fd5b50610154610696565b6040516101619190610b34565b60405180910390f35b34801561017657600080fd5b5061017f6106ba565b60405161018c9190610af8565b60405180910390f35b3480156101a157600080fd5b506101aa6106c0565b005b3480156101b857600080fd5b506101c16107b7565b005b6000600354600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102599190610b88565b600a6102659190610d17565b346102709190610d62565b61027a9190610dd3565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016102d9929190610e04565b6020604051808303816000875af11580156102f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031c9190610e65565b61035b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035290610eef565b60405180910390fd5b50565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104179190610b88565b600a6104239190610d17565b6004546104309190610d62565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561049d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104c19190610b88565b600a6104cd9190610d17565b836104d89190610d62565b6104e29190610dd3565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161054393929190610f0f565b6020604051808303816000875af1158015610562573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105869190610e65565b50600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016105e4929190610e04565b6020604051808303816000875af1158015610603573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106279190610e65565b610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90610eef565b60405180910390fd5b5050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60045481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60035481565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461074e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074590610f92565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156107b4573d6000803e3d6000fd5b50565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90610f92565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016108a29190610b34565b602060405180830381865afa1580156108bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e39190610fc7565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401610962929190610e04565b6020604051808303816000875af1158015610981573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a59190610e65565b6109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90610eef565b60405180910390fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610a2c610a27610a22846109e7565b610a07565b6109e7565b9050919050565b6000610a3e82610a11565b9050919050565b6000610a5082610a33565b9050919050565b610a6081610a45565b82525050565b6000602082019050610a7b6000830184610a57565b92915050565b600080fd5b6000819050919050565b610a9981610a86565b8114610aa457600080fd5b50565b600081359050610ab681610a90565b92915050565b600060208284031215610ad257610ad1610a81565b5b6000610ae084828501610aa7565b91505092915050565b610af281610a86565b82525050565b6000602082019050610b0d6000830184610ae9565b92915050565b6000610b1e826109e7565b9050919050565b610b2e81610b13565b82525050565b6000602082019050610b496000830184610b25565b92915050565b600060ff82169050919050565b610b6581610b4f565b8114610b7057600080fd5b50565b600081519050610b8281610b5c565b92915050565b600060208284031215610b9e57610b9d610a81565b5b6000610bac84828501610b73565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115610c3b57808604811115610c1757610c16610bb5565b5b6001851615610c265780820291505b8081029050610c3485610be4565b9450610bfb565b94509492505050565b600082610c545760019050610d10565b81610c625760009050610d10565b8160018114610c785760028114610c8257610cb1565b6001915050610d10565b60ff841115610c9457610c93610bb5565b5b8360020a915084821115610cab57610caa610bb5565b5b50610d10565b5060208310610133831016604e8410600b8410161715610ce65782820a905083811115610ce157610ce0610bb5565b5b610d10565b610cf38484846001610bf1565b92509050818404811115610d0a57610d09610bb5565b5b81810290505b9392505050565b6000610d2282610a86565b9150610d2d83610b4f565b9250610d5a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610c44565b905092915050565b6000610d6d82610a86565b9150610d7883610a86565b9250828202610d8681610a86565b91508282048414831517610d9d57610d9c610bb5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000610dde82610a86565b9150610de983610a86565b925082610df957610df8610da4565b5b828204905092915050565b6000604082019050610e196000830185610b25565b610e266020830184610ae9565b9392505050565b60008115159050919050565b610e4281610e2d565b8114610e4d57600080fd5b50565b600081519050610e5f81610e39565b92915050565b600060208284031215610e7b57610e7a610a81565b5b6000610e8984828501610e50565b91505092915050565b600082825260208201905092915050565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b6000610ed9600f83610e92565b9150610ee482610ea3565b602082019050919050565b60006020820190508181036000830152610f0881610ecc565b9050919050565b6000606082019050610f246000830186610b25565b610f316020830185610b25565b610f3e6040830184610ae9565b949350505050565b7f4e6f742074686520636f6e7472616374206f776e657200000000000000000000600082015250565b6000610f7c601683610e92565b9150610f8782610f46565b602082019050919050565b60006020820190508181036000830152610fab81610f6f565b9050919050565b600081519050610fc181610a90565b92915050565b600060208284031215610fdd57610fdc610a81565b5b6000610feb84828501610fb2565b9150509291505056fea2646970667358221220d52d1104274860e0bfea5c2073bc9ba05b223d400d6cfae7e231ce5efbaad4a564736f6c63430008150033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x86 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x594351C5 GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x594351C5 EQ PUSH2 0x114 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x13F JUMPI DUP1 PUSH4 0xD2D93F90 EQ PUSH2 0x16A JUMPI DUP1 PUSH4 0xE086E5EC EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0xEEDD8624 EQ PUSH2 0x1AC JUMPI PUSH2 0x86 JUMP JUMPDEST DUP1 PUSH4 0x150D283D EQ PUSH2 0x8B JUMPI DUP1 PUSH4 0x1DAA0A26 EQ PUSH2 0x95 JUMPI DUP1 PUSH4 0x24DD0B46 EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0x2AB370A4 EQ PUSH2 0xE9 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x93 PUSH2 0x1C3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAA PUSH2 0x35E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB7 SWAP2 SWAP1 PUSH2 0xA66 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE2 SWAP2 SWAP1 PUSH2 0xABC JUMP JUMPDEST PUSH2 0x384 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xFE PUSH2 0x66A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10B SWAP2 SWAP1 PUSH2 0xA66 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x120 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x129 PUSH2 0x690 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x136 SWAP2 SWAP1 PUSH2 0xAF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x154 PUSH2 0x696 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x161 SWAP2 SWAP1 PUSH2 0xB34 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x176 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x17F PUSH2 0x6BA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0xAF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1A1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1AA PUSH2 0x6C0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1C1 PUSH2 0x7B7 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH1 0x3 SLOAD PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x235 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x259 SWAP2 SWAP1 PUSH2 0xB88 JUMP JUMPDEST PUSH1 0xA PUSH2 0x265 SWAP2 SWAP1 PUSH2 0xD17 JUMP JUMPDEST CALLVALUE PUSH2 0x270 SWAP2 SWAP1 PUSH2 0xD62 JUMP JUMPDEST PUSH2 0x27A SWAP2 SWAP1 PUSH2 0xDD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D9 SWAP3 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2F8 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x31C SWAP2 SWAP1 PUSH2 0xE65 JUMP JUMPDEST PUSH2 0x35B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x352 SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x3F3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x417 SWAP2 SWAP1 PUSH2 0xB88 JUMP JUMPDEST PUSH1 0xA PUSH2 0x423 SWAP2 SWAP1 PUSH2 0xD17 JUMP JUMPDEST PUSH1 0x4 SLOAD PUSH2 0x430 SWAP2 SWAP1 PUSH2 0xD62 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x313CE567 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x49D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x4C1 SWAP2 SWAP1 PUSH2 0xB88 JUMP JUMPDEST PUSH1 0xA PUSH2 0x4CD SWAP2 SWAP1 PUSH2 0xD17 JUMP JUMPDEST DUP4 PUSH2 0x4D8 SWAP2 SWAP1 PUSH2 0xD62 JUMP JUMPDEST PUSH2 0x4E2 SWAP2 SWAP1 PUSH2 0xDD3 JUMP JUMPDEST SWAP1 POP PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x23B872DD CALLER ADDRESS DUP6 PUSH1 0x40 MLOAD DUP5 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x543 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xF0F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x562 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x586 SWAP2 SWAP1 PUSH2 0xE65 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB CALLER DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E4 SWAP3 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x603 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x627 SWAP2 SWAP1 PUSH2 0xE65 JUMP JUMPDEST PUSH2 0x666 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x65D SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x4 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x74E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x745 SWAP1 PUSH2 0xF92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC SELFBALANCE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x7B4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x845 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x83C SWAP1 PUSH2 0xF92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x70A08231 ADDRESS PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A2 SWAP2 SWAP1 PUSH2 0xB34 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x8BF JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x8E3 SWAP2 SWAP1 PUSH2 0xFC7 JUMP JUMPDEST SWAP1 POP PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xA9059CBB PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x962 SWAP3 SWAP2 SWAP1 PUSH2 0xE04 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x981 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x9A5 SWAP2 SWAP1 PUSH2 0xE65 JUMP JUMPDEST PUSH2 0x9E4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9DB SWAP1 PUSH2 0xEEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA2C PUSH2 0xA27 PUSH2 0xA22 DUP5 PUSH2 0x9E7 JUMP JUMPDEST PUSH2 0xA07 JUMP JUMPDEST PUSH2 0x9E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA3E DUP3 PUSH2 0xA11 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA50 DUP3 PUSH2 0xA33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA60 DUP2 PUSH2 0xA45 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA7B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xA57 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA99 DUP2 PUSH2 0xA86 JUMP JUMPDEST DUP2 EQ PUSH2 0xAA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xAB6 DUP2 PUSH2 0xA90 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAD2 JUMPI PUSH2 0xAD1 PUSH2 0xA81 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xAE0 DUP5 DUP3 DUP6 ADD PUSH2 0xAA7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xAF2 DUP2 PUSH2 0xA86 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB0D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xAE9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB1E DUP3 PUSH2 0x9E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB2E DUP2 PUSH2 0xB13 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB49 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xB25 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB65 DUP2 PUSH2 0xB4F JUMP JUMPDEST DUP2 EQ PUSH2 0xB70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xB82 DUP2 PUSH2 0xB5C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB9E JUMPI PUSH2 0xB9D PUSH2 0xA81 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xBAC DUP5 DUP3 DUP6 ADD PUSH2 0xB73 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH2 0xC3B JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH2 0xC17 JUMPI PUSH2 0xC16 PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH2 0xC26 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH2 0xC34 DUP6 PUSH2 0xBE4 JUMP JUMPDEST SWAP5 POP PUSH2 0xBFB JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0xC54 JUMPI PUSH1 0x1 SWAP1 POP PUSH2 0xD10 JUMP JUMPDEST DUP2 PUSH2 0xC62 JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0xD10 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0xC78 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0xC82 JUMPI PUSH2 0xCB1 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xD10 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0xC94 JUMPI PUSH2 0xC93 PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH2 0xCAB JUMPI PUSH2 0xCAA PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST POP PUSH2 0xD10 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0xCE6 JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH2 0xCE1 JUMPI PUSH2 0xCE0 PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST PUSH2 0xD10 JUMP JUMPDEST PUSH2 0xCF3 DUP5 DUP5 DUP5 PUSH1 0x1 PUSH2 0xBF1 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH2 0xD0A JUMPI PUSH2 0xD09 PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD22 DUP3 PUSH2 0xA86 JUMP JUMPDEST SWAP2 POP PUSH2 0xD2D DUP4 PUSH2 0xB4F JUMP JUMPDEST SWAP3 POP PUSH2 0xD5A PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH2 0xC44 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD6D DUP3 PUSH2 0xA86 JUMP JUMPDEST SWAP2 POP PUSH2 0xD78 DUP4 PUSH2 0xA86 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0xD86 DUP2 PUSH2 0xA86 JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0xD9D JUMPI PUSH2 0xD9C PUSH2 0xBB5 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDDE DUP3 PUSH2 0xA86 JUMP JUMPDEST SWAP2 POP PUSH2 0xDE9 DUP4 PUSH2 0xA86 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0xDF9 JUMPI PUSH2 0xDF8 PUSH2 0xDA4 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xE19 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0xB25 JUMP JUMPDEST PUSH2 0xE26 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xAE9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE42 DUP2 PUSH2 0xE2D JUMP JUMPDEST DUP2 EQ PUSH2 0xE4D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xE5F DUP2 PUSH2 0xE39 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE7B JUMPI PUSH2 0xE7A PUSH2 0xA81 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xE89 DUP5 DUP3 DUP6 ADD PUSH2 0xE50 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x5472616E73666572206661696C65640000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xED9 PUSH1 0xF DUP4 PUSH2 0xE92 JUMP JUMPDEST SWAP2 POP PUSH2 0xEE4 DUP3 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF08 DUP2 PUSH2 0xECC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0xF24 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0xB25 JUMP JUMPDEST PUSH2 0xF31 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0xB25 JUMP JUMPDEST PUSH2 0xF3E PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0xAE9 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E6F742074686520636F6E7472616374206F776E657200000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF7C PUSH1 0x16 DUP4 PUSH2 0xE92 JUMP JUMPDEST SWAP2 POP PUSH2 0xF87 DUP3 PUSH2 0xF46 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFAB DUP2 PUSH2 0xF6F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0xFC1 DUP2 PUSH2 0xA90 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFDD JUMPI PUSH2 0xFDC PUSH2 0xA81 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xFEB DUP5 DUP3 DUP6 ADD PUSH2 0xFB2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 0x2D GT DIV 0x27 BASEFEE PUSH1 0xE0 0xBF 0xEA 0x5C KECCAK256 PUSH20 0xBC9BA05B223D400D6CFAE7E231CE5EFBAAD4A564 PUSH20 0x6F6C634300081500330000000000000000000000 ",
"sourceMap": "191:1472:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;801:213;;;:::i;:::-;;285:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1020:337;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;247:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;399:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;221:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1363:105;;;;;;;;;;;;;:::i;:::-;;1474:187;;;;;;;;;;;;;:::i;:::-;;801:213;850:19;918:7;;892:10;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;886:2;:27;;;;:::i;:::-;873:9;:41;;;;:::i;:::-;872:53;;;;:::i;:::-;850:75;;943:10;;;;;;;;;;;:19;;;963:10;975:11;943:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;935:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;840:174;801:213::o;285:32::-;;;;;;;;;;;;;:::o;1020:337::-;1082:19;1172:10;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1166:2;:27;;;;:::i;:::-;1153:9;;:41;;;;:::i;:::-;1126:10;;;;;;;;;;;:19;;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1120:2;:27;;;;:::i;:::-;1105:11;:43;;;;:::i;:::-;1104:91;;;;:::i;:::-;1082:113;;1205:10;;;;;;;;;;;:23;;;1229:10;1249:4;1256:11;1205:63;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;1286:10;;;;;;;;;;;:19;;;1306:10;1318:11;1286:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1278:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;1072:285;1020:337;:::o;247:32::-;;;;;;;;;;;;;:::o;399:29::-;;;;:::o;221:20::-;;;;;;;;;;;;:::o;324:42::-;;;;:::o;1363:105::-;745:5;;;;;;;;;;731:19;;:10;:19;;;723:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1423:5:::1;::::0;::::1;;;;;;;;1415:23;;:46;1439:21;1415:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1363:105::o:0;1474:187::-;745:5;;;;;;;;;;731:19;;:10;:19;;;723:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1528:15:::1;1546:10;;;;;;;;;;;:20;;;1575:4;1546:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1528:53;;1599:10;;;;;;;;;;;:19;;;1619:5;::::0;::::1;;;;;;;;1626:7;1599:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1591:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1518:143;1474:187::o:0;7:126:3:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:60::-;167:3;188:5;181:12;;139:60;;;:::o;205:142::-;255:9;288:53;306:34;315:24;333:5;315:24;:::i;:::-;306:34;:::i;:::-;288:53;:::i;:::-;275:66;;205:142;;;:::o;353:126::-;403:9;436:37;467:5;436:37;:::i;:::-;423:50;;353:126;;;:::o;485:148::-;557:9;590:37;621:5;590:37;:::i;:::-;577:50;;485:148;;;:::o;639:175::-;748:59;801:5;748:59;:::i;:::-;743:3;736:72;639:175;;:::o;820:266::-;935:4;973:2;962:9;958:18;950:26;;986:93;1076:1;1065:9;1061:17;1052:6;986:93;:::i;:::-;820:266;;;;:::o;1173:117::-;1282:1;1279;1272:12;1419:77;1456:7;1485:5;1474:16;;1419:77;;;:::o;1502:122::-;1575:24;1593:5;1575:24;:::i;:::-;1568:5;1565:35;1555:63;;1614:1;1611;1604:12;1555:63;1502:122;:::o;1630:139::-;1676:5;1714:6;1701:20;1692:29;;1730:33;1757:5;1730:33;:::i;:::-;1630:139;;;;:::o;1775:329::-;1834:6;1883:2;1871:9;1862:7;1858:23;1854:32;1851:119;;;1889:79;;:::i;:::-;1851:119;2009:1;2034:53;2079:7;2070:6;2059:9;2055:22;2034:53;:::i;:::-;2024:63;;1980:117;1775:329;;;;:::o;2110:118::-;2197:24;2215:5;2197:24;:::i;:::-;2192:3;2185:37;2110:118;;:::o;2234:222::-;2327:4;2365:2;2354:9;2350:18;2342:26;;2378:71;2446:1;2435:9;2431:17;2422:6;2378:71;:::i;:::-;2234:222;;;;:::o;2462:96::-;2499:7;2528:24;2546:5;2528:24;:::i;:::-;2517:35;;2462:96;;;:::o;2564:118::-;2651:24;2669:5;2651:24;:::i;:::-;2646:3;2639:37;2564:118;;:::o;2688:222::-;2781:4;2819:2;2808:9;2804:18;2796:26;;2832:71;2900:1;2889:9;2885:17;2876:6;2832:71;:::i;:::-;2688:222;;;;:::o;2916:86::-;2951:7;2991:4;2984:5;2980:16;2969:27;;2916:86;;;:::o;3008:118::-;3079:22;3095:5;3079:22;:::i;:::-;3072:5;3069:33;3059:61;;3116:1;3113;3106:12;3059:61;3008:118;:::o;3132:139::-;3187:5;3218:6;3212:13;3203:22;;3234:31;3259:5;3234:31;:::i;:::-;3132:139;;;;:::o;3277:347::-;3345:6;3394:2;3382:9;3373:7;3369:23;3365:32;3362:119;;;3400:79;;:::i;:::-;3362:119;3520:1;3545:62;3599:7;3590:6;3579:9;3575:22;3545:62;:::i;:::-;3535:72;;3491:126;3277:347;;;;:::o;3630:180::-;3678:77;3675:1;3668:88;3775:4;3772:1;3765:15;3799:4;3796:1;3789:15;3816:102;3858:8;3905:5;3902:1;3898:13;3877:34;;3816:102;;;:::o;3924:848::-;3985:5;3992:4;4016:6;4007:15;;4040:5;4031:14;;4054:712;4075:1;4065:8;4062:15;4054:712;;;4170:4;4165:3;4161:14;4155:4;4152:24;4149:50;;;4179:18;;:::i;:::-;4149:50;4229:1;4219:8;4215:16;4212:451;;;4644:4;4637:5;4633:16;4624:25;;4212:451;4694:4;4688;4684:15;4676:23;;4724:32;4747:8;4724:32;:::i;:::-;4712:44;;4054:712;;;3924:848;;;;;;;:::o;4778:1073::-;4832:5;5023:8;5013:40;;5044:1;5035:10;;5046:5;;5013:40;5072:4;5062:36;;5089:1;5080:10;;5091:5;;5062:36;5158:4;5206:1;5201:27;;;;5242:1;5237:191;;;;5151:277;;5201:27;5219:1;5210:10;;5221:5;;;5237:191;5282:3;5272:8;5269:17;5266:43;;;5289:18;;:::i;:::-;5266:43;5338:8;5335:1;5331:16;5322:25;;5373:3;5366:5;5363:14;5360:40;;;5380:18;;:::i;:::-;5360:40;5413:5;;;5151:277;;5537:2;5527:8;5524:16;5518:3;5512:4;5509:13;5505:36;5487:2;5477:8;5474:16;5469:2;5463:4;5460:12;5456:35;5440:111;5437:246;;;5593:8;5587:4;5583:19;5574:28;;5628:3;5621:5;5618:14;5615:40;;;5635:18;;:::i;:::-;5615:40;5668:5;;5437:246;5708:42;5746:3;5736:8;5730:4;5727:1;5708:42;:::i;:::-;5693:57;;;;5782:4;5777:3;5773:14;5766:5;5763:25;5760:51;;;5791:18;;:::i;:::-;5760:51;5840:4;5833:5;5829:16;5820:25;;4778:1073;;;;;;:::o;5857:281::-;5915:5;5939:23;5957:4;5939:23;:::i;:::-;5931:31;;5983:25;5999:8;5983:25;:::i;:::-;5971:37;;6027:104;6064:66;6054:8;6048:4;6027:104;:::i;:::-;6018:113;;5857:281;;;;:::o;6144:410::-;6184:7;6207:20;6225:1;6207:20;:::i;:::-;6202:25;;6241:20;6259:1;6241:20;:::i;:::-;6236:25;;6296:1;6293;6289:9;6318:30;6336:11;6318:30;:::i;:::-;6307:41;;6497:1;6488:7;6484:15;6481:1;6478:22;6458:1;6451:9;6431:83;6408:139;;6527:18;;:::i;:::-;6408:139;6192:362;6144:410;;;;:::o;6560:180::-;6608:77;6605:1;6598:88;6705:4;6702:1;6695:15;6729:4;6726:1;6719:15;6746:185;6786:1;6803:20;6821:1;6803:20;:::i;:::-;6798:25;;6837:20;6855:1;6837:20;:::i;:::-;6832:25;;6876:1;6866:35;;6881:18;;:::i;:::-;6866:35;6923:1;6920;6916:9;6911:14;;6746:185;;;;:::o;6937:332::-;7058:4;7096:2;7085:9;7081:18;7073:26;;7109:71;7177:1;7166:9;7162:17;7153:6;7109:71;:::i;:::-;7190:72;7258:2;7247:9;7243:18;7234:6;7190:72;:::i;:::-;6937:332;;;;;:::o;7275:90::-;7309:7;7352:5;7345:13;7338:21;7327:32;;7275:90;;;:::o;7371:116::-;7441:21;7456:5;7441:21;:::i;:::-;7434:5;7431:32;7421:60;;7477:1;7474;7467:12;7421:60;7371:116;:::o;7493:137::-;7547:5;7578:6;7572:13;7563:22;;7594:30;7618:5;7594:30;:::i;:::-;7493:137;;;;:::o;7636:345::-;7703:6;7752:2;7740:9;7731:7;7727:23;7723:32;7720:119;;;7758:79;;:::i;:::-;7720:119;7878:1;7903:61;7956:7;7947:6;7936:9;7932:22;7903:61;:::i;:::-;7893:71;;7849:125;7636:345;;;;:::o;7987:169::-;8071:11;8105:6;8100:3;8093:19;8145:4;8140:3;8136:14;8121:29;;7987:169;;;;:::o;8162:165::-;8302:17;8298:1;8290:6;8286:14;8279:41;8162:165;:::o;8333:366::-;8475:3;8496:67;8560:2;8555:3;8496:67;:::i;:::-;8489:74;;8572:93;8661:3;8572:93;:::i;:::-;8690:2;8685:3;8681:12;8674:19;;8333:366;;;:::o;8705:419::-;8871:4;8909:2;8898:9;8894:18;8886:26;;8958:9;8952:4;8948:20;8944:1;8933:9;8929:17;8922:47;8986:131;9112:4;8986:131;:::i;:::-;8978:139;;8705:419;;;:::o;9130:442::-;9279:4;9317:2;9306:9;9302:18;9294:26;;9330:71;9398:1;9387:9;9383:17;9374:6;9330:71;:::i;:::-;9411:72;9479:2;9468:9;9464:18;9455:6;9411:72;:::i;:::-;9493;9561:2;9550:9;9546:18;9537:6;9493:72;:::i;:::-;9130:442;;;;;;:::o;9578:172::-;9718:24;9714:1;9706:6;9702:14;9695:48;9578:172;:::o;9756:366::-;9898:3;9919:67;9983:2;9978:3;9919:67;:::i;:::-;9912:74;;9995:93;10084:3;9995:93;:::i;:::-;10113:2;10108:3;10104:12;10097:19;;9756:366;;;:::o;10128:419::-;10294:4;10332:2;10321:9;10317:18;10309:26;;10381:9;10375:4;10371:20;10367:1;10356:9;10352:17;10345:47;10409:131;10535:4;10409:131;:::i;:::-;10401:139;;10128:419;;;:::o;10553:143::-;10610:5;10641:6;10635:13;10626:22;;10657:33;10684:5;10657:33;:::i;:::-;10553:143;;;;:::o;10702:351::-;10772:6;10821:2;10809:9;10800:7;10796:23;10792:32;10789:119;;;10827:79;;:::i;:::-;10789:119;10947:1;10972:64;11028:7;11019:6;11008:9;11004:22;10972:64;:::i;:::-;10962:74;;10918:128;10702:351;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "827600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"basedToken()": "infinite",
"buyWithETH()": "infinite",
"buyWithUSDbC(uint256)": "infinite",
"ethRate()": "2473",
"owner()": "2533",
"usdbcRate()": "2429",
"usdbcToken()": "infinite",
"withdrawETH()": "infinite",
"withdrawUSDbC()": "infinite"
}
},
"methodIdentifiers": {
"basedToken()": "2ab370a4",
"buyWithETH()": "150d283d",
"buyWithUSDbC(uint256)": "24dd0b46",
"ethRate()": "d2d93f90",
"owner()": "8da5cb5b",
"usdbcRate()": "594351c5",
"usdbcToken()": "1daa0a26",
"withdrawETH()": "e086e5ec",
"withdrawUSDbC()": "eedd8624"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_basedToken",
"type": "address"
},
{
"internalType": "address",
"name": "_usdbcToken",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "basedToken",
"outputs": [
{
"internalType": "contract IERC20Metadata",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "buyWithETH",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "usdbcAmount",
"type": "uint256"
}
],
"name": "buyWithUSDbC",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "ethRate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "usdbcRate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "usdbcToken",
"outputs": [
{
"internalType": "contract IERC20Metadata",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "withdrawETH",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "withdrawUSDbC",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.21+commit.d9974bed"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_basedToken",
"type": "address"
},
{
"internalType": "address",
"name": "_usdbcToken",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "basedToken",
"outputs": [
{
"internalType": "contract IERC20Metadata",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "buyWithETH",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "usdbcAmount",
"type": "uint256"
}
],
"name": "buyWithUSDbC",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "ethRate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "usdbcRate",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "usdbcToken",
"outputs": [
{
"internalType": "contract IERC20Metadata",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "withdrawETH",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "withdrawUSDbC",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/BasedTokenSale.sol": "BasedTokenSale"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305",
"license": "MIT",
"urls": [
"bzz-raw://bd39944e8fc06be6dbe2dd1d8449b5336e23c6a7ba3e8e9ae5ae0f37f35283f5",
"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
"contracts/BasedTokenSale.sol": {
"keccak256": "0x7ca588b31bfa30e0f71ebd06c9eb71609376bd5213b4759d344ea740437d4cef",
"license": "MIT",
"urls": [
"bzz-raw://4b79fc42c2f1ef3109f8860ceff031b5c1f31ebd93f33a5c02adc8096c9217f2",
"dweb:/ipfs/QmTqoPn9r2DwgiYeuArPepLuuJCDfAfP9FmM9a6GDKh2pC"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract BasedToken is ERC20 {
constructor() ERC20("BASED", "BASED") {
_mint(msg.sender, 10000000000 * 10**18);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
contract BasedTokenSale {
address public owner;
IERC20Metadata public basedToken;
IERC20Metadata public usdbcToken;
uint256 public ethRate = 0.000000038 ether; // Wei needed for 1 BASED
uint256 public usdbcRate = 70; // Smallest unit of USDbC needed for 1 BASED (0.00007 USDbC)
constructor(address _basedToken, address _usdbcToken) {
owner = msg.sender;
basedToken = IERC20Metadata(_basedToken);
usdbcToken = IERC20Metadata(_usdbcToken);
}
modifier onlyOwner() {
require(msg.sender == owner, "Not the contract owner");
_;
}
function buyWithETH() external payable {
uint256 basedAmount = (msg.value * (10 ** basedToken.decimals())) / ethRate;
require(basedToken.transfer(msg.sender, basedAmount), "Transfer failed");
}
function buyWithUSDbC(uint256 usdbcAmount) external {
uint256 basedAmount = (usdbcAmount * (10 ** basedToken.decimals())) / (usdbcRate * (10 ** usdbcToken.decimals()));
usdbcToken.transferFrom(msg.sender, address(this), usdbcAmount);
require(basedToken.transfer(msg.sender, basedAmount), "Transfer failed");
}
function withdrawETH() external onlyOwner {
payable(owner).transfer(address(this).balance);
}
function withdrawUSDbC() external onlyOwner {
uint256 balance = usdbcToken.balanceOf(address(this));
require(usdbcToken.transfer(owner, balance), "Transfer failed");
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract USDbCToken is ERC20 {
constructor() ERC20("USD Base Coin", "USDbC") {
_mint(msg.sender, 10000000000 * 10**6);
}
function decimals() public view virtual override returns (uint8) {
return 6;
}
}
View raw

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

View raw

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

View raw

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

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"@_734": {
"entryPoint": null,
"id": 734,
"parameterSlots": 0,
"returnSlots": 0
},
"@_afterTokenTransfer_585": {
"entryPoint": 565,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 560,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_403": {
"entryPoint": 195,
"id": 403,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1493,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1672,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1532,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1689,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 728,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 570,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1435,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1613,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1049,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 864,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1010,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 884,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1204,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 749,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 675,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1174,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 874,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1142,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1566,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 628,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 581,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 924,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 765,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1129,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 982,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 1452,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 778,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 934,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 977,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:7125:5",
"nodeType": "YulBlock",
"src": "0:7125:5",
"statements": [
{
"body": {
"nativeSrc": "66:40:5",
"nodeType": "YulBlock",
"src": "66:40:5",
"statements": [
{
"nativeSrc": "77:22:5",
"nodeType": "YulAssignment",
"src": "77:22:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:5",
"nodeType": "YulIdentifier",
"src": "93:5:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:5",
"nodeType": "YulIdentifier",
"src": "87:5:5"
},
"nativeSrc": "87:12:5",
"nodeType": "YulFunctionCall",
"src": "87:12:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:5",
"nodeType": "YulIdentifier",
"src": "77:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:5",
"nodeType": "YulTypedName",
"src": "49:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:5",
"nodeType": "YulTypedName",
"src": "59:6:5",
"type": ""
}
],
"src": "7:99:5"
},
{
"body": {
"nativeSrc": "140:152:5",
"nodeType": "YulBlock",
"src": "140:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "157:1:5",
"nodeType": "YulLiteral",
"src": "157:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "160:77:5",
"nodeType": "YulLiteral",
"src": "160:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "150:6:5",
"nodeType": "YulIdentifier",
"src": "150:6:5"
},
"nativeSrc": "150:88:5",
"nodeType": "YulFunctionCall",
"src": "150:88:5"
},
"nativeSrc": "150:88:5",
"nodeType": "YulExpressionStatement",
"src": "150:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "254:1:5",
"nodeType": "YulLiteral",
"src": "254:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "257:4:5",
"nodeType": "YulLiteral",
"src": "257:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "247:6:5",
"nodeType": "YulIdentifier",
"src": "247:6:5"
},
"nativeSrc": "247:15:5",
"nodeType": "YulFunctionCall",
"src": "247:15:5"
},
"nativeSrc": "247:15:5",
"nodeType": "YulExpressionStatement",
"src": "247:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "278:1:5",
"nodeType": "YulLiteral",
"src": "278:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "281:4:5",
"nodeType": "YulLiteral",
"src": "281:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "271:6:5",
"nodeType": "YulIdentifier",
"src": "271:6:5"
},
"nativeSrc": "271:15:5",
"nodeType": "YulFunctionCall",
"src": "271:15:5"
},
"nativeSrc": "271:15:5",
"nodeType": "YulExpressionStatement",
"src": "271:15:5"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "112:180:5",
"nodeType": "YulFunctionDefinition",
"src": "112:180:5"
},
{
"body": {
"nativeSrc": "326:152:5",
"nodeType": "YulBlock",
"src": "326:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "343:1:5",
"nodeType": "YulLiteral",
"src": "343:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "346:77:5",
"nodeType": "YulLiteral",
"src": "346:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "336:6:5",
"nodeType": "YulIdentifier",
"src": "336:6:5"
},
"nativeSrc": "336:88:5",
"nodeType": "YulFunctionCall",
"src": "336:88:5"
},
"nativeSrc": "336:88:5",
"nodeType": "YulExpressionStatement",
"src": "336:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "440:1:5",
"nodeType": "YulLiteral",
"src": "440:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "443:4:5",
"nodeType": "YulLiteral",
"src": "443:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "433:6:5",
"nodeType": "YulIdentifier",
"src": "433:6:5"
},
"nativeSrc": "433:15:5",
"nodeType": "YulFunctionCall",
"src": "433:15:5"
},
"nativeSrc": "433:15:5",
"nodeType": "YulExpressionStatement",
"src": "433:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "464:1:5",
"nodeType": "YulLiteral",
"src": "464:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "467:4:5",
"nodeType": "YulLiteral",
"src": "467:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "457:6:5",
"nodeType": "YulIdentifier",
"src": "457:6:5"
},
"nativeSrc": "457:15:5",
"nodeType": "YulFunctionCall",
"src": "457:15:5"
},
"nativeSrc": "457:15:5",
"nodeType": "YulExpressionStatement",
"src": "457:15:5"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "298:180:5",
"nodeType": "YulFunctionDefinition",
"src": "298:180:5"
},
{
"body": {
"nativeSrc": "535:269:5",
"nodeType": "YulBlock",
"src": "535:269:5",
"statements": [
{
"nativeSrc": "545:22:5",
"nodeType": "YulAssignment",
"src": "545:22:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "559:4:5",
"nodeType": "YulIdentifier",
"src": "559:4:5"
},
{
"kind": "number",
"nativeSrc": "565:1:5",
"nodeType": "YulLiteral",
"src": "565:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "555:3:5",
"nodeType": "YulIdentifier",
"src": "555:3:5"
},
"nativeSrc": "555:12:5",
"nodeType": "YulFunctionCall",
"src": "555:12:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "545:6:5",
"nodeType": "YulIdentifier",
"src": "545:6:5"
}
]
},
{
"nativeSrc": "576:38:5",
"nodeType": "YulVariableDeclaration",
"src": "576:38:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "606:4:5",
"nodeType": "YulIdentifier",
"src": "606:4:5"
},
{
"kind": "number",
"nativeSrc": "612:1:5",
"nodeType": "YulLiteral",
"src": "612:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "602:3:5",
"nodeType": "YulIdentifier",
"src": "602:3:5"
},
"nativeSrc": "602:12:5",
"nodeType": "YulFunctionCall",
"src": "602:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "580:18:5",
"nodeType": "YulTypedName",
"src": "580:18:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "653:51:5",
"nodeType": "YulBlock",
"src": "653:51:5",
"statements": [
{
"nativeSrc": "667:27:5",
"nodeType": "YulAssignment",
"src": "667:27:5",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "681:6:5",
"nodeType": "YulIdentifier",
"src": "681:6:5"
},
{
"kind": "number",
"nativeSrc": "689:4:5",
"nodeType": "YulLiteral",
"src": "689:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "677:3:5",
"nodeType": "YulIdentifier",
"src": "677:3:5"
},
"nativeSrc": "677:17:5",
"nodeType": "YulFunctionCall",
"src": "677:17:5"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "667:6:5",
"nodeType": "YulIdentifier",
"src": "667:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "633:18:5",
"nodeType": "YulIdentifier",
"src": "633:18:5"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "626:6:5",
"nodeType": "YulIdentifier",
"src": "626:6:5"
},
"nativeSrc": "626:26:5",
"nodeType": "YulFunctionCall",
"src": "626:26:5"
},
"nativeSrc": "623:81:5",
"nodeType": "YulIf",
"src": "623:81:5"
},
{
"body": {
"nativeSrc": "756:42:5",
"nodeType": "YulBlock",
"src": "756:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "770:16:5",
"nodeType": "YulIdentifier",
"src": "770:16:5"
},
"nativeSrc": "770:18:5",
"nodeType": "YulFunctionCall",
"src": "770:18:5"
},
"nativeSrc": "770:18:5",
"nodeType": "YulExpressionStatement",
"src": "770:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "720:18:5",
"nodeType": "YulIdentifier",
"src": "720:18:5"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "743:6:5",
"nodeType": "YulIdentifier",
"src": "743:6:5"
},
{
"kind": "number",
"nativeSrc": "751:2:5",
"nodeType": "YulLiteral",
"src": "751:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "740:2:5",
"nodeType": "YulIdentifier",
"src": "740:2:5"
},
"nativeSrc": "740:14:5",
"nodeType": "YulFunctionCall",
"src": "740:14:5"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "717:2:5",
"nodeType": "YulIdentifier",
"src": "717:2:5"
},
"nativeSrc": "717:38:5",
"nodeType": "YulFunctionCall",
"src": "717:38:5"
},
"nativeSrc": "714:84:5",
"nodeType": "YulIf",
"src": "714:84:5"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "484:320:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "519:4:5",
"nodeType": "YulTypedName",
"src": "519:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "528:6:5",
"nodeType": "YulTypedName",
"src": "528:6:5",
"type": ""
}
],
"src": "484:320:5"
},
{
"body": {
"nativeSrc": "864:87:5",
"nodeType": "YulBlock",
"src": "864:87:5",
"statements": [
{
"nativeSrc": "874:11:5",
"nodeType": "YulAssignment",
"src": "874:11:5",
"value": {
"name": "ptr",
"nativeSrc": "882:3:5",
"nodeType": "YulIdentifier",
"src": "882:3:5"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "874:4:5",
"nodeType": "YulIdentifier",
"src": "874:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "902:1:5",
"nodeType": "YulLiteral",
"src": "902:1:5",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "905:3:5",
"nodeType": "YulIdentifier",
"src": "905:3:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "895:6:5",
"nodeType": "YulIdentifier",
"src": "895:6:5"
},
"nativeSrc": "895:14:5",
"nodeType": "YulFunctionCall",
"src": "895:14:5"
},
"nativeSrc": "895:14:5",
"nodeType": "YulExpressionStatement",
"src": "895:14:5"
},
{
"nativeSrc": "918:26:5",
"nodeType": "YulAssignment",
"src": "918:26:5",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "936:1:5",
"nodeType": "YulLiteral",
"src": "936:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "939:4:5",
"nodeType": "YulLiteral",
"src": "939:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "926:9:5",
"nodeType": "YulIdentifier",
"src": "926:9:5"
},
"nativeSrc": "926:18:5",
"nodeType": "YulFunctionCall",
"src": "926:18:5"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "918:4:5",
"nodeType": "YulIdentifier",
"src": "918:4:5"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "810:141:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "851:3:5",
"nodeType": "YulTypedName",
"src": "851:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "859:4:5",
"nodeType": "YulTypedName",
"src": "859:4:5",
"type": ""
}
],
"src": "810:141:5"
},
{
"body": {
"nativeSrc": "1001:49:5",
"nodeType": "YulBlock",
"src": "1001:49:5",
"statements": [
{
"nativeSrc": "1011:33:5",
"nodeType": "YulAssignment",
"src": "1011:33:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1029:5:5",
"nodeType": "YulIdentifier",
"src": "1029:5:5"
},
{
"kind": "number",
"nativeSrc": "1036:2:5",
"nodeType": "YulLiteral",
"src": "1036:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1025:3:5",
"nodeType": "YulIdentifier",
"src": "1025:3:5"
},
"nativeSrc": "1025:14:5",
"nodeType": "YulFunctionCall",
"src": "1025:14:5"
},
{
"kind": "number",
"nativeSrc": "1041:2:5",
"nodeType": "YulLiteral",
"src": "1041:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "1021:3:5",
"nodeType": "YulIdentifier",
"src": "1021:3:5"
},
"nativeSrc": "1021:23:5",
"nodeType": "YulFunctionCall",
"src": "1021:23:5"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1011:6:5",
"nodeType": "YulIdentifier",
"src": "1011:6:5"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "957:93:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "984:5:5",
"nodeType": "YulTypedName",
"src": "984:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "994:6:5",
"nodeType": "YulTypedName",
"src": "994:6:5",
"type": ""
}
],
"src": "957:93:5"
},
{
"body": {
"nativeSrc": "1109:54:5",
"nodeType": "YulBlock",
"src": "1109:54:5",
"statements": [
{
"nativeSrc": "1119:37:5",
"nodeType": "YulAssignment",
"src": "1119:37:5",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "1144:4:5",
"nodeType": "YulIdentifier",
"src": "1144:4:5"
},
{
"name": "value",
"nativeSrc": "1150:5:5",
"nodeType": "YulIdentifier",
"src": "1150:5:5"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "1140:3:5",
"nodeType": "YulIdentifier",
"src": "1140:3:5"
},
"nativeSrc": "1140:16:5",
"nodeType": "YulFunctionCall",
"src": "1140:16:5"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "1119:8:5",
"nodeType": "YulIdentifier",
"src": "1119:8:5"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "1056:107:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "1084:4:5",
"nodeType": "YulTypedName",
"src": "1084:4:5",
"type": ""
},
{
"name": "value",
"nativeSrc": "1090:5:5",
"nodeType": "YulTypedName",
"src": "1090:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "1100:8:5",
"nodeType": "YulTypedName",
"src": "1100:8:5",
"type": ""
}
],
"src": "1056:107:5"
},
{
"body": {
"nativeSrc": "1245:317:5",
"nodeType": "YulBlock",
"src": "1245:317:5",
"statements": [
{
"nativeSrc": "1255:35:5",
"nodeType": "YulVariableDeclaration",
"src": "1255:35:5",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "1276:10:5",
"nodeType": "YulIdentifier",
"src": "1276:10:5"
},
{
"kind": "number",
"nativeSrc": "1288:1:5",
"nodeType": "YulLiteral",
"src": "1288:1:5",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "1272:3:5",
"nodeType": "YulIdentifier",
"src": "1272:3:5"
},
"nativeSrc": "1272:18:5",
"nodeType": "YulFunctionCall",
"src": "1272:18:5"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "1259:9:5",
"nodeType": "YulTypedName",
"src": "1259:9:5",
"type": ""
}
]
},
{
"nativeSrc": "1299:109:5",
"nodeType": "YulVariableDeclaration",
"src": "1299:109:5",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1330:9:5",
"nodeType": "YulIdentifier",
"src": "1330:9:5"
},
{
"kind": "number",
"nativeSrc": "1341:66:5",
"nodeType": "YulLiteral",
"src": "1341:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1311:18:5",
"nodeType": "YulIdentifier",
"src": "1311:18:5"
},
"nativeSrc": "1311:97:5",
"nodeType": "YulFunctionCall",
"src": "1311:97:5"
},
"variables": [
{
"name": "mask",
"nativeSrc": "1303:4:5",
"nodeType": "YulTypedName",
"src": "1303:4:5",
"type": ""
}
]
},
{
"nativeSrc": "1417:51:5",
"nodeType": "YulAssignment",
"src": "1417:51:5",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1448:9:5",
"nodeType": "YulIdentifier",
"src": "1448:9:5"
},
{
"name": "toInsert",
"nativeSrc": "1459:8:5",
"nodeType": "YulIdentifier",
"src": "1459:8:5"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1429:18:5",
"nodeType": "YulIdentifier",
"src": "1429:18:5"
},
"nativeSrc": "1429:39:5",
"nodeType": "YulFunctionCall",
"src": "1429:39:5"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "1417:8:5",
"nodeType": "YulIdentifier",
"src": "1417:8:5"
}
]
},
{
"nativeSrc": "1477:30:5",
"nodeType": "YulAssignment",
"src": "1477:30:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1490:5:5",
"nodeType": "YulIdentifier",
"src": "1490:5:5"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "1501:4:5",
"nodeType": "YulIdentifier",
"src": "1501:4:5"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1497:3:5",
"nodeType": "YulIdentifier",
"src": "1497:3:5"
},
"nativeSrc": "1497:9:5",
"nodeType": "YulFunctionCall",
"src": "1497:9:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1486:3:5",
"nodeType": "YulIdentifier",
"src": "1486:3:5"
},
"nativeSrc": "1486:21:5",
"nodeType": "YulFunctionCall",
"src": "1486:21:5"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1477:5:5",
"nodeType": "YulIdentifier",
"src": "1477:5:5"
}
]
},
{
"nativeSrc": "1516:40:5",
"nodeType": "YulAssignment",
"src": "1516:40:5",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1529:5:5",
"nodeType": "YulIdentifier",
"src": "1529:5:5"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "1540:8:5",
"nodeType": "YulIdentifier",
"src": "1540:8:5"
},
{
"name": "mask",
"nativeSrc": "1550:4:5",
"nodeType": "YulIdentifier",
"src": "1550:4:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1536:3:5",
"nodeType": "YulIdentifier",
"src": "1536:3:5"
},
"nativeSrc": "1536:19:5",
"nodeType": "YulFunctionCall",
"src": "1536:19:5"
}
],
"functionName": {
"name": "or",
"nativeSrc": "1526:2:5",
"nodeType": "YulIdentifier",
"src": "1526:2:5"
},
"nativeSrc": "1526:30:5",
"nodeType": "YulFunctionCall",
"src": "1526:30:5"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1516:6:5",
"nodeType": "YulIdentifier",
"src": "1516:6:5"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "1169:393:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1206:5:5",
"nodeType": "YulTypedName",
"src": "1206:5:5",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "1213:10:5",
"nodeType": "YulTypedName",
"src": "1213:10:5",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "1225:8:5",
"nodeType": "YulTypedName",
"src": "1225:8:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1238:6:5",
"nodeType": "YulTypedName",
"src": "1238:6:5",
"type": ""
}
],
"src": "1169:393:5"
},
{
"body": {
"nativeSrc": "1613:32:5",
"nodeType": "YulBlock",
"src": "1613:32:5",
"statements": [
{
"nativeSrc": "1623:16:5",
"nodeType": "YulAssignment",
"src": "1623:16:5",
"value": {
"name": "value",
"nativeSrc": "1634:5:5",
"nodeType": "YulIdentifier",
"src": "1634:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1623:7:5",
"nodeType": "YulIdentifier",
"src": "1623:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "1568:77:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1595:5:5",
"nodeType": "YulTypedName",
"src": "1595:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1605:7:5",
"nodeType": "YulTypedName",
"src": "1605:7:5",
"type": ""
}
],
"src": "1568:77:5"
},
{
"body": {
"nativeSrc": "1683:28:5",
"nodeType": "YulBlock",
"src": "1683:28:5",
"statements": [
{
"nativeSrc": "1693:12:5",
"nodeType": "YulAssignment",
"src": "1693:12:5",
"value": {
"name": "value",
"nativeSrc": "1700:5:5",
"nodeType": "YulIdentifier",
"src": "1700:5:5"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1693:3:5",
"nodeType": "YulIdentifier",
"src": "1693:3:5"
}
]
}
]
},
"name": "identity",
"nativeSrc": "1651:60:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1669:5:5",
"nodeType": "YulTypedName",
"src": "1669:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1679:3:5",
"nodeType": "YulTypedName",
"src": "1679:3:5",
"type": ""
}
],
"src": "1651:60:5"
},
{
"body": {
"nativeSrc": "1777:82:5",
"nodeType": "YulBlock",
"src": "1777:82:5",
"statements": [
{
"nativeSrc": "1787:66:5",
"nodeType": "YulAssignment",
"src": "1787:66:5",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1845:5:5",
"nodeType": "YulIdentifier",
"src": "1845:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1827:17:5",
"nodeType": "YulIdentifier",
"src": "1827:17:5"
},
"nativeSrc": "1827:24:5",
"nodeType": "YulFunctionCall",
"src": "1827:24:5"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "1818:8:5",
"nodeType": "YulIdentifier",
"src": "1818:8:5"
},
"nativeSrc": "1818:34:5",
"nodeType": "YulFunctionCall",
"src": "1818:34:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1800:17:5",
"nodeType": "YulIdentifier",
"src": "1800:17:5"
},
"nativeSrc": "1800:53:5",
"nodeType": "YulFunctionCall",
"src": "1800:53:5"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "1787:9:5",
"nodeType": "YulIdentifier",
"src": "1787:9:5"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "1717:142:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1757:5:5",
"nodeType": "YulTypedName",
"src": "1757:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "1767:9:5",
"nodeType": "YulTypedName",
"src": "1767:9:5",
"type": ""
}
],
"src": "1717:142:5"
},
{
"body": {
"nativeSrc": "1912:28:5",
"nodeType": "YulBlock",
"src": "1912:28:5",
"statements": [
{
"nativeSrc": "1922:12:5",
"nodeType": "YulAssignment",
"src": "1922:12:5",
"value": {
"name": "value",
"nativeSrc": "1929:5:5",
"nodeType": "YulIdentifier",
"src": "1929:5:5"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1922:3:5",
"nodeType": "YulIdentifier",
"src": "1922:3:5"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "1865:75:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1898:5:5",
"nodeType": "YulTypedName",
"src": "1898:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1908:3:5",
"nodeType": "YulTypedName",
"src": "1908:3:5",
"type": ""
}
],
"src": "1865:75:5"
},
{
"body": {
"nativeSrc": "2022:193:5",
"nodeType": "YulBlock",
"src": "2022:193:5",
"statements": [
{
"nativeSrc": "2032:63:5",
"nodeType": "YulVariableDeclaration",
"src": "2032:63:5",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "2087:7:5",
"nodeType": "YulIdentifier",
"src": "2087:7:5"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "2056:30:5",
"nodeType": "YulIdentifier",
"src": "2056:30:5"
},
"nativeSrc": "2056:39:5",
"nodeType": "YulFunctionCall",
"src": "2056:39:5"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "2036:16:5",
"nodeType": "YulTypedName",
"src": "2036:16:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2111:4:5",
"nodeType": "YulIdentifier",
"src": "2111:4:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "2151:4:5",
"nodeType": "YulIdentifier",
"src": "2151:4:5"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "2145:5:5",
"nodeType": "YulIdentifier",
"src": "2145:5:5"
},
"nativeSrc": "2145:11:5",
"nodeType": "YulFunctionCall",
"src": "2145:11:5"
},
{
"name": "offset",
"nativeSrc": "2158:6:5",
"nodeType": "YulIdentifier",
"src": "2158:6:5"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "2190:16:5",
"nodeType": "YulIdentifier",
"src": "2190:16:5"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "2166:23:5",
"nodeType": "YulIdentifier",
"src": "2166:23:5"
},
"nativeSrc": "2166:41:5",
"nodeType": "YulFunctionCall",
"src": "2166:41:5"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "2117:27:5",
"nodeType": "YulIdentifier",
"src": "2117:27:5"
},
"nativeSrc": "2117:91:5",
"nodeType": "YulFunctionCall",
"src": "2117:91:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "2104:6:5",
"nodeType": "YulIdentifier",
"src": "2104:6:5"
},
"nativeSrc": "2104:105:5",
"nodeType": "YulFunctionCall",
"src": "2104:105:5"
},
"nativeSrc": "2104:105:5",
"nodeType": "YulExpressionStatement",
"src": "2104:105:5"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "1946:269:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "1999:4:5",
"nodeType": "YulTypedName",
"src": "1999:4:5",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2005:6:5",
"nodeType": "YulTypedName",
"src": "2005:6:5",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "2013:7:5",
"nodeType": "YulTypedName",
"src": "2013:7:5",
"type": ""
}
],
"src": "1946:269:5"
},
{
"body": {
"nativeSrc": "2270:24:5",
"nodeType": "YulBlock",
"src": "2270:24:5",
"statements": [
{
"nativeSrc": "2280:8:5",
"nodeType": "YulAssignment",
"src": "2280:8:5",
"value": {
"kind": "number",
"nativeSrc": "2287:1:5",
"nodeType": "YulLiteral",
"src": "2287:1:5",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "2280:3:5",
"nodeType": "YulIdentifier",
"src": "2280:3:5"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2221:73:5",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "2266:3:5",
"nodeType": "YulTypedName",
"src": "2266:3:5",
"type": ""
}
],
"src": "2221:73:5"
},
{
"body": {
"nativeSrc": "2353:136:5",
"nodeType": "YulBlock",
"src": "2353:136:5",
"statements": [
{
"nativeSrc": "2363:46:5",
"nodeType": "YulVariableDeclaration",
"src": "2363:46:5",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2377:30:5",
"nodeType": "YulIdentifier",
"src": "2377:30:5"
},
"nativeSrc": "2377:32:5",
"nodeType": "YulFunctionCall",
"src": "2377:32:5"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "2367:6:5",
"nodeType": "YulTypedName",
"src": "2367:6:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2462:4:5",
"nodeType": "YulIdentifier",
"src": "2462:4:5"
},
{
"name": "offset",
"nativeSrc": "2468:6:5",
"nodeType": "YulIdentifier",
"src": "2468:6:5"
},
{
"name": "zero_0",
"nativeSrc": "2476:6:5",
"nodeType": "YulIdentifier",
"src": "2476:6:5"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "2418:43:5",
"nodeType": "YulIdentifier",
"src": "2418:43:5"
},
"nativeSrc": "2418:65:5",
"nodeType": "YulFunctionCall",
"src": "2418:65:5"
},
"nativeSrc": "2418:65:5",
"nodeType": "YulExpressionStatement",
"src": "2418:65:5"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2300:189:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "2339:4:5",
"nodeType": "YulTypedName",
"src": "2339:4:5",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2345:6:5",
"nodeType": "YulTypedName",
"src": "2345:6:5",
"type": ""
}
],
"src": "2300:189:5"
},
{
"body": {
"nativeSrc": "2545:136:5",
"nodeType": "YulBlock",
"src": "2545:136:5",
"statements": [
{
"body": {
"nativeSrc": "2612:63:5",
"nodeType": "YulBlock",
"src": "2612:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "2656:5:5",
"nodeType": "YulIdentifier",
"src": "2656:5:5"
},
{
"kind": "number",
"nativeSrc": "2663:1:5",
"nodeType": "YulLiteral",
"src": "2663:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2626:29:5",
"nodeType": "YulIdentifier",
"src": "2626:29:5"
},
"nativeSrc": "2626:39:5",
"nodeType": "YulFunctionCall",
"src": "2626:39:5"
},
"nativeSrc": "2626:39:5",
"nodeType": "YulExpressionStatement",
"src": "2626:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "2565:5:5",
"nodeType": "YulIdentifier",
"src": "2565:5:5"
},
{
"name": "end",
"nativeSrc": "2572:3:5",
"nodeType": "YulIdentifier",
"src": "2572:3:5"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2562:2:5",
"nodeType": "YulIdentifier",
"src": "2562:2:5"
},
"nativeSrc": "2562:14:5",
"nodeType": "YulFunctionCall",
"src": "2562:14:5"
},
"nativeSrc": "2555:120:5",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "2577:26:5",
"nodeType": "YulBlock",
"src": "2577:26:5",
"statements": [
{
"nativeSrc": "2579:22:5",
"nodeType": "YulAssignment",
"src": "2579:22:5",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "2592:5:5",
"nodeType": "YulIdentifier",
"src": "2592:5:5"
},
{
"kind": "number",
"nativeSrc": "2599:1:5",
"nodeType": "YulLiteral",
"src": "2599:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2588:3:5",
"nodeType": "YulIdentifier",
"src": "2588:3:5"
},
"nativeSrc": "2588:13:5",
"nodeType": "YulFunctionCall",
"src": "2588:13:5"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "2579:5:5",
"nodeType": "YulIdentifier",
"src": "2579:5:5"
}
]
}
]
},
"pre": {
"nativeSrc": "2559:2:5",
"nodeType": "YulBlock",
"src": "2559:2:5",
"statements": []
},
"src": "2555:120:5"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "2495:186:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "2533:5:5",
"nodeType": "YulTypedName",
"src": "2533:5:5",
"type": ""
},
{
"name": "end",
"nativeSrc": "2540:3:5",
"nodeType": "YulTypedName",
"src": "2540:3:5",
"type": ""
}
],
"src": "2495:186:5"
},
{
"body": {
"nativeSrc": "2766:464:5",
"nodeType": "YulBlock",
"src": "2766:464:5",
"statements": [
{
"body": {
"nativeSrc": "2792:431:5",
"nodeType": "YulBlock",
"src": "2792:431:5",
"statements": [
{
"nativeSrc": "2806:54:5",
"nodeType": "YulVariableDeclaration",
"src": "2806:54:5",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "2854:5:5",
"nodeType": "YulIdentifier",
"src": "2854:5:5"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "2822:31:5",
"nodeType": "YulIdentifier",
"src": "2822:31:5"
},
"nativeSrc": "2822:38:5",
"nodeType": "YulFunctionCall",
"src": "2822:38:5"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "2810:8:5",
"nodeType": "YulTypedName",
"src": "2810:8:5",
"type": ""
}
]
},
{
"nativeSrc": "2873:63:5",
"nodeType": "YulVariableDeclaration",
"src": "2873:63:5",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "2896:8:5",
"nodeType": "YulIdentifier",
"src": "2896:8:5"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "2924:10:5",
"nodeType": "YulIdentifier",
"src": "2924:10:5"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "2906:17:5",
"nodeType": "YulIdentifier",
"src": "2906:17:5"
},
"nativeSrc": "2906:29:5",
"nodeType": "YulFunctionCall",
"src": "2906:29:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2892:3:5",
"nodeType": "YulIdentifier",
"src": "2892:3:5"
},
"nativeSrc": "2892:44:5",
"nodeType": "YulFunctionCall",
"src": "2892:44:5"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "2877:11:5",
"nodeType": "YulTypedName",
"src": "2877:11:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3093:27:5",
"nodeType": "YulBlock",
"src": "3093:27:5",
"statements": [
{
"nativeSrc": "3095:23:5",
"nodeType": "YulAssignment",
"src": "3095:23:5",
"value": {
"name": "dataArea",
"nativeSrc": "3110:8:5",
"nodeType": "YulIdentifier",
"src": "3110:8:5"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "3095:11:5",
"nodeType": "YulIdentifier",
"src": "3095:11:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "3077:10:5",
"nodeType": "YulIdentifier",
"src": "3077:10:5"
},
{
"kind": "number",
"nativeSrc": "3089:2:5",
"nodeType": "YulLiteral",
"src": "3089:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "3074:2:5",
"nodeType": "YulIdentifier",
"src": "3074:2:5"
},
"nativeSrc": "3074:18:5",
"nodeType": "YulFunctionCall",
"src": "3074:18:5"
},
"nativeSrc": "3071:49:5",
"nodeType": "YulIf",
"src": "3071:49:5"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "3162:11:5",
"nodeType": "YulIdentifier",
"src": "3162:11:5"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "3179:8:5",
"nodeType": "YulIdentifier",
"src": "3179:8:5"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "3207:3:5",
"nodeType": "YulIdentifier",
"src": "3207:3:5"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "3189:17:5",
"nodeType": "YulIdentifier",
"src": "3189:17:5"
},
"nativeSrc": "3189:22:5",
"nodeType": "YulFunctionCall",
"src": "3189:22:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3175:3:5",
"nodeType": "YulIdentifier",
"src": "3175:3:5"
},
"nativeSrc": "3175:37:5",
"nodeType": "YulFunctionCall",
"src": "3175:37:5"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "3133:28:5",
"nodeType": "YulIdentifier",
"src": "3133:28:5"
},
"nativeSrc": "3133:80:5",
"nodeType": "YulFunctionCall",
"src": "3133:80:5"
},
"nativeSrc": "3133:80:5",
"nodeType": "YulExpressionStatement",
"src": "3133:80:5"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "2783:3:5",
"nodeType": "YulIdentifier",
"src": "2783:3:5"
},
{
"kind": "number",
"nativeSrc": "2788:2:5",
"nodeType": "YulLiteral",
"src": "2788:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2780:2:5",
"nodeType": "YulIdentifier",
"src": "2780:2:5"
},
"nativeSrc": "2780:11:5",
"nodeType": "YulFunctionCall",
"src": "2780:11:5"
},
"nativeSrc": "2777:446:5",
"nodeType": "YulIf",
"src": "2777:446:5"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "2687:543:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "2742:5:5",
"nodeType": "YulTypedName",
"src": "2742:5:5",
"type": ""
},
{
"name": "len",
"nativeSrc": "2749:3:5",
"nodeType": "YulTypedName",
"src": "2749:3:5",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "2754:10:5",
"nodeType": "YulTypedName",
"src": "2754:10:5",
"type": ""
}
],
"src": "2687:543:5"
},
{
"body": {
"nativeSrc": "3299:54:5",
"nodeType": "YulBlock",
"src": "3299:54:5",
"statements": [
{
"nativeSrc": "3309:37:5",
"nodeType": "YulAssignment",
"src": "3309:37:5",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "3334:4:5",
"nodeType": "YulIdentifier",
"src": "3334:4:5"
},
{
"name": "value",
"nativeSrc": "3340:5:5",
"nodeType": "YulIdentifier",
"src": "3340:5:5"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "3330:3:5",
"nodeType": "YulIdentifier",
"src": "3330:3:5"
},
"nativeSrc": "3330:16:5",
"nodeType": "YulFunctionCall",
"src": "3330:16:5"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "3309:8:5",
"nodeType": "YulIdentifier",
"src": "3309:8:5"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3236:117:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "3274:4:5",
"nodeType": "YulTypedName",
"src": "3274:4:5",
"type": ""
},
{
"name": "value",
"nativeSrc": "3280:5:5",
"nodeType": "YulTypedName",
"src": "3280:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "3290:8:5",
"nodeType": "YulTypedName",
"src": "3290:8:5",
"type": ""
}
],
"src": "3236:117:5"
},
{
"body": {
"nativeSrc": "3410:118:5",
"nodeType": "YulBlock",
"src": "3410:118:5",
"statements": [
{
"nativeSrc": "3420:68:5",
"nodeType": "YulVariableDeclaration",
"src": "3420:68:5",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3469:1:5",
"nodeType": "YulLiteral",
"src": "3469:1:5",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "3472:5:5",
"nodeType": "YulIdentifier",
"src": "3472:5:5"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3465:3:5",
"nodeType": "YulIdentifier",
"src": "3465:3:5"
},
"nativeSrc": "3465:13:5",
"nodeType": "YulFunctionCall",
"src": "3465:13:5"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3484:1:5",
"nodeType": "YulLiteral",
"src": "3484:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3480:3:5",
"nodeType": "YulIdentifier",
"src": "3480:3:5"
},
"nativeSrc": "3480:6:5",
"nodeType": "YulFunctionCall",
"src": "3480:6:5"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3436:28:5",
"nodeType": "YulIdentifier",
"src": "3436:28:5"
},
"nativeSrc": "3436:51:5",
"nodeType": "YulFunctionCall",
"src": "3436:51:5"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3432:3:5",
"nodeType": "YulIdentifier",
"src": "3432:3:5"
},
"nativeSrc": "3432:56:5",
"nodeType": "YulFunctionCall",
"src": "3432:56:5"
},
"variables": [
{
"name": "mask",
"nativeSrc": "3424:4:5",
"nodeType": "YulTypedName",
"src": "3424:4:5",
"type": ""
}
]
},
{
"nativeSrc": "3497:25:5",
"nodeType": "YulAssignment",
"src": "3497:25:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3511:4:5",
"nodeType": "YulIdentifier",
"src": "3511:4:5"
},
{
"name": "mask",
"nativeSrc": "3517:4:5",
"nodeType": "YulIdentifier",
"src": "3517:4:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "3507:3:5",
"nodeType": "YulIdentifier",
"src": "3507:3:5"
},
"nativeSrc": "3507:15:5",
"nodeType": "YulFunctionCall",
"src": "3507:15:5"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "3497:6:5",
"nodeType": "YulIdentifier",
"src": "3497:6:5"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "3359:169:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3387:4:5",
"nodeType": "YulTypedName",
"src": "3387:4:5",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "3393:5:5",
"nodeType": "YulTypedName",
"src": "3393:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "3403:6:5",
"nodeType": "YulTypedName",
"src": "3403:6:5",
"type": ""
}
],
"src": "3359:169:5"
},
{
"body": {
"nativeSrc": "3614:214:5",
"nodeType": "YulBlock",
"src": "3614:214:5",
"statements": [
{
"nativeSrc": "3747:37:5",
"nodeType": "YulAssignment",
"src": "3747:37:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3774:4:5",
"nodeType": "YulIdentifier",
"src": "3774:4:5"
},
{
"name": "len",
"nativeSrc": "3780:3:5",
"nodeType": "YulIdentifier",
"src": "3780:3:5"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "3755:18:5",
"nodeType": "YulIdentifier",
"src": "3755:18:5"
},
"nativeSrc": "3755:29:5",
"nodeType": "YulFunctionCall",
"src": "3755:29:5"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "3747:4:5",
"nodeType": "YulIdentifier",
"src": "3747:4:5"
}
]
},
{
"nativeSrc": "3793:29:5",
"nodeType": "YulAssignment",
"src": "3793:29:5",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3804:4:5",
"nodeType": "YulIdentifier",
"src": "3804:4:5"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3814:1:5",
"nodeType": "YulLiteral",
"src": "3814:1:5",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "3817:3:5",
"nodeType": "YulIdentifier",
"src": "3817:3:5"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3810:3:5",
"nodeType": "YulIdentifier",
"src": "3810:3:5"
},
"nativeSrc": "3810:11:5",
"nodeType": "YulFunctionCall",
"src": "3810:11:5"
}
],
"functionName": {
"name": "or",
"nativeSrc": "3801:2:5",
"nodeType": "YulIdentifier",
"src": "3801:2:5"
},
"nativeSrc": "3801:21:5",
"nodeType": "YulFunctionCall",
"src": "3801:21:5"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "3793:4:5",
"nodeType": "YulIdentifier",
"src": "3793:4:5"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "3533:295:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3595:4:5",
"nodeType": "YulTypedName",
"src": "3595:4:5",
"type": ""
},
{
"name": "len",
"nativeSrc": "3601:3:5",
"nodeType": "YulTypedName",
"src": "3601:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "3609:4:5",
"nodeType": "YulTypedName",
"src": "3609:4:5",
"type": ""
}
],
"src": "3533:295:5"
},
{
"body": {
"nativeSrc": "3925:1303:5",
"nodeType": "YulBlock",
"src": "3925:1303:5",
"statements": [
{
"nativeSrc": "3936:51:5",
"nodeType": "YulVariableDeclaration",
"src": "3936:51:5",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "3983:3:5",
"nodeType": "YulIdentifier",
"src": "3983:3:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "3950:32:5",
"nodeType": "YulIdentifier",
"src": "3950:32:5"
},
"nativeSrc": "3950:37:5",
"nodeType": "YulFunctionCall",
"src": "3950:37:5"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "3940:6:5",
"nodeType": "YulTypedName",
"src": "3940:6:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4072:22:5",
"nodeType": "YulBlock",
"src": "4072:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "4074:16:5",
"nodeType": "YulIdentifier",
"src": "4074:16:5"
},
"nativeSrc": "4074:18:5",
"nodeType": "YulFunctionCall",
"src": "4074:18:5"
},
"nativeSrc": "4074:18:5",
"nodeType": "YulExpressionStatement",
"src": "4074:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4044:6:5",
"nodeType": "YulIdentifier",
"src": "4044:6:5"
},
{
"kind": "number",
"nativeSrc": "4052:18:5",
"nodeType": "YulLiteral",
"src": "4052:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4041:2:5",
"nodeType": "YulIdentifier",
"src": "4041:2:5"
},
"nativeSrc": "4041:30:5",
"nodeType": "YulFunctionCall",
"src": "4041:30:5"
},
"nativeSrc": "4038:56:5",
"nodeType": "YulIf",
"src": "4038:56:5"
},
{
"nativeSrc": "4104:52:5",
"nodeType": "YulVariableDeclaration",
"src": "4104:52:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "4150:4:5",
"nodeType": "YulIdentifier",
"src": "4150:4:5"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "4144:5:5",
"nodeType": "YulIdentifier",
"src": "4144:5:5"
},
"nativeSrc": "4144:11:5",
"nodeType": "YulFunctionCall",
"src": "4144:11:5"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "4118:25:5",
"nodeType": "YulIdentifier",
"src": "4118:25:5"
},
"nativeSrc": "4118:38:5",
"nodeType": "YulFunctionCall",
"src": "4118:38:5"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "4108:6:5",
"nodeType": "YulTypedName",
"src": "4108:6:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4249:4:5",
"nodeType": "YulIdentifier",
"src": "4249:4:5"
},
{
"name": "oldLen",
"nativeSrc": "4255:6:5",
"nodeType": "YulIdentifier",
"src": "4255:6:5"
},
{
"name": "newLen",
"nativeSrc": "4263:6:5",
"nodeType": "YulIdentifier",
"src": "4263:6:5"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "4203:45:5",
"nodeType": "YulIdentifier",
"src": "4203:45:5"
},
"nativeSrc": "4203:67:5",
"nodeType": "YulFunctionCall",
"src": "4203:67:5"
},
"nativeSrc": "4203:67:5",
"nodeType": "YulExpressionStatement",
"src": "4203:67:5"
},
{
"nativeSrc": "4280:18:5",
"nodeType": "YulVariableDeclaration",
"src": "4280:18:5",
"value": {
"kind": "number",
"nativeSrc": "4297:1:5",
"nodeType": "YulLiteral",
"src": "4297:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "4284:9:5",
"nodeType": "YulTypedName",
"src": "4284:9:5",
"type": ""
}
]
},
{
"nativeSrc": "4308:17:5",
"nodeType": "YulAssignment",
"src": "4308:17:5",
"value": {
"kind": "number",
"nativeSrc": "4321:4:5",
"nodeType": "YulLiteral",
"src": "4321:4:5",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4308:9:5",
"nodeType": "YulIdentifier",
"src": "4308:9:5"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "4372:611:5",
"nodeType": "YulBlock",
"src": "4372:611:5",
"statements": [
{
"nativeSrc": "4386:37:5",
"nodeType": "YulVariableDeclaration",
"src": "4386:37:5",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4405:6:5",
"nodeType": "YulIdentifier",
"src": "4405:6:5"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "4417:4:5",
"nodeType": "YulLiteral",
"src": "4417:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "4413:3:5",
"nodeType": "YulIdentifier",
"src": "4413:3:5"
},
"nativeSrc": "4413:9:5",
"nodeType": "YulFunctionCall",
"src": "4413:9:5"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4401:3:5",
"nodeType": "YulIdentifier",
"src": "4401:3:5"
},
"nativeSrc": "4401:22:5",
"nodeType": "YulFunctionCall",
"src": "4401:22:5"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "4390:7:5",
"nodeType": "YulTypedName",
"src": "4390:7:5",
"type": ""
}
]
},
{
"nativeSrc": "4437:51:5",
"nodeType": "YulVariableDeclaration",
"src": "4437:51:5",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4483:4:5",
"nodeType": "YulIdentifier",
"src": "4483:4:5"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "4451:31:5",
"nodeType": "YulIdentifier",
"src": "4451:31:5"
},
"nativeSrc": "4451:37:5",
"nodeType": "YulFunctionCall",
"src": "4451:37:5"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "4441:6:5",
"nodeType": "YulTypedName",
"src": "4441:6:5",
"type": ""
}
]
},
{
"nativeSrc": "4501:10:5",
"nodeType": "YulVariableDeclaration",
"src": "4501:10:5",
"value": {
"kind": "number",
"nativeSrc": "4510:1:5",
"nodeType": "YulLiteral",
"src": "4510:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "4505:1:5",
"nodeType": "YulTypedName",
"src": "4505:1:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4569:163:5",
"nodeType": "YulBlock",
"src": "4569:163:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4594:6:5",
"nodeType": "YulIdentifier",
"src": "4594:6:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4612:3:5",
"nodeType": "YulIdentifier",
"src": "4612:3:5"
},
{
"name": "srcOffset",
"nativeSrc": "4617:9:5",
"nodeType": "YulIdentifier",
"src": "4617:9:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4608:3:5",
"nodeType": "YulIdentifier",
"src": "4608:3:5"
},
"nativeSrc": "4608:19:5",
"nodeType": "YulFunctionCall",
"src": "4608:19:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4602:5:5",
"nodeType": "YulIdentifier",
"src": "4602:5:5"
},
"nativeSrc": "4602:26:5",
"nodeType": "YulFunctionCall",
"src": "4602:26:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4587:6:5",
"nodeType": "YulIdentifier",
"src": "4587:6:5"
},
"nativeSrc": "4587:42:5",
"nodeType": "YulFunctionCall",
"src": "4587:42:5"
},
"nativeSrc": "4587:42:5",
"nodeType": "YulExpressionStatement",
"src": "4587:42:5"
},
{
"nativeSrc": "4646:24:5",
"nodeType": "YulAssignment",
"src": "4646:24:5",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4660:6:5",
"nodeType": "YulIdentifier",
"src": "4660:6:5"
},
{
"kind": "number",
"nativeSrc": "4668:1:5",
"nodeType": "YulLiteral",
"src": "4668:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4656:3:5",
"nodeType": "YulIdentifier",
"src": "4656:3:5"
},
"nativeSrc": "4656:14:5",
"nodeType": "YulFunctionCall",
"src": "4656:14:5"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "4646:6:5",
"nodeType": "YulIdentifier",
"src": "4646:6:5"
}
]
},
{
"nativeSrc": "4687:31:5",
"nodeType": "YulAssignment",
"src": "4687:31:5",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "4704:9:5",
"nodeType": "YulIdentifier",
"src": "4704:9:5"
},
{
"kind": "number",
"nativeSrc": "4715:2:5",
"nodeType": "YulLiteral",
"src": "4715:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4700:3:5",
"nodeType": "YulIdentifier",
"src": "4700:3:5"
},
"nativeSrc": "4700:18:5",
"nodeType": "YulFunctionCall",
"src": "4700:18:5"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4687:9:5",
"nodeType": "YulIdentifier",
"src": "4687:9:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "4535:1:5",
"nodeType": "YulIdentifier",
"src": "4535:1:5"
},
{
"name": "loopEnd",
"nativeSrc": "4538:7:5",
"nodeType": "YulIdentifier",
"src": "4538:7:5"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4532:2:5",
"nodeType": "YulIdentifier",
"src": "4532:2:5"
},
"nativeSrc": "4532:14:5",
"nodeType": "YulFunctionCall",
"src": "4532:14:5"
},
"nativeSrc": "4524:208:5",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "4547:21:5",
"nodeType": "YulBlock",
"src": "4547:21:5",
"statements": [
{
"nativeSrc": "4549:17:5",
"nodeType": "YulAssignment",
"src": "4549:17:5",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "4558:1:5",
"nodeType": "YulIdentifier",
"src": "4558:1:5"
},
{
"kind": "number",
"nativeSrc": "4561:4:5",
"nodeType": "YulLiteral",
"src": "4561:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4554:3:5",
"nodeType": "YulIdentifier",
"src": "4554:3:5"
},
"nativeSrc": "4554:12:5",
"nodeType": "YulFunctionCall",
"src": "4554:12:5"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "4549:1:5",
"nodeType": "YulIdentifier",
"src": "4549:1:5"
}
]
}
]
},
"pre": {
"nativeSrc": "4528:3:5",
"nodeType": "YulBlock",
"src": "4528:3:5",
"statements": []
},
"src": "4524:208:5"
},
{
"body": {
"nativeSrc": "4768:156:5",
"nodeType": "YulBlock",
"src": "4768:156:5",
"statements": [
{
"nativeSrc": "4786:43:5",
"nodeType": "YulVariableDeclaration",
"src": "4786:43:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4813:3:5",
"nodeType": "YulIdentifier",
"src": "4813:3:5"
},
{
"name": "srcOffset",
"nativeSrc": "4818:9:5",
"nodeType": "YulIdentifier",
"src": "4818:9:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4809:3:5",
"nodeType": "YulIdentifier",
"src": "4809:3:5"
},
"nativeSrc": "4809:19:5",
"nodeType": "YulFunctionCall",
"src": "4809:19:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4803:5:5",
"nodeType": "YulIdentifier",
"src": "4803:5:5"
},
"nativeSrc": "4803:26:5",
"nodeType": "YulFunctionCall",
"src": "4803:26:5"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "4790:9:5",
"nodeType": "YulTypedName",
"src": "4790:9:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4853:6:5",
"nodeType": "YulIdentifier",
"src": "4853:6:5"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "4880:9:5",
"nodeType": "YulIdentifier",
"src": "4880:9:5"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4895:6:5",
"nodeType": "YulIdentifier",
"src": "4895:6:5"
},
{
"kind": "number",
"nativeSrc": "4903:4:5",
"nodeType": "YulLiteral",
"src": "4903:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4891:3:5",
"nodeType": "YulIdentifier",
"src": "4891:3:5"
},
"nativeSrc": "4891:17:5",
"nodeType": "YulFunctionCall",
"src": "4891:17:5"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "4861:18:5",
"nodeType": "YulIdentifier",
"src": "4861:18:5"
},
"nativeSrc": "4861:48:5",
"nodeType": "YulFunctionCall",
"src": "4861:48:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4846:6:5",
"nodeType": "YulIdentifier",
"src": "4846:6:5"
},
"nativeSrc": "4846:64:5",
"nodeType": "YulFunctionCall",
"src": "4846:64:5"
},
"nativeSrc": "4846:64:5",
"nodeType": "YulExpressionStatement",
"src": "4846:64:5"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "4751:7:5",
"nodeType": "YulIdentifier",
"src": "4751:7:5"
},
{
"name": "newLen",
"nativeSrc": "4760:6:5",
"nodeType": "YulIdentifier",
"src": "4760:6:5"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4748:2:5",
"nodeType": "YulIdentifier",
"src": "4748:2:5"
},
"nativeSrc": "4748:19:5",
"nodeType": "YulFunctionCall",
"src": "4748:19:5"
},
"nativeSrc": "4745:179:5",
"nodeType": "YulIf",
"src": "4745:179:5"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4944:4:5",
"nodeType": "YulIdentifier",
"src": "4944:4:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4958:6:5",
"nodeType": "YulIdentifier",
"src": "4958:6:5"
},
{
"kind": "number",
"nativeSrc": "4966:1:5",
"nodeType": "YulLiteral",
"src": "4966:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "4954:3:5",
"nodeType": "YulIdentifier",
"src": "4954:3:5"
},
"nativeSrc": "4954:14:5",
"nodeType": "YulFunctionCall",
"src": "4954:14:5"
},
{
"kind": "number",
"nativeSrc": "4970:1:5",
"nodeType": "YulLiteral",
"src": "4970:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4950:3:5",
"nodeType": "YulIdentifier",
"src": "4950:3:5"
},
"nativeSrc": "4950:22:5",
"nodeType": "YulFunctionCall",
"src": "4950:22:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4937:6:5",
"nodeType": "YulIdentifier",
"src": "4937:6:5"
},
"nativeSrc": "4937:36:5",
"nodeType": "YulFunctionCall",
"src": "4937:36:5"
},
"nativeSrc": "4937:36:5",
"nodeType": "YulExpressionStatement",
"src": "4937:36:5"
}
]
},
"nativeSrc": "4365:618:5",
"nodeType": "YulCase",
"src": "4365:618:5",
"value": {
"kind": "number",
"nativeSrc": "4370:1:5",
"nodeType": "YulLiteral",
"src": "4370:1:5",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "5000:222:5",
"nodeType": "YulBlock",
"src": "5000:222:5",
"statements": [
{
"nativeSrc": "5014:14:5",
"nodeType": "YulVariableDeclaration",
"src": "5014:14:5",
"value": {
"kind": "number",
"nativeSrc": "5027:1:5",
"nodeType": "YulLiteral",
"src": "5027:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "5018:5:5",
"nodeType": "YulTypedName",
"src": "5018:5:5",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5051:67:5",
"nodeType": "YulBlock",
"src": "5051:67:5",
"statements": [
{
"nativeSrc": "5069:35:5",
"nodeType": "YulAssignment",
"src": "5069:35:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5088:3:5",
"nodeType": "YulIdentifier",
"src": "5088:3:5"
},
{
"name": "srcOffset",
"nativeSrc": "5093:9:5",
"nodeType": "YulIdentifier",
"src": "5093:9:5"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5084:3:5",
"nodeType": "YulIdentifier",
"src": "5084:3:5"
},
"nativeSrc": "5084:19:5",
"nodeType": "YulFunctionCall",
"src": "5084:19:5"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5078:5:5",
"nodeType": "YulIdentifier",
"src": "5078:5:5"
},
"nativeSrc": "5078:26:5",
"nodeType": "YulFunctionCall",
"src": "5078:26:5"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "5069:5:5",
"nodeType": "YulIdentifier",
"src": "5069:5:5"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "5044:6:5",
"nodeType": "YulIdentifier",
"src": "5044:6:5"
},
"nativeSrc": "5041:77:5",
"nodeType": "YulIf",
"src": "5041:77:5"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "5138:4:5",
"nodeType": "YulIdentifier",
"src": "5138:4:5"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5197:5:5",
"nodeType": "YulIdentifier",
"src": "5197:5:5"
},
{
"name": "newLen",
"nativeSrc": "5204:6:5",
"nodeType": "YulIdentifier",
"src": "5204:6:5"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "5144:52:5",
"nodeType": "YulIdentifier",
"src": "5144:52:5"
},
"nativeSrc": "5144:67:5",
"nodeType": "YulFunctionCall",
"src": "5144:67:5"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "5131:6:5",
"nodeType": "YulIdentifier",
"src": "5131:6:5"
},
"nativeSrc": "5131:81:5",
"nodeType": "YulFunctionCall",
"src": "5131:81:5"
},
"nativeSrc": "5131:81:5",
"nodeType": "YulExpressionStatement",
"src": "5131:81:5"
}
]
},
"nativeSrc": "4992:230:5",
"nodeType": "YulCase",
"src": "4992:230:5",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4345:6:5",
"nodeType": "YulIdentifier",
"src": "4345:6:5"
},
{
"kind": "number",
"nativeSrc": "4353:2:5",
"nodeType": "YulLiteral",
"src": "4353:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4342:2:5",
"nodeType": "YulIdentifier",
"src": "4342:2:5"
},
"nativeSrc": "4342:14:5",
"nodeType": "YulFunctionCall",
"src": "4342:14:5"
},
"nativeSrc": "4335:887:5",
"nodeType": "YulSwitch",
"src": "4335:887:5"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "3833:1395:5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "3914:4:5",
"nodeType": "YulTypedName",
"src": "3914:4:5",
"type": ""
},
{
"name": "src",
"nativeSrc": "3920:3:5",
"nodeType": "YulTypedName",
"src": "3920:3:5",
"type": ""
}
],
"src": "3833:1395:5"
},
{
"body": {
"nativeSrc": "5330:73:5",
"nodeType": "YulBlock",
"src": "5330:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5347:3:5",
"nodeType": "YulIdentifier",
"src": "5347:3:5"
},
{
"name": "length",
"nativeSrc": "5352:6:5",
"nodeType": "YulIdentifier",
"src": "5352:6:5"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5340:6:5",
"nodeType": "YulIdentifier",
"src": "5340:6:5"
},
"nativeSrc": "5340:19:5",
"nodeType": "YulFunctionCall",
"src": "5340:19:5"
},
"nativeSrc": "5340:19:5",
"nodeType": "YulExpressionStatement",
"src": "5340:19:5"
},
{
"nativeSrc": "5368:29:5",
"nodeType": "YulAssignment",
"src": "5368:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5387:3:5",
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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