Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akinncar/2e89a9f4d81da8f4f4ccf31402ca1880 to your computer and use it in GitHub Desktop.
Save akinncar/2e89a9f4d81da8f4f4ccf31402ca1880 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.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, 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}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), 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}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - 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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev 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.0 (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 v4.4.0 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_149": {
"entryPoint": null,
"id": 149,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_801": {
"entryPoint": null,
"id": 801,
"parameterSlots": 0,
"returnSlots": 0
},
"@_afterTokenTransfer_649": {
"entryPoint": 895,
"id": 649,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_638": {
"entryPoint": 890,
"id": 638,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_510": {
"entryPoint": 513,
"id": 510,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_765": {
"entryPoint": 298,
"id": 765,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 306,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@decimals_179": {
"entryPoint": 504,
"id": 179,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1076,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1115,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1132,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1166,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1195,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1212,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_helper": {
"entryPoint": 1305,
"id": null,
"parameterSlots": 4,
"returnSlots": 2
},
"checked_exp_t_uint256_t_uint8": {
"entryPoint": 1396,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_unsigned": {
"entryPoint": 1477,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 1713,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1810,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 1820,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1833,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1887,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1934,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"shift_right_1_unsigned": {
"entryPoint": 1981,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 1994,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5381:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:6"
},
"nodeType": "YulFunctionCall",
"src": "170:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "246:88:6"
},
"nodeType": "YulFunctionCall",
"src": "246:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:6"
},
{
"nodeType": "YulAssignment",
"src": "348:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:6"
},
"nodeType": "YulFunctionCall",
"src": "355:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:6",
"type": ""
}
],
"src": "7:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "444:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "461:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "484:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "466:17:6"
},
"nodeType": "YulFunctionCall",
"src": "466:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "454:6:6"
},
"nodeType": "YulFunctionCall",
"src": "454:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "454:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "432:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "439:3:6",
"type": ""
}
],
"src": "379:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "674:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "684:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "696:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "707:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "692:3:6"
},
"nodeType": "YulFunctionCall",
"src": "692:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "684:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:6"
},
"nodeType": "YulFunctionCall",
"src": "727:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "750:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "756:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "746:3:6"
},
"nodeType": "YulFunctionCall",
"src": "746:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "720:6:6"
},
"nodeType": "YulFunctionCall",
"src": "720:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "720:47:6"
},
{
"nodeType": "YulAssignment",
"src": "776:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "910:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "784:124:6"
},
"nodeType": "YulFunctionCall",
"src": "784:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "776:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "654:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "669:4:6",
"type": ""
}
],
"src": "503:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1026:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1036:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1048:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1059:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1044:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1044:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1036:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1116:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1129:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1140:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1125:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1125:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1072:43:6"
},
"nodeType": "YulFunctionCall",
"src": "1072:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "1072:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "998:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1010:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1021:4:6",
"type": ""
}
],
"src": "928:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1269:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1274:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1262:6:6"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:6"
},
"nodeType": "YulExpressionStatement",
"src": "1262:19:6"
},
{
"nodeType": "YulAssignment",
"src": "1290:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1309:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1314:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1305:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1305:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1290:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1224:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1229:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1240:11:6",
"type": ""
}
],
"src": "1156:169:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1375:261:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1385:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1408:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1390:17:6"
},
"nodeType": "YulFunctionCall",
"src": "1390:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1385:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1419:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1442:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1424:17:6"
},
"nodeType": "YulFunctionCall",
"src": "1424:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1419:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1582:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1584:16:6"
},
"nodeType": "YulFunctionCall",
"src": "1584:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "1584:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1503:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1510:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1578:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1506:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1506:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1500:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1500:81:6"
},
"nodeType": "YulIf",
"src": "1497:107:6"
},
{
"nodeType": "YulAssignment",
"src": "1614:16:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1625:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1628:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1621:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1621:9:6"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "1614:3:6"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "1362:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "1365:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "1371:3:6",
"type": ""
}
],
"src": "1331:305:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1715:775:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1725:15:6",
"value": {
"name": "_power",
"nodeType": "YulIdentifier",
"src": "1734:6:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "1725:5:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1749:14:6",
"value": {
"name": "_base",
"nodeType": "YulIdentifier",
"src": "1758:5:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1749:4:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1807:677:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1895:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1897:16:6"
},
"nodeType": "YulFunctionCall",
"src": "1897:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "1897:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1873:4:6"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "1883:3:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "1888:4:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1879:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1879:14:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1870:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1870:24:6"
},
"nodeType": "YulIf",
"src": "1867:50:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1962:419:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2342:25:6",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2355:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2362:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2351:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2351:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2342:5:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1937:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1933:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1933:16:6"
},
"nodeType": "YulIf",
"src": "1930:451:6"
},
{
"nodeType": "YulAssignment",
"src": "2394:23:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2406:4:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2412:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2402:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2402:15:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2394:4:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2430:44:6",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2465:8:6"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nodeType": "YulIdentifier",
"src": "2442:22:6"
},
"nodeType": "YulFunctionCall",
"src": "2442:32:6"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2430:8:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "1783:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1793:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1780:2:6"
},
"nodeType": "YulFunctionCall",
"src": "1780:15:6"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1796:2:6",
"statements": []
},
"pre": {
"nodeType": "YulBlock",
"src": "1776:3:6",
"statements": []
},
"src": "1772:712:6"
}
]
},
"name": "checked_exp_helper",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nodeType": "YulTypedName",
"src": "1670:6:6",
"type": ""
},
{
"name": "_base",
"nodeType": "YulTypedName",
"src": "1678:5:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "1685:8:6",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "1695:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "1703:5:6",
"type": ""
},
{
"name": "base",
"nodeType": "YulTypedName",
"src": "1710:4:6",
"type": ""
}
],
"src": "1642:848:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2560:217:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2570:31:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2596:4:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2578:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2578:23:6"
},
"variableNames": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2570:4:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2610:37:6",
"value": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2638:8:6"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "2622:15:6"
},
"nodeType": "YulFunctionCall",
"src": "2622:25:6"
},
"variableNames": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2610:8:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2657:113:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "2687:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "2693:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2703:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nodeType": "YulIdentifier",
"src": "2666:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2666:104:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "2657:5:6"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2535:4:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2541:8:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2554:5:6",
"type": ""
}
],
"src": "2496:281:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2843:1013:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3038:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3040:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3049:1:6",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3040:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "3051:5:6"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3028:8:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3021:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3021:16:6"
},
"nodeType": "YulIf",
"src": "3018:40:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3083:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3085:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3094:1:6",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3085:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "3096:5:6"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3077:4:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3070:6:6"
},
"nodeType": "YulFunctionCall",
"src": "3070:12:6"
},
"nodeType": "YulIf",
"src": "3067:36:6"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "3213:20:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3215:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3224:1:6",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3215:5:6"
}
]
},
{
"nodeType": "YulLeave",
"src": "3226:5:6"
}
]
},
"nodeType": "YulCase",
"src": "3206:27:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3211:1:6",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "3257:176:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3292:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3294:16:6"
},
"nodeType": "YulFunctionCall",
"src": "3294:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "3294:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3277:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3287:3:6",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3274:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3274:17:6"
},
"nodeType": "YulIf",
"src": "3271:43:6"
},
{
"nodeType": "YulAssignment",
"src": "3327:25:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3340:1:6",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3343:8:6"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "3336:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3336:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3327:5:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3383:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3385:16:6"
},
"nodeType": "YulFunctionCall",
"src": "3385:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "3385:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3371:5:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3378:3:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3368:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3368:14:6"
},
"nodeType": "YulIf",
"src": "3365:40:6"
},
{
"nodeType": "YulLeave",
"src": "3418:5:6"
}
]
},
"nodeType": "YulCase",
"src": "3242:191:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3247:1:6",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nodeType": "YulIdentifier",
"src": "3163:4:6"
},
"nodeType": "YulSwitch",
"src": "3156:277:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3565:123:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3579:28:6",
"value": {
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3592:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3598:8:6"
}
],
"functionName": {
"name": "exp",
"nodeType": "YulIdentifier",
"src": "3588:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3588:19:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3579:5:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3638:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3640:16:6"
},
"nodeType": "YulFunctionCall",
"src": "3640:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "3640:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3626:5:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3633:3:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3623:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3623:14:6"
},
"nodeType": "YulIf",
"src": "3620:40:6"
},
{
"nodeType": "YulLeave",
"src": "3673:5:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3468:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3474:2:6",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3465:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3465:12:6"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3482:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3492:2:6",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3479:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3479:16:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3461:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3461:35:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3517:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3523:3:6",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3514:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3514:13:6"
},
{
"arguments": [
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3532:8:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3542:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3529:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3529:16:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3510:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3510:36:6"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3445:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3445:111:6"
},
"nodeType": "YulIf",
"src": "3442:246:6"
},
{
"nodeType": "YulAssignment",
"src": "3698:57:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3732:1:6",
"type": "",
"value": "1"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3735:4:6"
},
{
"name": "exponent",
"nodeType": "YulIdentifier",
"src": "3741:8:6"
},
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3751:3:6"
}
],
"functionName": {
"name": "checked_exp_helper",
"nodeType": "YulIdentifier",
"src": "3713:18:6"
},
"nodeType": "YulFunctionCall",
"src": "3713:42:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3698:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3705:4:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3794:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3796:16:6"
},
"nodeType": "YulFunctionCall",
"src": "3796:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "3796:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3771:5:6"
},
{
"arguments": [
{
"name": "max",
"nodeType": "YulIdentifier",
"src": "3782:3:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3787:4:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3778:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3778:14:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3768:2:6"
},
"nodeType": "YulFunctionCall",
"src": "3768:25:6"
},
"nodeType": "YulIf",
"src": "3765:51:6"
},
{
"nodeType": "YulAssignment",
"src": "3825:25:6",
"value": {
"arguments": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3838:5:6"
},
{
"name": "base",
"nodeType": "YulIdentifier",
"src": "3845:4:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3834:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3834:16:6"
},
"variableNames": [
{
"name": "power",
"nodeType": "YulIdentifier",
"src": "3825:5:6"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nodeType": "YulTypedName",
"src": "2813:4:6",
"type": ""
},
{
"name": "exponent",
"nodeType": "YulTypedName",
"src": "2819:8:6",
"type": ""
},
{
"name": "max",
"nodeType": "YulTypedName",
"src": "2829:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nodeType": "YulTypedName",
"src": "2837:5:6",
"type": ""
}
],
"src": "2783:1073:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3910:300:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3920:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3943:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3925:17:6"
},
"nodeType": "YulFunctionCall",
"src": "3925:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3920:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3954:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3977:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3959:17:6"
},
"nodeType": "YulFunctionCall",
"src": "3959:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3954:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4152:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4154:16:6"
},
"nodeType": "YulFunctionCall",
"src": "4154:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "4154:18:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4064:1:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4057:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4057:9:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4050:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4050:17:6"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4072:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4079:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4147:1:6"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4075:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4075:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4069:2:6"
},
"nodeType": "YulFunctionCall",
"src": "4069:81:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4046:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4046:105:6"
},
"nodeType": "YulIf",
"src": "4043:131:6"
},
{
"nodeType": "YulAssignment",
"src": "4184:20:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4199:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4202:1:6"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4195:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4195:9:6"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "4184:7:6"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "3893:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "3896:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "3902:7:6",
"type": ""
}
],
"src": "3862:348:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4261:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4271:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4282:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4271:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4243:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4253:7:6",
"type": ""
}
],
"src": "4216:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4342:43:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4352:27:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4367:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4374:4:6",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4363:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4363:16:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4352:7:6"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4324:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4334:7:6",
"type": ""
}
],
"src": "4299:86:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4442:269:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4452:22:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4466:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4472:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4462:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4462:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4452:6:6"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4483:38:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4513:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4519:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4509:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4509:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4487:18:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4560:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4574:27:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4588:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4596:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4584:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4584:17:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4574:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4540:18:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4533:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4533:26:6"
},
"nodeType": "YulIf",
"src": "4530:81:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4663:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4677:16:6"
},
"nodeType": "YulFunctionCall",
"src": "4677:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "4677:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4627:18:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4650:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4658:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4647:2:6"
},
"nodeType": "YulFunctionCall",
"src": "4647:14:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4624:2:6"
},
"nodeType": "YulFunctionCall",
"src": "4624:38:6"
},
"nodeType": "YulIf",
"src": "4621:84:6"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4426:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4435:6:6",
"type": ""
}
],
"src": "4391:320:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4745:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4762:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4765:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4755:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4755:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "4755:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4859:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4862:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4852:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4852:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "4852:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4883:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4886:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4876:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4876:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "4876:15:6"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "4717:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4931:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4948:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4951:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4941:6:6"
},
"nodeType": "YulFunctionCall",
"src": "4941:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "4941:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5045:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5048:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5038:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5038:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "5038:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5069:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5072:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5062:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5062:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "5062:15:6"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4903:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5140:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5150:34:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5175:1:6",
"type": "",
"value": "1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5178:5:6"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5171:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5171:13:6"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "5150:8:6"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5121:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "5131:8:6",
"type": ""
}
],
"src": "5089:102:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5303:75:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5325:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5333:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5321:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5321:14:6"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5337:33:6",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5314:6:6"
},
"nodeType": "YulFunctionCall",
"src": "5314:57:6"
},
"nodeType": "YulExpressionStatement",
"src": "5314:57:6"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5295:6:6",
"type": ""
}
],
"src": "5197:181:6"
}
]
},
"contents": "{\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_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function 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_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_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_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function shift_right_1_unsigned(value) -> newValue {\n newValue :=\n\n shr(1, value)\n\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}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600981526020017f4a61766120436f696e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4a4156410000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000384565b508060049080519060200190620000af92919062000384565b505050620000d2620000c66200012a60201b60201c565b6200013260201b60201c565b62000124736c99a69537aa5f3a1e2d846b8b85573d46d45e45620000fb620001f860201b60201c565b600a62000109919062000574565b6107c7620001189190620006b1565b6200020160201b60201c565b620007f3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000274576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026b906200046c565b60405180910390fd5b62000288600083836200037a60201b60201c565b80600260008282546200029c9190620004bc565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002f39190620004bc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035a91906200048e565b60405180910390a362000376600083836200037f60201b60201c565b5050565b505050565b505050565b828054620003929062000729565b90600052602060002090601f016020900481019282620003b6576000855562000402565b82601f10620003d157805160ff191683800117855562000402565b8280016001018555821562000402579182015b8281111562000401578251825591602001919060010190620003e4565b5b50905062000411919062000415565b5090565b5b808211156200043057600081600090555060010162000416565b5090565b600062000443601f83620004ab565b91506200045082620007ca565b602082019050919050565b620004668162000712565b82525050565b60006020820190508181036000830152620004878162000434565b9050919050565b6000602082019050620004a560008301846200045b565b92915050565b600082825260208201905092915050565b6000620004c98262000712565b9150620004d68362000712565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200050e576200050d6200075f565b5b828201905092915050565b6000808291508390505b60018511156200056b578086048111156200054357620005426200075f565b5b6001851615620005535780820291505b80810290506200056385620007bd565b945062000523565b94509492505050565b6000620005818262000712565b91506200058e836200071c565b9250620005bd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005c5565b905092915050565b600082620005d75760019050620006aa565b81620005e75760009050620006aa565b81600181146200060057600281146200060b5762000641565b6001915050620006aa565b60ff84111562000620576200061f6200075f565b5b8360020a9150848211156200063a57620006396200075f565b5b50620006aa565b5060208310610133831016604e8410600b84101617156200067b5782820a9050838111156200067557620006746200075f565b5b620006aa565b6200068a848484600162000519565b92509050818404811115620006a457620006a36200075f565b5b81810290505b9392505050565b6000620006be8262000712565b9150620006cb8362000712565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200070757620007066200075f565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200074257607f821691505b602082108114156200075957620007586200078e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611a4480620008036000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906113de565b60405180910390f35b610132600480360381019061012d9190611195565b6103b4565b60405161013f91906113c3565b60405180910390f35b6101506103d2565b60405161015d9190611540565b60405180910390f35b610180600480360381019061017b9190611142565b6103dc565b60405161018d91906113c3565b60405180910390f35b61019e6104d4565b6040516101ab919061155b565b60405180910390f35b6101ce60048036038101906101c99190611195565b6104dd565b6040516101db91906113c3565b60405180910390f35b6101fe60048036038101906101f99190611195565b610589565b005b61021a600480360381019061021591906110d5565b610613565b6040516102279190611540565b60405180910390f35b61023861065b565b005b6102426106e3565b60405161024f91906113a8565b60405180910390f35b61026061070d565b60405161026d91906113de565b60405180910390f35b610290600480360381019061028b9190611195565b61079f565b60405161029d91906113c3565b60405180910390f35b6102c060048036038101906102bb9190611195565b61088a565b6040516102cd91906113c3565b60405180910390f35b6102f060048036038101906102eb9190611102565b6108a8565b6040516102fd9190611540565b60405180910390f35b610320600480360381019061031b91906110d5565b61092f565b005b60606003805461033190611670565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611670565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610a27565b8484610a2f565b6001905092915050565b6000600254905090565b60006103e9848484610bfa565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610a27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ab90611480565b60405180910390fd5b6104c8856104c0610a27565b858403610a2f565b60019150509392505050565b60006012905090565b600061057f6104ea610a27565b8484600160006104f8610a27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461057a9190611592565b610a2f565b6001905092915050565b610591610a27565b73ffffffffffffffffffffffffffffffffffffffff166105af6106e3565b73ffffffffffffffffffffffffffffffffffffffff1614610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc906114a0565b60405180910390fd5b61060f8282610e7b565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610663610a27565b73ffffffffffffffffffffffffffffffffffffffff166106816106e3565b73ffffffffffffffffffffffffffffffffffffffff16146106d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ce906114a0565b60405180910390fd5b6106e16000610fdb565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461071c90611670565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611670565b80156107955780601f1061076a57610100808354040283529160200191610795565b820191906000526020600020905b81548152906001019060200180831161077857829003601f168201915b5050505050905090565b600080600160006107ae610a27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290611500565b60405180910390fd5b61087f610876610a27565b85858403610a2f565b600191505092915050565b600061089e610897610a27565b8484610bfa565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610937610a27565b73ffffffffffffffffffffffffffffffffffffffff166109556106e3565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906114a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290611420565b60405180910390fd5b610a2481610fdb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a96906114e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690611440565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bed9190611540565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c61906114c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190611400565b60405180910390fd5b610ce58383836110a1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290611460565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfe9190611592565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e629190611540565b60405180910390a3610e758484846110a6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee290611520565b60405180910390fd5b610ef7600083836110a1565b8060026000828254610f099190611592565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5e9190611592565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fc39190611540565b60405180910390a3610fd7600083836110a6565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506110ba816119e0565b92915050565b6000813590506110cf816119f7565b92915050565b6000602082840312156110eb576110ea611700565b5b60006110f9848285016110ab565b91505092915050565b6000806040838503121561111957611118611700565b5b6000611127858286016110ab565b9250506020611138858286016110ab565b9150509250929050565b60008060006060848603121561115b5761115a611700565b5b6000611169868287016110ab565b935050602061117a868287016110ab565b925050604061118b868287016110c0565b9150509250925092565b600080604083850312156111ac576111ab611700565b5b60006111ba858286016110ab565b92505060206111cb858286016110c0565b9150509250929050565b6111de816115e8565b82525050565b6111ed816115fa565b82525050565b60006111fe82611576565b6112088185611581565b935061121881856020860161163d565b61122181611705565b840191505092915050565b6000611239602383611581565b915061124482611716565b604082019050919050565b600061125c602683611581565b915061126782611765565b604082019050919050565b600061127f602283611581565b915061128a826117b4565b604082019050919050565b60006112a2602683611581565b91506112ad82611803565b604082019050919050565b60006112c5602883611581565b91506112d082611852565b604082019050919050565b60006112e8602083611581565b91506112f3826118a1565b602082019050919050565b600061130b602583611581565b9150611316826118ca565b604082019050919050565b600061132e602483611581565b915061133982611919565b604082019050919050565b6000611351602583611581565b915061135c82611968565b604082019050919050565b6000611374601f83611581565b915061137f826119b7565b602082019050919050565b61139381611626565b82525050565b6113a281611630565b82525050565b60006020820190506113bd60008301846111d5565b92915050565b60006020820190506113d860008301846111e4565b92915050565b600060208201905081810360008301526113f881846111f3565b905092915050565b600060208201905081810360008301526114198161122c565b9050919050565b600060208201905081810360008301526114398161124f565b9050919050565b6000602082019050818103600083015261145981611272565b9050919050565b6000602082019050818103600083015261147981611295565b9050919050565b60006020820190508181036000830152611499816112b8565b9050919050565b600060208201905081810360008301526114b9816112db565b9050919050565b600060208201905081810360008301526114d9816112fe565b9050919050565b600060208201905081810360008301526114f981611321565b9050919050565b6000602082019050818103600083015261151981611344565b9050919050565b6000602082019050818103600083015261153981611367565b9050919050565b6000602082019050611555600083018461138a565b92915050565b60006020820190506115706000830184611399565b92915050565b600081519050919050565b600082825260208201905092915050565b600061159d82611626565b91506115a883611626565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115dd576115dc6116a2565b5b828201905092915050565b60006115f382611606565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561165b578082015181840152602081019050611640565b8381111561166a576000848401525b50505050565b6000600282049050600182168061168857607f821691505b6020821081141561169c5761169b6116d1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119e9816115e8565b81146119f457600080fd5b50565b611a0081611626565b8114611a0b57600080fd5b5056fea26469706673582212200a35aa98123215be5305c8aed8f9b4c6665f021dfa269627b79861fd7994b18c64736f6c63430008070033",
"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 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4A61766120436F696E0000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4A41564100000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x384 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x384 JUMP JUMPDEST POP POP POP PUSH3 0xD2 PUSH3 0xC6 PUSH3 0x12A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x132 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x124 PUSH20 0x6C99A69537AA5F3A1E2D846B8B85573D46D45E45 PUSH3 0xFB PUSH3 0x1F8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0xA PUSH3 0x109 SWAP2 SWAP1 PUSH3 0x574 JUMP JUMPDEST PUSH2 0x7C7 PUSH3 0x118 SWAP2 SWAP1 PUSH3 0x6B1 JUMP JUMPDEST PUSH3 0x201 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x7F3 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x274 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x26B SWAP1 PUSH3 0x46C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x288 PUSH1 0x0 DUP4 DUP4 PUSH3 0x37A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x29C SWAP2 SWAP1 PUSH3 0x4BC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x2F3 SWAP2 SWAP1 PUSH3 0x4BC JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH3 0x35A SWAP2 SWAP1 PUSH3 0x48E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH3 0x376 PUSH1 0x0 DUP4 DUP4 PUSH3 0x37F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x392 SWAP1 PUSH3 0x729 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x3B6 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x402 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x3D1 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x402 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x402 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x401 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x3E4 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x411 SWAP2 SWAP1 PUSH3 0x415 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x430 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x416 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x443 PUSH1 0x1F DUP4 PUSH3 0x4AB JUMP JUMPDEST SWAP2 POP PUSH3 0x450 DUP3 PUSH3 0x7CA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x466 DUP2 PUSH3 0x712 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x487 DUP2 PUSH3 0x434 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x4A5 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x45B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4C9 DUP3 PUSH3 0x712 JUMP JUMPDEST SWAP2 POP PUSH3 0x4D6 DUP4 PUSH3 0x712 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x50E JUMPI PUSH3 0x50D PUSH3 0x75F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 SWAP2 POP DUP4 SWAP1 POP JUMPDEST PUSH1 0x1 DUP6 GT ISZERO PUSH3 0x56B JUMPI DUP1 DUP7 DIV DUP2 GT ISZERO PUSH3 0x543 JUMPI PUSH3 0x542 PUSH3 0x75F JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP6 AND ISZERO PUSH3 0x553 JUMPI DUP1 DUP3 MUL SWAP2 POP JUMPDEST DUP1 DUP2 MUL SWAP1 POP PUSH3 0x563 DUP6 PUSH3 0x7BD JUMP JUMPDEST SWAP5 POP PUSH3 0x523 JUMP JUMPDEST SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x581 DUP3 PUSH3 0x712 JUMP JUMPDEST SWAP2 POP PUSH3 0x58E DUP4 PUSH3 0x71C JUMP JUMPDEST SWAP3 POP PUSH3 0x5BD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP5 DUP5 PUSH3 0x5C5 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH3 0x5D7 JUMPI PUSH1 0x1 SWAP1 POP PUSH3 0x6AA JUMP JUMPDEST DUP2 PUSH3 0x5E7 JUMPI PUSH1 0x0 SWAP1 POP PUSH3 0x6AA JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH3 0x600 JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x60B JUMPI PUSH3 0x641 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH3 0x6AA JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH3 0x620 JUMPI PUSH3 0x61F PUSH3 0x75F JUMP JUMPDEST JUMPDEST DUP4 PUSH1 0x2 EXP SWAP2 POP DUP5 DUP3 GT ISZERO PUSH3 0x63A JUMPI PUSH3 0x639 PUSH3 0x75F JUMP JUMPDEST JUMPDEST POP PUSH3 0x6AA JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH3 0x67B JUMPI DUP3 DUP3 EXP SWAP1 POP DUP4 DUP2 GT ISZERO PUSH3 0x675 JUMPI PUSH3 0x674 PUSH3 0x75F JUMP JUMPDEST JUMPDEST PUSH3 0x6AA JUMP JUMPDEST PUSH3 0x68A DUP5 DUP5 DUP5 PUSH1 0x1 PUSH3 0x519 JUMP JUMPDEST SWAP3 POP SWAP1 POP DUP2 DUP5 DIV DUP2 GT ISZERO PUSH3 0x6A4 JUMPI PUSH3 0x6A3 PUSH3 0x75F JUMP JUMPDEST JUMPDEST DUP2 DUP2 MUL SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x6BE DUP3 PUSH3 0x712 JUMP JUMPDEST SWAP2 POP PUSH3 0x6CB DUP4 PUSH3 0x712 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x707 JUMPI PUSH3 0x706 PUSH3 0x75F JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x742 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x759 JUMPI PUSH3 0x758 PUSH3 0x78E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x1 SHR SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x1A44 DUP1 PUSH3 0x803 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 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x276 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2D6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x306 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x258 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x196 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1E4 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x148 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x102 PUSH2 0x322 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x13DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x132 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12D SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x3B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13F SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x150 PUSH2 0x3D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15D SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x180 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x1142 JUMP JUMPDEST PUSH2 0x3DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19E PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1AB SWAP2 SWAP1 PUSH2 0x155B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C9 SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x4DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F9 SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x589 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x215 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH2 0x613 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x238 PUSH2 0x65B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x242 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24F SWAP2 SWAP1 PUSH2 0x13A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH2 0x70D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x13DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x290 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28B SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29D SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x88A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2EB SWAP2 SWAP1 PUSH2 0x1102 JUMP JUMPDEST PUSH2 0x8A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FD SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x320 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x31B SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH2 0x92F JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x331 SWAP1 PUSH2 0x1670 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 0x35D SWAP1 PUSH2 0x1670 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3AA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3AA 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 0x38D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C8 PUSH2 0x3C1 PUSH2 0xA27 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xA2F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E9 DUP5 DUP5 DUP5 PUSH2 0xBFA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x434 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x4B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4AB SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4C8 DUP6 PUSH2 0x4C0 PUSH2 0xA27 JUMP JUMPDEST DUP6 DUP5 SUB PUSH2 0xA2F 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 PUSH2 0x57F PUSH2 0x4EA PUSH2 0xA27 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x4F8 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x57A SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST PUSH2 0xA2F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x591 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5AF PUSH2 0x6E3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x605 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5FC SWAP1 PUSH2 0x14A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x60F DUP3 DUP3 PUSH2 0xE7B JUMP JUMPDEST 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 PUSH2 0x663 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x681 PUSH2 0x6E3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6CE SWAP1 PUSH2 0x14A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6E1 PUSH1 0x0 PUSH2 0xFDB JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x71C SWAP1 PUSH2 0x1670 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 0x748 SWAP1 PUSH2 0x1670 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x795 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x76A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x795 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 0x778 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x7AE PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x86B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x862 SWAP1 PUSH2 0x1500 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x87F PUSH2 0x876 PUSH2 0xA27 JUMP JUMPDEST DUP6 DUP6 DUP5 SUB PUSH2 0xA2F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x89E PUSH2 0x897 PUSH2 0xA27 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xBFA JUMP JUMPDEST PUSH1 0x1 SWAP1 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 PUSH2 0x937 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x955 PUSH2 0x6E3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9AB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9A2 SWAP1 PUSH2 0x14A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA1B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA12 SWAP1 PUSH2 0x1420 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA24 DUP2 PUSH2 0xFDB JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA9F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA96 SWAP1 PUSH2 0x14E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB0F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB06 SWAP1 PUSH2 0x1440 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 0xBED SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC6A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC61 SWAP1 PUSH2 0x14C0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCDA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCD1 SWAP1 PUSH2 0x1400 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xCE5 DUP4 DUP4 DUP4 PUSH2 0x10A1 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 0xD6B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD62 SWAP1 PUSH2 0x1460 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xDFE SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE62 SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE75 DUP5 DUP5 DUP5 PUSH2 0x10A6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xEEB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEE2 SWAP1 PUSH2 0x1520 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xEF7 PUSH1 0x0 DUP4 DUP4 PUSH2 0x10A1 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF09 SWAP2 SWAP1 PUSH2 0x1592 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 PUSH2 0xF5E SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xFC3 SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xFD7 PUSH1 0x0 DUP4 DUP4 PUSH2 0x10A6 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10BA DUP2 PUSH2 0x19E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10CF DUP2 PUSH2 0x19F7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10EB JUMPI PUSH2 0x10EA PUSH2 0x1700 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x10F9 DUP5 DUP3 DUP6 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1119 JUMPI PUSH2 0x1118 PUSH2 0x1700 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1127 DUP6 DUP3 DUP7 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1138 DUP6 DUP3 DUP7 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x115B JUMPI PUSH2 0x115A PUSH2 0x1700 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1169 DUP7 DUP3 DUP8 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x117A DUP7 DUP3 DUP8 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x118B DUP7 DUP3 DUP8 ADD PUSH2 0x10C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11AC JUMPI PUSH2 0x11AB PUSH2 0x1700 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11BA DUP6 DUP3 DUP7 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x11CB DUP6 DUP3 DUP7 ADD PUSH2 0x10C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x11DE DUP2 PUSH2 0x15E8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x11ED DUP2 PUSH2 0x15FA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11FE DUP3 PUSH2 0x1576 JUMP JUMPDEST PUSH2 0x1208 DUP2 DUP6 PUSH2 0x1581 JUMP JUMPDEST SWAP4 POP PUSH2 0x1218 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x163D JUMP JUMPDEST PUSH2 0x1221 DUP2 PUSH2 0x1705 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1239 PUSH1 0x23 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1244 DUP3 PUSH2 0x1716 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x125C PUSH1 0x26 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1267 DUP3 PUSH2 0x1765 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x127F PUSH1 0x22 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x128A DUP3 PUSH2 0x17B4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12A2 PUSH1 0x26 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x12AD DUP3 PUSH2 0x1803 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12C5 PUSH1 0x28 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x12D0 DUP3 PUSH2 0x1852 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12E8 PUSH1 0x20 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x12F3 DUP3 PUSH2 0x18A1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x130B PUSH1 0x25 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1316 DUP3 PUSH2 0x18CA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x132E PUSH1 0x24 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1339 DUP3 PUSH2 0x1919 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1351 PUSH1 0x25 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x135C DUP3 PUSH2 0x1968 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1374 PUSH1 0x1F DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x137F DUP3 PUSH2 0x19B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1393 DUP2 PUSH2 0x1626 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x13A2 DUP2 PUSH2 0x1630 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x13BD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11D5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x13D8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x13F8 DUP2 DUP5 PUSH2 0x11F3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1419 DUP2 PUSH2 0x122C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1439 DUP2 PUSH2 0x124F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1459 DUP2 PUSH2 0x1272 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1479 DUP2 PUSH2 0x1295 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1499 DUP2 PUSH2 0x12B8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14B9 DUP2 PUSH2 0x12DB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14D9 DUP2 PUSH2 0x12FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14F9 DUP2 PUSH2 0x1321 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1519 DUP2 PUSH2 0x1344 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1539 DUP2 PUSH2 0x1367 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1555 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x138A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1570 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1399 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x159D DUP3 PUSH2 0x1626 JUMP JUMPDEST SWAP2 POP PUSH2 0x15A8 DUP4 PUSH2 0x1626 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x15DD JUMPI PUSH2 0x15DC PUSH2 0x16A2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15F3 DUP3 PUSH2 0x1606 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x165B JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1640 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x166A JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1688 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x169C JUMPI PUSH2 0x169B PUSH2 0x16D1 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x19E9 DUP2 PUSH2 0x15E8 JUMP JUMPDEST DUP2 EQ PUSH2 0x19F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1A00 DUP2 PUSH2 0x1626 JUMP JUMPDEST DUP2 EQ PUSH2 0x1A0B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXP CALLDATALOAD 0xAA SWAP9 SLT ORIGIN ISZERO 0xBE MSTORE8 SDIV 0xC8 0xAE 0xD8 0xF9 0xB4 0xC6 PUSH7 0x5F021DFA269627 0xB7 SWAP9 PUSH2 0xFD79 SWAP5 0xB1 DUP13 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "167:274:5:-:0;;;208:132;;;;;;;;;;1963:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2037:5;2029;:13;;;;;;;;;;;;:::i;:::-;;2062:7;2052;:17;;;;;;;;;;;;:::i;:::-;;1963:113;;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;259:74:5::1;265:42;322:10;:8;;;:10;;:::i;:::-;316:2;:16;;;;:::i;:::-;309:4;:23;;;;:::i;:::-;259:5;;;:74;;:::i;:::-;167:274:::0;;640:96:4;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;3078:91:1:-;3136:5;3160:2;3153:9;;3078:91;:::o;8311:389::-;8413:1;8394:21;;:7;:21;;;;8386:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8462:49;8491:1;8495:7;8504:6;8462:20;;;:49;;:::i;:::-;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;;;;;8576:6;8554:9;:18;8564:7;8554:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8618:7;8597:37;;8614:1;8597:37;;;8627:6;8597:37;;;;;;:::i;:::-;;;;;;;;8645:48;8673:1;8677:7;8686:6;8645:19;;;:48;;:::i;:::-;8311:389;;:::o;10973:121::-;;;;:::o;11682:120::-;;;;:::o;167:274:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:366:6:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:118::-;466:24;484:5;466:24;:::i;:::-;461:3;454:37;379:118;;:::o;503:419::-;669:4;707:2;696:9;692:18;684:26;;756:9;750:4;746:20;742:1;731:9;727:17;720:47;784:131;910:4;784:131;:::i;:::-;776:139;;503:419;;;:::o;928:222::-;1021:4;1059:2;1048:9;1044:18;1036:26;;1072:71;1140:1;1129:9;1125:17;1116:6;1072:71;:::i;:::-;928:222;;;;:::o;1156:169::-;1240:11;1274:6;1269:3;1262:19;1314:4;1309:3;1305:14;1290:29;;1156:169;;;;:::o;1331:305::-;1371:3;1390:20;1408:1;1390:20;:::i;:::-;1385:25;;1424:20;1442:1;1424:20;:::i;:::-;1419:25;;1578:1;1510:66;1506:74;1503:1;1500:81;1497:107;;;1584:18;;:::i;:::-;1497:107;1628:1;1625;1621:9;1614:16;;1331:305;;;;:::o;1642:848::-;1703:5;1710:4;1734:6;1725:15;;1758:5;1749:14;;1772:712;1793:1;1783:8;1780:15;1772:712;;;1888:4;1883:3;1879:14;1873:4;1870:24;1867:50;;;1897:18;;:::i;:::-;1867:50;1947:1;1937:8;1933:16;1930:451;;;2362:4;2355:5;2351:16;2342:25;;1930:451;2412:4;2406;2402:15;2394:23;;2442:32;2465:8;2442:32;:::i;:::-;2430:44;;1772:712;;;1642:848;;;;;;;:::o;2496:281::-;2554:5;2578:23;2596:4;2578:23;:::i;:::-;2570:31;;2622:25;2638:8;2622:25;:::i;:::-;2610:37;;2666:104;2703:66;2693:8;2687:4;2666:104;:::i;:::-;2657:113;;2496:281;;;;:::o;2783:1073::-;2837:5;3028:8;3018:40;;3049:1;3040:10;;3051:5;;3018:40;3077:4;3067:36;;3094:1;3085:10;;3096:5;;3067:36;3163:4;3211:1;3206:27;;;;3247:1;3242:191;;;;3156:277;;3206:27;3224:1;3215:10;;3226:5;;;3242:191;3287:3;3277:8;3274:17;3271:43;;;3294:18;;:::i;:::-;3271:43;3343:8;3340:1;3336:16;3327:25;;3378:3;3371:5;3368:14;3365:40;;;3385:18;;:::i;:::-;3365:40;3418:5;;;3156:277;;3542:2;3532:8;3529:16;3523:3;3517:4;3514:13;3510:36;3492:2;3482:8;3479:16;3474:2;3468:4;3465:12;3461:35;3445:111;3442:246;;;3598:8;3592:4;3588:19;3579:28;;3633:3;3626:5;3623:14;3620:40;;;3640:18;;:::i;:::-;3620:40;3673:5;;3442:246;3713:42;3751:3;3741:8;3735:4;3732:1;3713:42;:::i;:::-;3698:57;;;;3787:4;3782:3;3778:14;3771:5;3768:25;3765:51;;;3796:18;;:::i;:::-;3765:51;3845:4;3838:5;3834:16;3825:25;;2783:1073;;;;;;:::o;3862:348::-;3902:7;3925:20;3943:1;3925:20;:::i;:::-;3920:25;;3959:20;3977:1;3959:20;:::i;:::-;3954:25;;4147:1;4079:66;4075:74;4072:1;4069:81;4064:1;4057:9;4050:17;4046:105;4043:131;;;4154:18;;:::i;:::-;4043:131;4202:1;4199;4195:9;4184:20;;3862:348;;;;:::o;4216:77::-;4253:7;4282:5;4271:16;;4216:77;;;:::o;4299:86::-;4334:7;4374:4;4367:5;4363:16;4352:27;;4299:86;;;:::o;4391:320::-;4435:6;4472:1;4466:4;4462:12;4452:22;;4519:1;4513:4;4509:12;4540:18;4530:81;;4596:4;4588:6;4584:17;4574:27;;4530:81;4658:2;4650:6;4647:14;4627:18;4624:38;4621:84;;;4677:18;;:::i;:::-;4621:84;4442:269;4391:320;;;:::o;4717:180::-;4765:77;4762:1;4755:88;4862:4;4859:1;4852:15;4886:4;4883:1;4876:15;4903:180;4951:77;4948:1;4941:88;5048:4;5045:1;5038:15;5072:4;5069:1;5062:15;5089:102;5131:8;5178:5;5175:1;5171:13;5150:34;;5089:102;;;:::o;5197:181::-;5337:33;5333:1;5325:6;5321:14;5314:57;5197:181;:::o;167:274:5:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_649": {
"entryPoint": 4262,
"id": 649,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_627": {
"entryPoint": 2607,
"id": 627,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_638": {
"entryPoint": 4257,
"id": 638,
"parameterSlots": 3,
"returnSlots": 0
},
"@_mint_510": {
"entryPoint": 3707,
"id": 510,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_765": {
"entryPoint": 2599,
"id": 765,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 4059,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_454": {
"entryPoint": 3066,
"id": 454,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_242": {
"entryPoint": 2216,
"id": 242,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_263": {
"entryPoint": 948,
"id": 263,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_203": {
"entryPoint": 1555,
"id": 203,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_179": {
"entryPoint": 1236,
"id": 179,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_377": {
"entryPoint": 1951,
"id": 377,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_338": {
"entryPoint": 1245,
"id": 338,
"parameterSlots": 2,
"returnSlots": 1
},
"@mint_816": {
"entryPoint": 1417,
"id": 816,
"parameterSlots": 2,
"returnSlots": 0
},
"@name_159": {
"entryPoint": 802,
"id": 159,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_32": {
"entryPoint": 1763,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 1627,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@symbol_169": {
"entryPoint": 1805,
"id": 169,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_189": {
"entryPoint": 978,
"id": 189,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_311": {
"entryPoint": 988,
"id": 311,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_83": {
"entryPoint": 2351,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_224": {
"entryPoint": 2186,
"id": 224,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 4267,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 4288,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 4309,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 4354,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 4418,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 4501,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 4565,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 4580,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4595,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4652,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4687,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4722,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4757,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4792,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4827,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4862,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4897,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4932,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4967,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 5002,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 5017,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 5032,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 5059,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5086,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5120,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5152,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5184,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5216,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5248,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5280,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5312,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5344,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5376,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 5440,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 5467,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 5494,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 5505,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 5522,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 5608,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 5626,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 5638,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 5670,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 5680,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 5693,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 5744,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 5794,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 5841,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 5888,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 5893,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 5910,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 5989,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 6068,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 6147,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330": {
"entryPoint": 6226,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 6305,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 6346,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 6425,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 6504,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e": {
"entryPoint": 6583,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 6624,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 6647,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:17258:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:6"
},
"nodeType": "YulFunctionCall",
"src": "78:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:6"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:6"
},
"nodeType": "YulFunctionCall",
"src": "107:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:6"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:6",
"type": ""
}
],
"src": "7:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "204:87:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "214:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "236:6:6"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "223:12:6"
},
"nodeType": "YulFunctionCall",
"src": "223:20:6"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "214:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "279:5:6"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "252:26:6"
},
"nodeType": "YulFunctionCall",
"src": "252:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "252:33:6"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "182:6:6",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "190:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "198:5:6",
"type": ""
}
],
"src": "152:139:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "363:263:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "409:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "411:77:6"
},
"nodeType": "YulFunctionCall",
"src": "411:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "411:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "384:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "393:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "380:3:6"
},
"nodeType": "YulFunctionCall",
"src": "380:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "405:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "376:3:6"
},
"nodeType": "YulFunctionCall",
"src": "376:32:6"
},
"nodeType": "YulIf",
"src": "373:119:6"
},
{
"nodeType": "YulBlock",
"src": "502:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "517:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "531:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "521:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "546:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "581:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "592:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "577:3:6"
},
"nodeType": "YulFunctionCall",
"src": "577:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "601:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "556:20:6"
},
"nodeType": "YulFunctionCall",
"src": "556:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "546:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "333:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "344:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "356:6:6",
"type": ""
}
],
"src": "297:329:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "715:391:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "761:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "763:77:6"
},
"nodeType": "YulFunctionCall",
"src": "763:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "763:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "736:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "745:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "732:3:6"
},
"nodeType": "YulFunctionCall",
"src": "732:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "757:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "728:3:6"
},
"nodeType": "YulFunctionCall",
"src": "728:32:6"
},
"nodeType": "YulIf",
"src": "725:119:6"
},
{
"nodeType": "YulBlock",
"src": "854:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "869:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "883:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "873:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "898:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "933:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "944:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "929:3:6"
},
"nodeType": "YulFunctionCall",
"src": "929:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "953:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "908:20:6"
},
"nodeType": "YulFunctionCall",
"src": "908:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "898:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "981:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "996:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1010:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1000:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1026:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1061:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1072:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1057:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1057:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1081:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1036:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1036:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1026:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "677:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "688:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "700:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "708:6:6",
"type": ""
}
],
"src": "632:474:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1212:519:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1258:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1260:77:6"
},
"nodeType": "YulFunctionCall",
"src": "1260:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "1260:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1233:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1242:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1229:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1229:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1254:2:6",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1225:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1225:32:6"
},
"nodeType": "YulIf",
"src": "1222:119:6"
},
{
"nodeType": "YulBlock",
"src": "1351:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1366:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1380:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1370:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1395:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1430:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1441:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1426:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1426:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1450:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1405:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1405:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1395:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1478:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1493:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1507:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1497:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1523:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1558:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1569:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1554:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1554:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1578:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1533:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1533:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1523:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1606:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1621:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1635:2:6",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1625:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1651:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1686:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1697:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1682:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1682:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1706:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1661:20:6"
},
"nodeType": "YulFunctionCall",
"src": "1661:53:6"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1651:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1166:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1177:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1189:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1197:6:6",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1205:6:6",
"type": ""
}
],
"src": "1112:619:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1820:391:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1866:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1868:77:6"
},
"nodeType": "YulFunctionCall",
"src": "1868:79:6"
},
"nodeType": "YulExpressionStatement",
"src": "1868:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1841:7:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1850:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1837:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1837:23:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1862:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1833:3:6"
},
"nodeType": "YulFunctionCall",
"src": "1833:32:6"
},
"nodeType": "YulIf",
"src": "1830:119:6"
},
{
"nodeType": "YulBlock",
"src": "1959:117:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1974:15:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1988:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1978:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2003:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2038:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2049:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2034:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2034:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2058:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2013:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2013:53:6"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2003:6:6"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2086:118:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2101:16:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2115:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2105:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2131:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2166:9:6"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2177:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2162:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2162:22:6"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2186:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2141:20:6"
},
"nodeType": "YulFunctionCall",
"src": "2141:53:6"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2131:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1782:9:6",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1793:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1805:6:6",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1813:6:6",
"type": ""
}
],
"src": "1737:474:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2282:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2299:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2322:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2304:17:6"
},
"nodeType": "YulFunctionCall",
"src": "2304:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2292:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2292:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "2292:37:6"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2270:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2277:3:6",
"type": ""
}
],
"src": "2217:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2400:50:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2417:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2437:5:6"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2422:14:6"
},
"nodeType": "YulFunctionCall",
"src": "2422:21:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2410:6:6"
},
"nodeType": "YulFunctionCall",
"src": "2410:34:6"
},
"nodeType": "YulExpressionStatement",
"src": "2410:34:6"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2388:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2395:3:6",
"type": ""
}
],
"src": "2341:109:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2548:272:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2558:53:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2605:5:6"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2572:32:6"
},
"nodeType": "YulFunctionCall",
"src": "2572:39:6"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2562:6:6",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2620:78:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2686:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2691:6:6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2627:58:6"
},
"nodeType": "YulFunctionCall",
"src": "2627:71:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2620:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2733:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2729:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2729:16:6"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2747:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2752:6:6"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2707:21:6"
},
"nodeType": "YulFunctionCall",
"src": "2707:52:6"
},
"nodeType": "YulExpressionStatement",
"src": "2707:52:6"
},
{
"nodeType": "YulAssignment",
"src": "2768:46:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2779:3:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2806:6:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2784:21:6"
},
"nodeType": "YulFunctionCall",
"src": "2784:29:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2775:3:6"
},
"nodeType": "YulFunctionCall",
"src": "2775:39:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2768:3:6"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2529:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2536:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2544:3:6",
"type": ""
}
],
"src": "2456:364:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2972:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2982:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3048:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3053:2:6",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2989:58:6"
},
"nodeType": "YulFunctionCall",
"src": "2989:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2982:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3154:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "3065:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3065:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3065:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3167:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3178:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3183:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3174:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3174:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3167:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2960:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2968:3:6",
"type": ""
}
],
"src": "2826:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3344:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3354:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3420:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3425:2:6",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3361:58:6"
},
"nodeType": "YulFunctionCall",
"src": "3361:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3354:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3526:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "3437:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3437:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3437:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3539:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3550:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3555:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3546:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3546:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3539:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3332:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3340:3:6",
"type": ""
}
],
"src": "3198:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3716:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3726:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3792:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3797:2:6",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3733:58:6"
},
"nodeType": "YulFunctionCall",
"src": "3733:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3726:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3898:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "3809:88:6"
},
"nodeType": "YulFunctionCall",
"src": "3809:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "3809:93:6"
},
{
"nodeType": "YulAssignment",
"src": "3911:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3922:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3927:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3918:3:6"
},
"nodeType": "YulFunctionCall",
"src": "3918:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3911:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3704:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3712:3:6",
"type": ""
}
],
"src": "3570:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4088:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4098:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4164:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:2:6",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4105:58:6"
},
"nodeType": "YulFunctionCall",
"src": "4105:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4098:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4270:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "4181:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4181:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4181:93:6"
},
{
"nodeType": "YulAssignment",
"src": "4283:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4294:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4299:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4290:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4290:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4283:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4076:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4084:3:6",
"type": ""
}
],
"src": "3942:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4460:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4470:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4536:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4541:2:6",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4477:58:6"
},
"nodeType": "YulFunctionCall",
"src": "4477:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4470:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4642:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulIdentifier",
"src": "4553:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4553:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4553:93:6"
},
{
"nodeType": "YulAssignment",
"src": "4655:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4666:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4671:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4662:3:6"
},
"nodeType": "YulFunctionCall",
"src": "4662:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4655:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4448:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4456:3:6",
"type": ""
}
],
"src": "4314:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4832:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4842:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4908:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4913:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4849:58:6"
},
"nodeType": "YulFunctionCall",
"src": "4849:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4842:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5014:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "4925:88:6"
},
"nodeType": "YulFunctionCall",
"src": "4925:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "4925:93:6"
},
{
"nodeType": "YulAssignment",
"src": "5027:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5038:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5043:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5034:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5034:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5027:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4820:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4828:3:6",
"type": ""
}
],
"src": "4686:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5204:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5214:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5280:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5285:2:6",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5221:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5221:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5214:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5386:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "5297:88:6"
},
"nodeType": "YulFunctionCall",
"src": "5297:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "5297:93:6"
},
{
"nodeType": "YulAssignment",
"src": "5399:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5410:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5415:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5406:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5406:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5399:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5192:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5200:3:6",
"type": ""
}
],
"src": "5058:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5576:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5586:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5652:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5657:2:6",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5593:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5593:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5586:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5758:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "5669:88:6"
},
"nodeType": "YulFunctionCall",
"src": "5669:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "5669:93:6"
},
{
"nodeType": "YulAssignment",
"src": "5771:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5782:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5787:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5778:3:6"
},
"nodeType": "YulFunctionCall",
"src": "5778:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5771:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5564:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5572:3:6",
"type": ""
}
],
"src": "5430:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5948:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5958:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6024:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6029:2:6",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5965:58:6"
},
"nodeType": "YulFunctionCall",
"src": "5965:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5958:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6130:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "6041:88:6"
},
"nodeType": "YulFunctionCall",
"src": "6041:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "6041:93:6"
},
{
"nodeType": "YulAssignment",
"src": "6143:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6154:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6159:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6150:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6150:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6143:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5936:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5944:3:6",
"type": ""
}
],
"src": "5802:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6320:220:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6330:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6396:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6401:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6337:58:6"
},
"nodeType": "YulFunctionCall",
"src": "6337:67:6"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6330:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6502:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulIdentifier",
"src": "6413:88:6"
},
"nodeType": "YulFunctionCall",
"src": "6413:93:6"
},
"nodeType": "YulExpressionStatement",
"src": "6413:93:6"
},
{
"nodeType": "YulAssignment",
"src": "6515:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6526:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6531:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6522:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6522:12:6"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6515:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6308:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6316:3:6",
"type": ""
}
],
"src": "6174:366:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6611:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6628:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6651:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6633:17:6"
},
"nodeType": "YulFunctionCall",
"src": "6633:24:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6621:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6621:37:6"
},
"nodeType": "YulExpressionStatement",
"src": "6621:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6599:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6606:3:6",
"type": ""
}
],
"src": "6546:118:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6731:51:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6748:3:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6769:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "6753:15:6"
},
"nodeType": "YulFunctionCall",
"src": "6753:22:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6741:6:6"
},
"nodeType": "YulFunctionCall",
"src": "6741:35:6"
},
"nodeType": "YulExpressionStatement",
"src": "6741:35:6"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6719:5:6",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6726:3:6",
"type": ""
}
],
"src": "6670:112:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6886:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6896:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6908:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6919:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6904:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6904:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6896:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6976:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6989:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7000:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6985:3:6"
},
"nodeType": "YulFunctionCall",
"src": "6985:17:6"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "6932:43:6"
},
"nodeType": "YulFunctionCall",
"src": "6932:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "6932:71:6"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6858:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6870:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6881:4:6",
"type": ""
}
],
"src": "6788:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7108:118:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7118:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7130:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7141:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7126:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7126:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7118:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7192:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7205:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7216:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7201:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7201:17:6"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "7154:37:6"
},
"nodeType": "YulFunctionCall",
"src": "7154:65:6"
},
"nodeType": "YulExpressionStatement",
"src": "7154:65:6"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7080:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7092:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7103:4:6",
"type": ""
}
],
"src": "7016:210:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7350:195:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7360:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7372:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7383:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7368:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7368:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7360:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7407:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7418:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7403:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7403:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7426:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7432:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7422:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7422:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7396:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7396:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "7396:47:6"
},
{
"nodeType": "YulAssignment",
"src": "7452:86:6",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7524:6:6"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7533:4:6"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7460:63:6"
},
"nodeType": "YulFunctionCall",
"src": "7460:78:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7452:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7322:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7334:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7345:4:6",
"type": ""
}
],
"src": "7232:313:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7722:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7732:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7744:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7755:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7740:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7740:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7732:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7779:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7790:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7775:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7775:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7798:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7804:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7794:3:6"
},
"nodeType": "YulFunctionCall",
"src": "7794:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7768:6:6"
},
"nodeType": "YulFunctionCall",
"src": "7768:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "7768:47:6"
},
{
"nodeType": "YulAssignment",
"src": "7824:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7958:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7832:124:6"
},
"nodeType": "YulFunctionCall",
"src": "7832:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7824:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7702:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7717:4:6",
"type": ""
}
],
"src": "7551:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8147:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8157:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8169:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8180:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8165:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8165:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8157:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8204:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8215:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8200:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8200:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8223:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8229:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8219:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8219:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8193:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8193:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "8193:47:6"
},
{
"nodeType": "YulAssignment",
"src": "8249:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8383:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8257:124:6"
},
"nodeType": "YulFunctionCall",
"src": "8257:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8249:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8127:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8142:4:6",
"type": ""
}
],
"src": "7976:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8572:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8582:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8594:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8605:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8590:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8590:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8582:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8629:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8640:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8625:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8625:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8648:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8654:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8644:3:6"
},
"nodeType": "YulFunctionCall",
"src": "8644:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8618:6:6"
},
"nodeType": "YulFunctionCall",
"src": "8618:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "8618:47:6"
},
{
"nodeType": "YulAssignment",
"src": "8674:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8808:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8682:124:6"
},
"nodeType": "YulFunctionCall",
"src": "8682:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8674:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8552:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8567:4:6",
"type": ""
}
],
"src": "8401:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8997:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9007:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9019:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9030:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9015:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9015:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9007:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9054:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9065:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9050:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9050:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9073:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9079:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9069:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9069:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9043:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9043:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9043:47:6"
},
{
"nodeType": "YulAssignment",
"src": "9099:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9233:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9107:124:6"
},
"nodeType": "YulFunctionCall",
"src": "9107:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9099:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8977:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8992:4:6",
"type": ""
}
],
"src": "8826:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9422:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9432:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9444:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9455:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9440:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9440:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9432:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9479:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9490:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9475:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9475:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9498:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9504:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9494:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9494:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9468:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9468:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9468:47:6"
},
{
"nodeType": "YulAssignment",
"src": "9524:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9658:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9532:124:6"
},
"nodeType": "YulFunctionCall",
"src": "9532:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9524:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9402:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9417:4:6",
"type": ""
}
],
"src": "9251:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9847:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9857:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9869:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9880:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9865:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9865:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9857:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9904:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9915:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9900:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9900:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9923:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9929:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9919:3:6"
},
"nodeType": "YulFunctionCall",
"src": "9919:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9893:6:6"
},
"nodeType": "YulFunctionCall",
"src": "9893:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "9893:47:6"
},
{
"nodeType": "YulAssignment",
"src": "9949:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10083:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9957:124:6"
},
"nodeType": "YulFunctionCall",
"src": "9957:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9949:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9827:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9842:4:6",
"type": ""
}
],
"src": "9676:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10272:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10282:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10294:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10305:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10290:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10290:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10282:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10329:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10340:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10325:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10325:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10348:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10354:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10344:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10344:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10318:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10318:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "10318:47:6"
},
{
"nodeType": "YulAssignment",
"src": "10374:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10508:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10382:124:6"
},
"nodeType": "YulFunctionCall",
"src": "10382:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10374:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10252:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10267:4:6",
"type": ""
}
],
"src": "10101:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10697:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10707:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10719:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10730:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10715:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10715:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10707:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10754:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10765:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10750:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10750:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10773:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10779:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10769:3:6"
},
"nodeType": "YulFunctionCall",
"src": "10769:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10743:6:6"
},
"nodeType": "YulFunctionCall",
"src": "10743:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "10743:47:6"
},
{
"nodeType": "YulAssignment",
"src": "10799:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10933:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10807:124:6"
},
"nodeType": "YulFunctionCall",
"src": "10807:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10799:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10677:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10692:4:6",
"type": ""
}
],
"src": "10526:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11122:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11132:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11144:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11155:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11140:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11140:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11132:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11179:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11190:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11175:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11175:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11198:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11204:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11194:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11194:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11168:6:6"
},
"nodeType": "YulFunctionCall",
"src": "11168:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "11168:47:6"
},
{
"nodeType": "YulAssignment",
"src": "11224:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11358:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11232:124:6"
},
"nodeType": "YulFunctionCall",
"src": "11232:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11224:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11102:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11117:4:6",
"type": ""
}
],
"src": "10951:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11547:248:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11557:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11569:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11580:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11565:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11565:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11557:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11604:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11615:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11600:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11600:17:6"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11623:4:6"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11629:9:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11619:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11619:20:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11593:6:6"
},
"nodeType": "YulFunctionCall",
"src": "11593:47:6"
},
"nodeType": "YulExpressionStatement",
"src": "11593:47:6"
},
{
"nodeType": "YulAssignment",
"src": "11649:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11783:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11657:124:6"
},
"nodeType": "YulFunctionCall",
"src": "11657:131:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11649:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11527:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11542:4:6",
"type": ""
}
],
"src": "11376:419:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11899:124:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11909:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11921:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11932:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11917:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11917:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11909:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11989:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12002:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12013:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11998:3:6"
},
"nodeType": "YulFunctionCall",
"src": "11998:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "11945:43:6"
},
"nodeType": "YulFunctionCall",
"src": "11945:71:6"
},
"nodeType": "YulExpressionStatement",
"src": "11945:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11871:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11883:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11894:4:6",
"type": ""
}
],
"src": "11801:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12123:120:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12133:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12145:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12156:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12141:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12141:18:6"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12133:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12209:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12222:9:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12233:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12218:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12218:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "12169:39:6"
},
"nodeType": "YulFunctionCall",
"src": "12169:67:6"
},
"nodeType": "YulExpressionStatement",
"src": "12169:67:6"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12095:9:6",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12107:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12118:4:6",
"type": ""
}
],
"src": "12029:214:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12289:35:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12299:19:6",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12315:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "12309:5:6"
},
"nodeType": "YulFunctionCall",
"src": "12309:9:6"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12299:6:6"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12282:6:6",
"type": ""
}
],
"src": "12249:75:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12389:40:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12400:22:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12416:5:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "12410:5:6"
},
"nodeType": "YulFunctionCall",
"src": "12410:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12400:6:6"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12372:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12382:6:6",
"type": ""
}
],
"src": "12330:99:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12531:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12548:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12553:6:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12541:6:6"
},
"nodeType": "YulFunctionCall",
"src": "12541:19:6"
},
"nodeType": "YulExpressionStatement",
"src": "12541:19:6"
},
{
"nodeType": "YulAssignment",
"src": "12569:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12588:3:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12593:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12584:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12584:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "12569:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12503:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12508:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "12519:11:6",
"type": ""
}
],
"src": "12435:169:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12654:261:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12664:25:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12687:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12669:17:6"
},
"nodeType": "YulFunctionCall",
"src": "12669:20:6"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12664:1:6"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12698:25:6",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12721:1:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12703:17:6"
},
"nodeType": "YulFunctionCall",
"src": "12703:20:6"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12698:1:6"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12861:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "12863:16:6"
},
"nodeType": "YulFunctionCall",
"src": "12863:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "12863:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12782:1:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12789:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12857:1:6"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12785:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12785:74:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "12779:2:6"
},
"nodeType": "YulFunctionCall",
"src": "12779:81:6"
},
"nodeType": "YulIf",
"src": "12776:107:6"
},
{
"nodeType": "YulAssignment",
"src": "12893:16:6",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "12904:1:6"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "12907:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12900:3:6"
},
"nodeType": "YulFunctionCall",
"src": "12900:9:6"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "12893:3:6"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "12641:1:6",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "12644:1:6",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "12650:3:6",
"type": ""
}
],
"src": "12610:305:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12966:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12976:35:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13005:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "12987:17:6"
},
"nodeType": "YulFunctionCall",
"src": "12987:24:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "12976:7:6"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12948:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "12958:7:6",
"type": ""
}
],
"src": "12921:96:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13065:48:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13075:32:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13100:5:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "13093:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13093:13:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "13086:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13086:21:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13075:7:6"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13047:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13057:7:6",
"type": ""
}
],
"src": "13023:90:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13164:81:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13174:65:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13189:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13196:42:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13185:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13185:54:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13174:7:6"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13146:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13156:7:6",
"type": ""
}
],
"src": "13119:126:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13296:32:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13306:16:6",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "13317:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13306:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13278:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13288:7:6",
"type": ""
}
],
"src": "13251:77:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13377:43:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13387:27:6",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13402:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13409:4:6",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13398:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13398:16:6"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "13387:7:6"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13359:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "13369:7:6",
"type": ""
}
],
"src": "13334:86:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13475:258:6",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "13485:10:6",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "13494:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "13489:1:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13554:63:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "13579:3:6"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13584:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13575:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13575:11:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "13598:3:6"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13603:1:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13594:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13594:11:6"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "13588:5:6"
},
"nodeType": "YulFunctionCall",
"src": "13588:18:6"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13568:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13568:39:6"
},
"nodeType": "YulExpressionStatement",
"src": "13568:39:6"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13515:1:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13518:6:6"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "13512:2:6"
},
"nodeType": "YulFunctionCall",
"src": "13512:13:6"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "13526:19:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13528:15:6",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13537:1:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13540:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13533:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13533:10:6"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13528:1:6"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "13508:3:6",
"statements": []
},
"src": "13504:113:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13651:76:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "13701:3:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13706:6:6"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13697:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13697:16:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13715:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13690:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13690:27:6"
},
"nodeType": "YulExpressionStatement",
"src": "13690:27:6"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "13632:1:6"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13635:6:6"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "13629:2:6"
},
"nodeType": "YulFunctionCall",
"src": "13629:13:6"
},
"nodeType": "YulIf",
"src": "13626:101:6"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "13457:3:6",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "13462:3:6",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13467:6:6",
"type": ""
}
],
"src": "13426:307:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13790:269:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13800:22:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "13814:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13820:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "13810:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13810:12:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13800:6:6"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "13831:38:6",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "13861:4:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13867:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13857:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13857:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "13835:18:6",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "13908:51:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13922:27:6",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13936:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13944:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "13932:3:6"
},
"nodeType": "YulFunctionCall",
"src": "13932:17:6"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13922:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "13888:18:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "13881:6:6"
},
"nodeType": "YulFunctionCall",
"src": "13881:26:6"
},
"nodeType": "YulIf",
"src": "13878:81:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14011:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "14025:16:6"
},
"nodeType": "YulFunctionCall",
"src": "14025:18:6"
},
"nodeType": "YulExpressionStatement",
"src": "14025:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "13975:18:6"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "13998:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14006:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "13995:2:6"
},
"nodeType": "YulFunctionCall",
"src": "13995:14:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "13972:2:6"
},
"nodeType": "YulFunctionCall",
"src": "13972:38:6"
},
"nodeType": "YulIf",
"src": "13969:84:6"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "13774:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "13783:6:6",
"type": ""
}
],
"src": "13739:320:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14093:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14110:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14113:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14103:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14103:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "14103:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14207:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14210:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14200:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14200:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "14200:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14231:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14234:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14224:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14224:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "14224:15:6"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "14065:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14279:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14296:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14299:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14289:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14289:88:6"
},
"nodeType": "YulExpressionStatement",
"src": "14289:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14393:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14396:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14386:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14386:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "14386:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14417:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14420:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14410:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14410:15:6"
},
"nodeType": "YulExpressionStatement",
"src": "14410:15:6"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "14251:180:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14526:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14543:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14546:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14536:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14536:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "14536:12:6"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "14437:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14649:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14666:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14669:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "14659:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14659:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "14659:12:6"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "14560:117:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14731:54:6",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14741:38:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14759:5:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14766:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14755:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14755:14:6"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14775:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "14771:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14771:7:6"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "14751:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14751:28:6"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "14741:6:6"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14714:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "14724:6:6",
"type": ""
}
],
"src": "14683:102:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14897:116:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14919:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14927:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14915:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14915:14:6"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14931:34:6",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14908:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14908:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "14908:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14987:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14995:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14983:3:6"
},
"nodeType": "YulFunctionCall",
"src": "14983:15:6"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15000:5:6",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14976:6:6"
},
"nodeType": "YulFunctionCall",
"src": "14976:30:6"
},
"nodeType": "YulExpressionStatement",
"src": "14976:30:6"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14889:6:6",
"type": ""
}
],
"src": "14791:222:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15125:119:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15147:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15155:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15143:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15143:14:6"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15159:34:6",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15136:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15136:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "15136:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15215:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15223:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15211:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15211:15:6"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15228:8:6",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15204:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15204:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "15204:33:6"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15117:6:6",
"type": ""
}
],
"src": "15019:225:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15356:115:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15378:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15386:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15374:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15374:14:6"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15390:34:6",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15367:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15367:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "15367:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15446:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15454:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15442:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15442:15:6"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15459:4:6",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15435:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15435:29:6"
},
"nodeType": "YulExpressionStatement",
"src": "15435:29:6"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15348:6:6",
"type": ""
}
],
"src": "15250:221:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15583:119:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15605:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15613:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15601:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15601:14:6"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15617:34:6",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15594:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15594:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "15594:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15673:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15681:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15669:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15669:15:6"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15686:8:6",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15662:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15662:33:6"
},
"nodeType": "YulExpressionStatement",
"src": "15662:33:6"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15575:6:6",
"type": ""
}
],
"src": "15477:225:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15814:121:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15836:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15844:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15832:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15832:14:6"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15848:34:6",
"type": "",
"value": "ERC20: transfer amount exceeds a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15825:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15825:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "15825:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15904:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15912:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15900:3:6"
},
"nodeType": "YulFunctionCall",
"src": "15900:15:6"
},
{
"hexValue": "6c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15917:10:6",
"type": "",
"value": "llowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15893:6:6"
},
"nodeType": "YulFunctionCall",
"src": "15893:35:6"
},
"nodeType": "YulExpressionStatement",
"src": "15893:35:6"
}
]
},
"name": "store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15806:6:6",
"type": ""
}
],
"src": "15708:227:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16047:76:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16069:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16077:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16065:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16065:14:6"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16081:34:6",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16058:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16058:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "16058:58:6"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16039:6:6",
"type": ""
}
],
"src": "15941:182:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16235:118:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16257:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16265:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16253:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16253:14:6"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16269:34:6",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16246:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16246:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "16246:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16325:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16333:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16321:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16321:15:6"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16338:7:6",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16314:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16314:32:6"
},
"nodeType": "YulExpressionStatement",
"src": "16314:32:6"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16227:6:6",
"type": ""
}
],
"src": "16129:224:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16465:117:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16487:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16495:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16483:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16483:14:6"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16499:34:6",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16476:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16476:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "16476:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16555:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16563:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16551:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16551:15:6"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16568:6:6",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16544:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16544:31:6"
},
"nodeType": "YulExpressionStatement",
"src": "16544:31:6"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16457:6:6",
"type": ""
}
],
"src": "16359:223:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16694:118:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16716:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16724:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16712:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16712:14:6"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16728:34:6",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16705:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16705:58:6"
},
"nodeType": "YulExpressionStatement",
"src": "16705:58:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16784:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16792:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16780:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16780:15:6"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16797:7:6",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16773:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16773:32:6"
},
"nodeType": "YulExpressionStatement",
"src": "16773:32:6"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16686:6:6",
"type": ""
}
],
"src": "16588:224:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16924:75:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16946:6:6"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16954:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16942:3:6"
},
"nodeType": "YulFunctionCall",
"src": "16942:14:6"
},
{
"hexValue": "45524332303a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16958:33:6",
"type": "",
"value": "ERC20: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16935:6:6"
},
"nodeType": "YulFunctionCall",
"src": "16935:57:6"
},
"nodeType": "YulExpressionStatement",
"src": "16935:57:6"
}
]
},
"name": "store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16916:6:6",
"type": ""
}
],
"src": "16818:181:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17048:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "17105:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17114:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17117:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17107:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17107:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "17107:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17071:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17096:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "17078:17:6"
},
"nodeType": "YulFunctionCall",
"src": "17078:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17068:2:6"
},
"nodeType": "YulFunctionCall",
"src": "17068:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17061:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17061:43:6"
},
"nodeType": "YulIf",
"src": "17058:63:6"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17041:5:6",
"type": ""
}
],
"src": "17005:122:6"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17176:79:6",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "17233:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17242:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17245:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17235:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17235:12:6"
},
"nodeType": "YulExpressionStatement",
"src": "17235:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17199:5:6"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17224:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "17206:17:6"
},
"nodeType": "YulFunctionCall",
"src": "17206:24:6"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17196:2:6"
},
"nodeType": "YulFunctionCall",
"src": "17196:35:6"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17189:6:6"
},
"nodeType": "YulFunctionCall",
"src": "17189:43:6"
},
"nodeType": "YulIf",
"src": "17186:63:6"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17169:5:6",
"type": ""
}
],
"src": "17133:122:6"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_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 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 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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\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_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\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_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_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_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_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_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 abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330__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_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_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 store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\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 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 store_literal_in_memory_974d1b4421da69cc60b481194f0dad36a5bb4e23da810da7a7fb30cdba178330(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds a\")\n\n mstore(add(memPtr, 32), \"llowance\")\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\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 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 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 store_literal_in_memory_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: mint to the zero address\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806340c10f19146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f91906113de565b60405180910390f35b610132600480360381019061012d9190611195565b6103b4565b60405161013f91906113c3565b60405180910390f35b6101506103d2565b60405161015d9190611540565b60405180910390f35b610180600480360381019061017b9190611142565b6103dc565b60405161018d91906113c3565b60405180910390f35b61019e6104d4565b6040516101ab919061155b565b60405180910390f35b6101ce60048036038101906101c99190611195565b6104dd565b6040516101db91906113c3565b60405180910390f35b6101fe60048036038101906101f99190611195565b610589565b005b61021a600480360381019061021591906110d5565b610613565b6040516102279190611540565b60405180910390f35b61023861065b565b005b6102426106e3565b60405161024f91906113a8565b60405180910390f35b61026061070d565b60405161026d91906113de565b60405180910390f35b610290600480360381019061028b9190611195565b61079f565b60405161029d91906113c3565b60405180910390f35b6102c060048036038101906102bb9190611195565b61088a565b6040516102cd91906113c3565b60405180910390f35b6102f060048036038101906102eb9190611102565b6108a8565b6040516102fd9190611540565b60405180910390f35b610320600480360381019061031b91906110d5565b61092f565b005b60606003805461033190611670565b80601f016020809104026020016040519081016040528092919081815260200182805461035d90611670565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b60006103c86103c1610a27565b8484610a2f565b6001905092915050565b6000600254905090565b60006103e9848484610bfa565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610434610a27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ab90611480565b60405180910390fd5b6104c8856104c0610a27565b858403610a2f565b60019150509392505050565b60006012905090565b600061057f6104ea610a27565b8484600160006104f8610a27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461057a9190611592565b610a2f565b6001905092915050565b610591610a27565b73ffffffffffffffffffffffffffffffffffffffff166105af6106e3565b73ffffffffffffffffffffffffffffffffffffffff1614610605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fc906114a0565b60405180910390fd5b61060f8282610e7b565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610663610a27565b73ffffffffffffffffffffffffffffffffffffffff166106816106e3565b73ffffffffffffffffffffffffffffffffffffffff16146106d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ce906114a0565b60405180910390fd5b6106e16000610fdb565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461071c90611670565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611670565b80156107955780601f1061076a57610100808354040283529160200191610795565b820191906000526020600020905b81548152906001019060200180831161077857829003601f168201915b5050505050905090565b600080600160006107ae610a27565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561086b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086290611500565b60405180910390fd5b61087f610876610a27565b85858403610a2f565b600191505092915050565b600061089e610897610a27565b8484610bfa565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610937610a27565b73ffffffffffffffffffffffffffffffffffffffff166109556106e3565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906114a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1290611420565b60405180910390fd5b610a2481610fdb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a96906114e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690611440565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bed9190611540565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c61906114c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd190611400565b60405180910390fd5b610ce58383836110a1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6290611460565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfe9190611592565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e629190611540565b60405180910390a3610e758484846110a6565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee290611520565b60405180910390fd5b610ef7600083836110a1565b8060026000828254610f099190611592565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5e9190611592565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fc39190611540565b60405180910390a3610fd7600083836110a6565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506110ba816119e0565b92915050565b6000813590506110cf816119f7565b92915050565b6000602082840312156110eb576110ea611700565b5b60006110f9848285016110ab565b91505092915050565b6000806040838503121561111957611118611700565b5b6000611127858286016110ab565b9250506020611138858286016110ab565b9150509250929050565b60008060006060848603121561115b5761115a611700565b5b6000611169868287016110ab565b935050602061117a868287016110ab565b925050604061118b868287016110c0565b9150509250925092565b600080604083850312156111ac576111ab611700565b5b60006111ba858286016110ab565b92505060206111cb858286016110c0565b9150509250929050565b6111de816115e8565b82525050565b6111ed816115fa565b82525050565b60006111fe82611576565b6112088185611581565b935061121881856020860161163d565b61122181611705565b840191505092915050565b6000611239602383611581565b915061124482611716565b604082019050919050565b600061125c602683611581565b915061126782611765565b604082019050919050565b600061127f602283611581565b915061128a826117b4565b604082019050919050565b60006112a2602683611581565b91506112ad82611803565b604082019050919050565b60006112c5602883611581565b91506112d082611852565b604082019050919050565b60006112e8602083611581565b91506112f3826118a1565b602082019050919050565b600061130b602583611581565b9150611316826118ca565b604082019050919050565b600061132e602483611581565b915061133982611919565b604082019050919050565b6000611351602583611581565b915061135c82611968565b604082019050919050565b6000611374601f83611581565b915061137f826119b7565b602082019050919050565b61139381611626565b82525050565b6113a281611630565b82525050565b60006020820190506113bd60008301846111d5565b92915050565b60006020820190506113d860008301846111e4565b92915050565b600060208201905081810360008301526113f881846111f3565b905092915050565b600060208201905081810360008301526114198161122c565b9050919050565b600060208201905081810360008301526114398161124f565b9050919050565b6000602082019050818103600083015261145981611272565b9050919050565b6000602082019050818103600083015261147981611295565b9050919050565b60006020820190508181036000830152611499816112b8565b9050919050565b600060208201905081810360008301526114b9816112db565b9050919050565b600060208201905081810360008301526114d9816112fe565b9050919050565b600060208201905081810360008301526114f981611321565b9050919050565b6000602082019050818103600083015261151981611344565b9050919050565b6000602082019050818103600083015261153981611367565b9050919050565b6000602082019050611555600083018461138a565b92915050565b60006020820190506115706000830184611399565b92915050565b600081519050919050565b600082825260208201905092915050565b600061159d82611626565b91506115a883611626565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115dd576115dc6116a2565b5b828201905092915050565b60006115f382611606565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561165b578082015181840152602081019050611640565b8381111561166a576000848401525b50505050565b6000600282049050600182168061168857607f821691505b6020821081141561169c5761169b6116d1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6119e9816115e8565b81146119f457600080fd5b50565b611a0081611626565b8114611a0b57600080fd5b5056fea26469706673582212200a35aa98123215be5305c8aed8f9b4c6665f021dfa269627b79861fd7994b18c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xF5 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x97 JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x276 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x2A6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2D6 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x306 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x200 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x230 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x23A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x258 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xD3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x166 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x196 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1B4 JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x1E4 JUMPI PUSH2 0xF5 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFA JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x118 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x148 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x102 PUSH2 0x322 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x13DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x132 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12D SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x3B4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x13F SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x150 PUSH2 0x3D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x15D SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x180 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x17B SWAP2 SWAP1 PUSH2 0x1142 JUMP JUMPDEST PUSH2 0x3DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18D SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x19E PUSH2 0x4D4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1AB SWAP2 SWAP1 PUSH2 0x155B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C9 SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x4DD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F9 SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x589 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x215 SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH2 0x613 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x238 PUSH2 0x65B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x242 PUSH2 0x6E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x24F SWAP2 SWAP1 PUSH2 0x13A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x260 PUSH2 0x70D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x26D SWAP2 SWAP1 PUSH2 0x13DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x290 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28B SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29D SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x1195 JUMP JUMPDEST PUSH2 0x88A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x13C3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2EB SWAP2 SWAP1 PUSH2 0x1102 JUMP JUMPDEST PUSH2 0x8A8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FD SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x320 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x31B SWAP2 SWAP1 PUSH2 0x10D5 JUMP JUMPDEST PUSH2 0x92F JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x331 SWAP1 PUSH2 0x1670 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 0x35D SWAP1 PUSH2 0x1670 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3AA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3AA 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 0x38D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C8 PUSH2 0x3C1 PUSH2 0xA27 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xA2F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E9 DUP5 DUP5 DUP5 PUSH2 0xBFA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x434 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x4B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4AB SWAP1 PUSH2 0x1480 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x4C8 DUP6 PUSH2 0x4C0 PUSH2 0xA27 JUMP JUMPDEST DUP6 DUP5 SUB PUSH2 0xA2F 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 PUSH2 0x57F PUSH2 0x4EA PUSH2 0xA27 JUMP JUMPDEST DUP5 DUP5 PUSH1 0x1 PUSH1 0x0 PUSH2 0x4F8 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP9 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x57A SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST PUSH2 0xA2F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x591 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5AF PUSH2 0x6E3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x605 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5FC SWAP1 PUSH2 0x14A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x60F DUP3 DUP3 PUSH2 0xE7B JUMP JUMPDEST 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 PUSH2 0x663 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x681 PUSH2 0x6E3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6CE SWAP1 PUSH2 0x14A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6E1 PUSH1 0x0 PUSH2 0xFDB JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x71C SWAP1 PUSH2 0x1670 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 0x748 SWAP1 PUSH2 0x1670 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x795 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x76A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x795 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 0x778 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x1 PUSH1 0x0 PUSH2 0x7AE PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP3 DUP2 LT ISZERO PUSH2 0x86B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x862 SWAP1 PUSH2 0x1500 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x87F PUSH2 0x876 PUSH2 0xA27 JUMP JUMPDEST DUP6 DUP6 DUP5 SUB PUSH2 0xA2F JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x89E PUSH2 0x897 PUSH2 0xA27 JUMP JUMPDEST DUP5 DUP5 PUSH2 0xBFA JUMP JUMPDEST PUSH1 0x1 SWAP1 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 PUSH2 0x937 PUSH2 0xA27 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x955 PUSH2 0x6E3 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x9AB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9A2 SWAP1 PUSH2 0x14A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA1B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA12 SWAP1 PUSH2 0x1420 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA24 DUP2 PUSH2 0xFDB JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA9F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA96 SWAP1 PUSH2 0x14E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB0F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB06 SWAP1 PUSH2 0x1440 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 0xBED SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC6A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC61 SWAP1 PUSH2 0x14C0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xCDA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCD1 SWAP1 PUSH2 0x1400 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xCE5 DUP4 DUP4 DUP4 PUSH2 0x10A1 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 0xD6B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD62 SWAP1 PUSH2 0x1460 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xDFE SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xE62 SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xE75 DUP5 DUP5 DUP5 PUSH2 0x10A6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xEEB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEE2 SWAP1 PUSH2 0x1520 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xEF7 PUSH1 0x0 DUP4 DUP4 PUSH2 0x10A1 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0xF09 SWAP2 SWAP1 PUSH2 0x1592 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 PUSH2 0xF5E SWAP2 SWAP1 PUSH2 0x1592 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xFC3 SWAP2 SWAP1 PUSH2 0x1540 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xFD7 PUSH1 0x0 DUP4 DUP4 PUSH2 0x10A6 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10BA DUP2 PUSH2 0x19E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x10CF DUP2 PUSH2 0x19F7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x10EB JUMPI PUSH2 0x10EA PUSH2 0x1700 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x10F9 DUP5 DUP3 DUP6 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1119 JUMPI PUSH2 0x1118 PUSH2 0x1700 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1127 DUP6 DUP3 DUP7 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1138 DUP6 DUP3 DUP7 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x115B JUMPI PUSH2 0x115A PUSH2 0x1700 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1169 DUP7 DUP3 DUP8 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x117A DUP7 DUP3 DUP8 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x118B DUP7 DUP3 DUP8 ADD PUSH2 0x10C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x11AC JUMPI PUSH2 0x11AB PUSH2 0x1700 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x11BA DUP6 DUP3 DUP7 ADD PUSH2 0x10AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x11CB DUP6 DUP3 DUP7 ADD PUSH2 0x10C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x11DE DUP2 PUSH2 0x15E8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x11ED DUP2 PUSH2 0x15FA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11FE DUP3 PUSH2 0x1576 JUMP JUMPDEST PUSH2 0x1208 DUP2 DUP6 PUSH2 0x1581 JUMP JUMPDEST SWAP4 POP PUSH2 0x1218 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x163D JUMP JUMPDEST PUSH2 0x1221 DUP2 PUSH2 0x1705 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1239 PUSH1 0x23 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1244 DUP3 PUSH2 0x1716 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x125C PUSH1 0x26 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1267 DUP3 PUSH2 0x1765 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x127F PUSH1 0x22 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x128A DUP3 PUSH2 0x17B4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12A2 PUSH1 0x26 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x12AD DUP3 PUSH2 0x1803 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12C5 PUSH1 0x28 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x12D0 DUP3 PUSH2 0x1852 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12E8 PUSH1 0x20 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x12F3 DUP3 PUSH2 0x18A1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x130B PUSH1 0x25 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1316 DUP3 PUSH2 0x18CA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x132E PUSH1 0x24 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1339 DUP3 PUSH2 0x1919 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1351 PUSH1 0x25 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x135C DUP3 PUSH2 0x1968 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1374 PUSH1 0x1F DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x137F DUP3 PUSH2 0x19B7 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1393 DUP2 PUSH2 0x1626 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x13A2 DUP2 PUSH2 0x1630 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x13BD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11D5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x13D8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x11E4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x13F8 DUP2 DUP5 PUSH2 0x11F3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1419 DUP2 PUSH2 0x122C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1439 DUP2 PUSH2 0x124F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1459 DUP2 PUSH2 0x1272 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1479 DUP2 PUSH2 0x1295 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1499 DUP2 PUSH2 0x12B8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14B9 DUP2 PUSH2 0x12DB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14D9 DUP2 PUSH2 0x12FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x14F9 DUP2 PUSH2 0x1321 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1519 DUP2 PUSH2 0x1344 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1539 DUP2 PUSH2 0x1367 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1555 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x138A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1570 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1399 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x159D DUP3 PUSH2 0x1626 JUMP JUMPDEST SWAP2 POP PUSH2 0x15A8 DUP4 PUSH2 0x1626 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x15DD JUMPI PUSH2 0x15DC PUSH2 0x16A2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15F3 DUP3 PUSH2 0x1606 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x165B JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1640 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x166A JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1688 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x169C JUMPI PUSH2 0x169B PUSH2 0x16D1 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6C6F77616E6365000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524332303A206D696E7420746F20746865207A65726F206164647265737300 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x19E9 DUP2 PUSH2 0x15E8 JUMP JUMPDEST DUP2 EQ PUSH2 0x19F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x1A00 DUP2 PUSH2 0x1626 JUMP JUMPDEST DUP2 EQ PUSH2 0x1A0B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXP CALLDATALOAD 0xAA SWAP9 SLT ORIGIN ISZERO 0xBE MSTORE8 SDIV 0xC8 0xAE 0xD8 0xF9 0xB4 0xC6 PUSH7 0x5F021DFA269627 0xB7 SWAP9 PUSH2 0xFD79 SWAP5 0xB1 DUP13 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "167:274:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4238:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3229:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4871:478;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3078:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5744:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;346:93:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3393:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:0;;;:::i;:::-;;1036:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2352:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6443:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3721:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3951:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2141:98:1;2195:13;2227:5;2220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2141:98;:::o;4238:166::-;4321:4;4337:39;4346:12;:10;:12::i;:::-;4360:7;4369:6;4337:8;:39::i;:::-;4393:4;4386:11;;4238:166;;;;:::o;3229:106::-;3290:7;3316:12;;3309:19;;3229:106;:::o;4871:478::-;5007:4;5023:36;5033:6;5041:9;5052:6;5023:9;:36::i;:::-;5070:24;5097:11;:19;5109:6;5097:19;;;;;;;;;;;;;;;:33;5117:12;:10;:12::i;:::-;5097:33;;;;;;;;;;;;;;;;5070:60;;5168:6;5148:16;:26;;5140:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5253:57;5262:6;5270:12;:10;:12::i;:::-;5303:6;5284:16;:25;5253:8;:57::i;:::-;5338:4;5331:11;;;4871:478;;;;;:::o;3078:91::-;3136:5;3160:2;3153:9;;3078:91;:::o;5744:212::-;5832:4;5848:80;5857:12;:10;:12::i;:::-;5871:7;5917:10;5880:11;:25;5892:12;:10;:12::i;:::-;5880:25;;;;;;;;;;;;;;;:34;5906:7;5880:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5848:8;:80::i;:::-;5945:4;5938:11;;5744:212;;;;:::o;346:93:5:-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;415:17:5::1;421:2;425:6;415:5;:17::i;:::-;346:93:::0;;:::o;3393:125:1:-;3467:7;3493:9;:18;3503:7;3493:18;;;;;;;;;;;;;;;;3486:25;;3393:125;;;:::o;1668:101:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1036:85::-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;2352:102:1:-;2408:13;2440:7;2433:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2352:102;:::o;6443:405::-;6536:4;6552:24;6579:11;:25;6591:12;:10;:12::i;:::-;6579:25;;;;;;;;;;;;;;;:34;6605:7;6579:34;;;;;;;;;;;;;;;;6552:61;;6651:15;6631:16;:35;;6623:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6742:67;6751:12;:10;:12::i;:::-;6765:7;6793:15;6774:16;:34;6742:8;:67::i;:::-;6837:4;6830:11;;;6443:405;;;;:::o;3721:172::-;3807:4;3823:42;3833:12;:10;:12::i;:::-;3847:9;3858:6;3823:9;:42::i;:::-;3882:4;3875:11;;3721:172;;;;:::o;3951:149::-;4040:7;4066:11;:18;4078:5;4066:18;;;;;;;;;;;;;;;:27;4085:7;4066:27;;;;;;;;;;;;;;;;4059:34;;3951:149;;;;:::o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;640:96:4:-;693:7;719:10;712:17;;640:96;:::o;10019:370:1:-;10167:1;10150:19;;:5;:19;;;;10142:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10247:1;10228:21;;:7;:21;;;;10220:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10329:6;10299:11;:18;10311:5;10299:18;;;;;;;;;;;;;;;:27;10318:7;10299:27;;;;;;;;;;;;;;;:36;;;;10366:7;10350:32;;10359:5;10350:32;;;10375:6;10350:32;;;;;;:::i;:::-;;;;;;;;10019:370;;;:::o;7322:713::-;7475:1;7457:20;;:6;:20;;;;7449:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7558:1;7537:23;;:9;:23;;;;7529:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7611:47;7632:6;7640:9;7651:6;7611:20;:47::i;:::-;7669:21;7693:9;:17;7703:6;7693:17;;;;;;;;;;;;;;;;7669:41;;7745:6;7728:13;:23;;7720:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7864:6;7848:13;:22;7828:9;:17;7838:6;7828:17;;;;;;;;;;;;;;;:42;;;;7914:6;7890:9;:20;7900:9;7890:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7953:9;7936:35;;7945:6;7936:35;;;7964:6;7936:35;;;;;;:::i;:::-;;;;;;;;7982:46;8002:6;8010:9;8021:6;7982:19;:46::i;:::-;7439:596;7322:713;;;:::o;8311:389::-;8413:1;8394:21;;:7;:21;;;;8386:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8462:49;8491:1;8495:7;8504:6;8462:20;:49::i;:::-;8538:6;8522:12;;:22;;;;;;;:::i;:::-;;;;;;;;8576:6;8554:9;:18;8564:7;8554:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8618:7;8597:37;;8614:1;8597:37;;;8627:6;8597:37;;;;;;:::i;:::-;;;;;;;;8645:48;8673:1;8677:7;8686:6;8645:19;:48::i;:::-;8311:389;;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;10973:121:1:-;;;;:::o;11682:120::-;;;;:::o;7:139:6:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:118::-;6633:24;6651:5;6633:24;:::i;:::-;6628:3;6621:37;6546:118;;:::o;6670:112::-;6753:22;6769:5;6753:22;:::i;:::-;6748:3;6741:35;6670:112;;:::o;6788:222::-;6881:4;6919:2;6908:9;6904:18;6896:26;;6932:71;7000:1;6989:9;6985:17;6976:6;6932:71;:::i;:::-;6788:222;;;;:::o;7016:210::-;7103:4;7141:2;7130:9;7126:18;7118:26;;7154:65;7216:1;7205:9;7201:17;7192:6;7154:65;:::i;:::-;7016:210;;;;:::o;7232:313::-;7345:4;7383:2;7372:9;7368:18;7360:26;;7432:9;7426:4;7422:20;7418:1;7407:9;7403:17;7396:47;7460:78;7533:4;7524:6;7460:78;:::i;:::-;7452:86;;7232:313;;;;:::o;7551:419::-;7717:4;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:131;7958:4;7832:131;:::i;:::-;7824:139;;7551:419;;;:::o;7976:::-;8142:4;8180:2;8169:9;8165:18;8157:26;;8229:9;8223:4;8219:20;8215:1;8204:9;8200:17;8193:47;8257:131;8383:4;8257:131;:::i;:::-;8249:139;;7976:419;;;:::o;8401:::-;8567:4;8605:2;8594:9;8590:18;8582:26;;8654:9;8648:4;8644:20;8640:1;8629:9;8625:17;8618:47;8682:131;8808:4;8682:131;:::i;:::-;8674:139;;8401:419;;;:::o;8826:::-;8992:4;9030:2;9019:9;9015:18;9007:26;;9079:9;9073:4;9069:20;9065:1;9054:9;9050:17;9043:47;9107:131;9233:4;9107:131;:::i;:::-;9099:139;;8826:419;;;:::o;9251:::-;9417:4;9455:2;9444:9;9440:18;9432:26;;9504:9;9498:4;9494:20;9490:1;9479:9;9475:17;9468:47;9532:131;9658:4;9532:131;:::i;:::-;9524:139;;9251:419;;;:::o;9676:::-;9842:4;9880:2;9869:9;9865:18;9857:26;;9929:9;9923:4;9919:20;9915:1;9904:9;9900:17;9893:47;9957:131;10083:4;9957:131;:::i;:::-;9949:139;;9676:419;;;:::o;10101:::-;10267:4;10305:2;10294:9;10290:18;10282:26;;10354:9;10348:4;10344:20;10340:1;10329:9;10325:17;10318:47;10382:131;10508:4;10382:131;:::i;:::-;10374:139;;10101:419;;;:::o;10526:::-;10692:4;10730:2;10719:9;10715:18;10707:26;;10779:9;10773:4;10769:20;10765:1;10754:9;10750:17;10743:47;10807:131;10933:4;10807:131;:::i;:::-;10799:139;;10526:419;;;:::o;10951:::-;11117:4;11155:2;11144:9;11140:18;11132:26;;11204:9;11198:4;11194:20;11190:1;11179:9;11175:17;11168:47;11232:131;11358:4;11232:131;:::i;:::-;11224:139;;10951:419;;;:::o;11376:::-;11542:4;11580:2;11569:9;11565:18;11557:26;;11629:9;11623:4;11619:20;11615:1;11604:9;11600:17;11593:47;11657:131;11783:4;11657:131;:::i;:::-;11649:139;;11376:419;;;:::o;11801:222::-;11894:4;11932:2;11921:9;11917:18;11909:26;;11945:71;12013:1;12002:9;11998:17;11989:6;11945:71;:::i;:::-;11801:222;;;;:::o;12029:214::-;12118:4;12156:2;12145:9;12141:18;12133:26;;12169:67;12233:1;12222:9;12218:17;12209:6;12169:67;:::i;:::-;12029:214;;;;:::o;12330:99::-;12382:6;12416:5;12410:12;12400:22;;12330:99;;;:::o;12435:169::-;12519:11;12553:6;12548:3;12541:19;12593:4;12588:3;12584:14;12569:29;;12435:169;;;;:::o;12610:305::-;12650:3;12669:20;12687:1;12669:20;:::i;:::-;12664:25;;12703:20;12721:1;12703:20;:::i;:::-;12698:25;;12857:1;12789:66;12785:74;12782:1;12779:81;12776:107;;;12863:18;;:::i;:::-;12776:107;12907:1;12904;12900:9;12893:16;;12610:305;;;;:::o;12921:96::-;12958:7;12987:24;13005:5;12987:24;:::i;:::-;12976:35;;12921:96;;;:::o;13023:90::-;13057:7;13100:5;13093:13;13086:21;13075:32;;13023:90;;;:::o;13119:126::-;13156:7;13196:42;13189:5;13185:54;13174:65;;13119:126;;;:::o;13251:77::-;13288:7;13317:5;13306:16;;13251:77;;;:::o;13334:86::-;13369:7;13409:4;13402:5;13398:16;13387:27;;13334:86;;;:::o;13426:307::-;13494:1;13504:113;13518:6;13515:1;13512:13;13504:113;;;13603:1;13598:3;13594:11;13588:18;13584:1;13579:3;13575:11;13568:39;13540:2;13537:1;13533:10;13528:15;;13504:113;;;13635:6;13632:1;13629:13;13626:101;;;13715:1;13706:6;13701:3;13697:16;13690:27;13626:101;13475:258;13426:307;;;:::o;13739:320::-;13783:6;13820:1;13814:4;13810:12;13800:22;;13867:1;13861:4;13857:12;13888:18;13878:81;;13944:4;13936:6;13932:17;13922:27;;13878:81;14006:2;13998:6;13995:14;13975:18;13972:38;13969:84;;;14025:18;;:::i;:::-;13969:84;13790:269;13739:320;;;:::o;14065:180::-;14113:77;14110:1;14103:88;14210:4;14207:1;14200:15;14234:4;14231:1;14224:15;14251:180;14299:77;14296:1;14289:88;14396:4;14393:1;14386:15;14420:4;14417:1;14410:15;14560:117;14669:1;14666;14659:12;14683:102;14724:6;14775:2;14771:7;14766:2;14759:5;14755:14;14751:28;14741:38;;14683:102;;;:::o;14791:222::-;14931:34;14927:1;14919:6;14915:14;14908:58;15000:5;14995:2;14987:6;14983:15;14976:30;14791:222;:::o;15019:225::-;15159:34;15155:1;15147:6;15143:14;15136:58;15228:8;15223:2;15215:6;15211:15;15204:33;15019:225;:::o;15250:221::-;15390:34;15386:1;15378:6;15374:14;15367:58;15459:4;15454:2;15446:6;15442:15;15435:29;15250:221;:::o;15477:225::-;15617:34;15613:1;15605:6;15601:14;15594:58;15686:8;15681:2;15673:6;15669:15;15662:33;15477:225;:::o;15708:227::-;15848:34;15844:1;15836:6;15832:14;15825:58;15917:10;15912:2;15904:6;15900:15;15893:35;15708:227;:::o;15941:182::-;16081:34;16077:1;16069:6;16065:14;16058:58;15941:182;:::o;16129:224::-;16269:34;16265:1;16257:6;16253:14;16246:58;16338:7;16333:2;16325:6;16321:15;16314:32;16129:224;:::o;16359:223::-;16499:34;16495:1;16487:6;16483:14;16476:58;16568:6;16563:2;16555:6;16551:15;16544:31;16359:223;:::o;16588:224::-;16728:34;16724:1;16716:6;16712:14;16705:58;16797:7;16792:2;16784:6;16780:15;16773:32;16588:224;:::o;16818:181::-;16958:33;16954:1;16946:6;16942:14;16935:57;16818:181;:::o;17005:122::-;17078:24;17096:5;17078:24;:::i;:::-;17071:5;17068:35;17058:63;;17117:1;17114;17107:12;17058:63;17005:122;:::o;17133:::-;17206:24;17224:5;17206:24;:::i;:::-;17199:5;17196:35;17186:63;;17245:1;17242;17235:12;17186:63;17133:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1344800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2864",
"decimals()": "388",
"decreaseAllowance(address,uint256)": "infinite",
"increaseAllowance(address,uint256)": "infinite",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "2589",
"renounceOwnership()": "30419",
"symbol()": "infinite",
"totalSupply()": "2505",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "30811"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"mint(address,uint256)": "40c10f19",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b"
}
},
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"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": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"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": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"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: - `recipient` 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}. Requirements: - `sender` and `recipient` cannot be the zero address. - `sender` must have a balance of at least `amount`. - the caller must have allowance for ``sender``'s tokens of at least `amount`."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"Shitcoin.sol": "MyToken"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xa1b27b3f44ff825974e5268e8f63ad3b03add5b464880d860fbb8cae043e17f7",
"license": "MIT",
"urls": [
"bzz-raw://ad0fb4425453220f15bdb8c4e009052839804bb725797b6d8c02ee2271bc3c23",
"dweb:/ipfs/QmPtjdMxzEifPUEUa6cKX1yfTWjaZV6QtdwMdN6bEL9FBM"
]
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x53a0bb51b8a505e04aaf065de27c0e31cadf38194f8a9a6ec92b7bcd3c5826e6",
"license": "MIT",
"urls": [
"bzz-raw://d7d7019db0d8c1256995eb44b2aabf1189120c0bd01efa653e0eabdbc8cf4742",
"dweb:/ipfs/QmZRiFEksts7Z2r1xnHb9Jqu4udHyTM6tQVTCyFosMXQAy"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xc1452b054778f1926419196ef12ae200758a4ee728df69ae1cd13e5c16ca7df7",
"license": "MIT",
"urls": [
"bzz-raw://4cb252ec7657ba7a91be688cbd263090aa5379e504f488a62d06198e0d630322",
"dweb:/ipfs/QmW56fDiDirhWfWiKrycXE5UY6tTNtFrYx39ipnSs8mkYb"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x842c66d5965ed0bf77f274732c2a93a7e2223d53171ec9cccc473bde75104ead",
"license": "MIT",
"urls": [
"bzz-raw://8cc9f9a6d9c1e2ca9cd191840c0e6017d22bf99d88b368137e43c67f63d17d1c",
"dweb:/ipfs/Qmd3vUSxY4fRi4AUFMkerjrMFEKRLGVJUGFmxazR1wnPXP"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x7736c187e6f1358c1ea9350a2a21aa8528dec1c2f43b374a9067465a3a51f5d3",
"license": "MIT",
"urls": [
"bzz-raw://4fd625dca17657403af518cc6c8ab5c54c58898cf6e912ca2e1b0f3194ad0405",
"dweb:/ipfs/QmQVv7YeeKmaS11bg7YDTeeGDk6i7sV8LMMfohaLM4SiRu"
]
},
"Shitcoin.sol": {
"keccak256": "0x04a68b90859d665dcf4e4f6724bcc9ada1eaf8a6047f1c7ea5cd3d5380d35e20",
"license": "MIT",
"urls": [
"bzz-raw://525ec59a003cb90098b3a33a9794c06640c27511025afaa8ae2fc6fe8ac96a95",
"dweb:/ipfs/QmeKebMqCZr38MDn9fDRAy5SkvF4uB891eKmworezUxY6X"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract MyToken is ERC20, Ownable {
constructor() ERC20("Java Coin", "JAVA") {
_mint(0x6C99A69537aA5F3A1e2d846b8b85573d46D45E45, 1991 * 10 ** decimals());
}
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment