Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ayowilfred95/a4d32160bae3af61ca5bad43a9686f9b to your computer and use it in GitHub Desktop.
Save ayowilfred95/a4d32160bae3af61ca5bad43a9686f9b 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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
}
}
{
"id": "7c28e27081bb0165398faafe84869d2f",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.4",
"solcLongVersion": "0.8.4+commit.c7e474f2",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol": {
"IERC721": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "_approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Required interface of an ERC721 compliant contract.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when `owner` enables `approved` to manage the `tokenId` token."
},
"ApprovalForAll(address,address,bool)": {
"details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `tokenId` token is transferred from `from` to `to`."
}
},
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the number of tokens in ``owner``'s account."
},
"getApproved(uint256)": {
"details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
},
"isApprovedForAll(address,address)": {
"details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
},
"ownerOf(uint256)": {
"details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
},
"safeTransferFrom(address,address,uint256)": {
"details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"setApprovalForAll(address,bool)": {
"details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event."
},
"supportsInterface(bytes4)": {
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
},
"transferFrom(address,address,uint256)": {
"details": "Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"approved\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"approved\",\"type\":\"bool\"}],\"name\":\"ApprovalForAll\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"getApproved\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"isApprovedForAll\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ownerOf\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"safeTransferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"bool\",\"name\":\"_approved\",\"type\":\"bool\"}],\"name\":\"setApprovalForAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Required interface of an ERC721 compliant contract.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when `owner` enables `approved` to manage the `tokenId` token.\"},\"ApprovalForAll(address,address,bool)\":{\"details\":\"Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `tokenId` token is transferred from `from` to `to`.\"}},\"kind\":\"dev\",\"methods\":{\"approve(address,uint256)\":{\"details\":\"Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event.\"},\"balanceOf(address)\":{\"details\":\"Returns the number of tokens in ``owner``'s account.\"},\"getApproved(uint256)\":{\"details\":\"Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist.\"},\"isApprovedForAll(address,address)\":{\"details\":\"Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}\"},\"ownerOf(uint256)\":{\"details\":\"Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist.\"},\"safeTransferFrom(address,address,uint256)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"safeTransferFrom(address,address,uint256,bytes)\":{\"details\":\"Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event.\"},\"setApprovalForAll(address,bool)\":{\"details\":\"Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event.\"},\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol\":\"IERC721\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol\":{\"keccak256\":\"0x0d4de01fe5360c38b4ad2b0822a12722958428f5138a7ff47c1720eb6fa52bba\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://77724cecdfba8814632ab58737c2b0f2d4ad2d532bc614aee559b5593c1152f0\",\"dweb:/ipfs/QmUcE6gXyv7CQh4sUdcDABYKGTovTe1zLMZSEq95nkc3ph\"]},\".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol": {
"IERC165": {
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.",
"kind": "dev",
"methods": {
"supportsInterface(bytes4)": {
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f\",\"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol",
"exportedSymbols": {
"IERC165": [
127
],
"IERC721": [
115
]
},
"id": 116,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "108:23:0"
},
{
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol",
"file": "../../utils/introspection/IERC165.sol",
"id": 2,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 116,
"sourceUnit": 128,
"src": "133:47:0",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": false,
"baseContracts": [
{
"baseName": {
"id": 4,
"name": "IERC165",
"nodeType": "IdentifierPath",
"referencedDeclaration": 127,
"src": "271:7:0"
},
"id": 5,
"nodeType": "InheritanceSpecifier",
"src": "271:7:0"
}
],
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "182:67:0",
"text": " @dev Required interface of an ERC721 compliant contract."
},
"fullyImplemented": false,
"id": 115,
"linearizedBaseContracts": [
115,
127
],
"name": "IERC721",
"nameLocation": "260:7:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"anonymous": false,
"documentation": {
"id": 6,
"nodeType": "StructuredDocumentation",
"src": "285:88:0",
"text": " @dev Emitted when `tokenId` token is transferred from `from` to `to`."
},
"id": 14,
"name": "Transfer",
"nameLocation": "384:8:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 13,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 8,
"indexed": true,
"mutability": "mutable",
"name": "from",
"nameLocation": "409:4:0",
"nodeType": "VariableDeclaration",
"scope": 14,
"src": "393:20:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 7,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "393:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 10,
"indexed": true,
"mutability": "mutable",
"name": "to",
"nameLocation": "431:2:0",
"nodeType": "VariableDeclaration",
"scope": 14,
"src": "415:18:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 9,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "415:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 12,
"indexed": true,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "451:7:0",
"nodeType": "VariableDeclaration",
"scope": 14,
"src": "435:23:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 11,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "435:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "392:67:0"
},
"src": "378:82:0"
},
{
"anonymous": false,
"documentation": {
"id": 15,
"nodeType": "StructuredDocumentation",
"src": "466:94:0",
"text": " @dev Emitted when `owner` enables `approved` to manage the `tokenId` token."
},
"id": 23,
"name": "Approval",
"nameLocation": "571:8:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 22,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 17,
"indexed": true,
"mutability": "mutable",
"name": "owner",
"nameLocation": "596:5:0",
"nodeType": "VariableDeclaration",
"scope": 23,
"src": "580:21:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 16,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "580:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 19,
"indexed": true,
"mutability": "mutable",
"name": "approved",
"nameLocation": "619:8:0",
"nodeType": "VariableDeclaration",
"scope": 23,
"src": "603:24:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 18,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "603:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 21,
"indexed": true,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "645:7:0",
"nodeType": "VariableDeclaration",
"scope": 23,
"src": "629:23:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 20,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "629:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "579:74:0"
},
"src": "565:89:0"
},
{
"anonymous": false,
"documentation": {
"id": 24,
"nodeType": "StructuredDocumentation",
"src": "660:117:0",
"text": " @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
},
"id": 32,
"name": "ApprovalForAll",
"nameLocation": "788:14:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 31,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 26,
"indexed": true,
"mutability": "mutable",
"name": "owner",
"nameLocation": "819:5:0",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "803:21:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 25,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "803:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 28,
"indexed": true,
"mutability": "mutable",
"name": "operator",
"nameLocation": "842:8:0",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "826:24:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 27,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "826:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 30,
"indexed": false,
"mutability": "mutable",
"name": "approved",
"nameLocation": "857:8:0",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "852:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 29,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "852:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "802:64:0"
},
"src": "782:85:0"
},
{
"documentation": {
"id": 33,
"nodeType": "StructuredDocumentation",
"src": "873:76:0",
"text": " @dev Returns the number of tokens in ``owner``'s account."
},
"functionSelector": "70a08231",
"id": 40,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "balanceOf",
"nameLocation": "963:9:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 36,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 35,
"mutability": "mutable",
"name": "owner",
"nameLocation": "981:5:0",
"nodeType": "VariableDeclaration",
"scope": 40,
"src": "973:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 34,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "973:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "972:15:0"
},
"returnParameters": {
"id": 39,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 38,
"mutability": "mutable",
"name": "balance",
"nameLocation": "1019:7:0",
"nodeType": "VariableDeclaration",
"scope": 40,
"src": "1011:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 37,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1011:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1010:17:0"
},
"scope": 115,
"src": "954:74:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 41,
"nodeType": "StructuredDocumentation",
"src": "1034:131:0",
"text": " @dev Returns the owner of the `tokenId` token.\n Requirements:\n - `tokenId` must exist."
},
"functionSelector": "6352211e",
"id": 48,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "ownerOf",
"nameLocation": "1179:7:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 44,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 43,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "1195:7:0",
"nodeType": "VariableDeclaration",
"scope": 48,
"src": "1187:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 42,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1187:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1186:17:0"
},
"returnParameters": {
"id": 47,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 46,
"mutability": "mutable",
"name": "owner",
"nameLocation": "1235:5:0",
"nodeType": "VariableDeclaration",
"scope": 48,
"src": "1227:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 45,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1227:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1226:15:0"
},
"scope": 115,
"src": "1170:72:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 49,
"nodeType": "StructuredDocumentation",
"src": "1248:556:0",
"text": " @dev Safely transfers `tokenId` token from `from` to `to`.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."
},
"functionSelector": "b88d4fde",
"id": 60,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "safeTransferFrom",
"nameLocation": "1818:16:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 58,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 51,
"mutability": "mutable",
"name": "from",
"nameLocation": "1852:4:0",
"nodeType": "VariableDeclaration",
"scope": 60,
"src": "1844:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 50,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1844:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 53,
"mutability": "mutable",
"name": "to",
"nameLocation": "1874:2:0",
"nodeType": "VariableDeclaration",
"scope": 60,
"src": "1866:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 52,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1866:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 55,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "1894:7:0",
"nodeType": "VariableDeclaration",
"scope": 60,
"src": "1886:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 54,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1886:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 57,
"mutability": "mutable",
"name": "data",
"nameLocation": "1926:4:0",
"nodeType": "VariableDeclaration",
"scope": 60,
"src": "1911:19:0",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 56,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "1911:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "1834:102:0"
},
"returnParameters": {
"id": 59,
"nodeType": "ParameterList",
"parameters": [],
"src": "1945:0:0"
},
"scope": 115,
"src": "1809:137:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 61,
"nodeType": "StructuredDocumentation",
"src": "1952:690:0",
"text": " @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n are aware of the ERC721 protocol to prevent tokens from being forever locked.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must exist and be owned by `from`.\n - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n Emits a {Transfer} event."
},
"functionSelector": "42842e0e",
"id": 70,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "safeTransferFrom",
"nameLocation": "2656:16:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 68,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 63,
"mutability": "mutable",
"name": "from",
"nameLocation": "2690:4:0",
"nodeType": "VariableDeclaration",
"scope": 70,
"src": "2682:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 62,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2682:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 65,
"mutability": "mutable",
"name": "to",
"nameLocation": "2712:2:0",
"nodeType": "VariableDeclaration",
"scope": 70,
"src": "2704:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 64,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2704:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 67,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "2732:7:0",
"nodeType": "VariableDeclaration",
"scope": 70,
"src": "2724:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 66,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "2724:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "2672:73:0"
},
"returnParameters": {
"id": 69,
"nodeType": "ParameterList",
"parameters": [],
"src": "2754:0:0"
},
"scope": 115,
"src": "2647:108:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 71,
"nodeType": "StructuredDocumentation",
"src": "2761:504:0",
"text": " @dev Transfers `tokenId` token from `from` to `to`.\n WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n Requirements:\n - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `tokenId` token must be owned by `from`.\n - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n Emits a {Transfer} event."
},
"functionSelector": "23b872dd",
"id": 80,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "transferFrom",
"nameLocation": "3279:12:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 78,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 73,
"mutability": "mutable",
"name": "from",
"nameLocation": "3309:4:0",
"nodeType": "VariableDeclaration",
"scope": 80,
"src": "3301:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 72,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "3301:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 75,
"mutability": "mutable",
"name": "to",
"nameLocation": "3331:2:0",
"nodeType": "VariableDeclaration",
"scope": 80,
"src": "3323:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 74,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "3323:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 77,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "3351:7:0",
"nodeType": "VariableDeclaration",
"scope": 80,
"src": "3343:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 76,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "3343:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "3291:73:0"
},
"returnParameters": {
"id": 79,
"nodeType": "ParameterList",
"parameters": [],
"src": "3373:0:0"
},
"scope": 115,
"src": "3270:104:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 81,
"nodeType": "StructuredDocumentation",
"src": "3380:452:0",
"text": " @dev Gives permission to `to` to transfer `tokenId` token to another account.\n The approval is cleared when the token is transferred.\n Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n Requirements:\n - The caller must own the token or be an approved operator.\n - `tokenId` must exist.\n Emits an {Approval} event."
},
"functionSelector": "095ea7b3",
"id": 88,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "approve",
"nameLocation": "3846:7:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 86,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 83,
"mutability": "mutable",
"name": "to",
"nameLocation": "3862:2:0",
"nodeType": "VariableDeclaration",
"scope": 88,
"src": "3854:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 82,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "3854:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 85,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "3874:7:0",
"nodeType": "VariableDeclaration",
"scope": 88,
"src": "3866:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 84,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "3866:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "3853:29:0"
},
"returnParameters": {
"id": 87,
"nodeType": "ParameterList",
"parameters": [],
"src": "3891:0:0"
},
"scope": 115,
"src": "3837:55:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 89,
"nodeType": "StructuredDocumentation",
"src": "3898:309:0",
"text": " @dev Approve or remove `operator` as an operator for the caller.\n Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n Requirements:\n - The `operator` cannot be the caller.\n Emits an {ApprovalForAll} event."
},
"functionSelector": "a22cb465",
"id": 96,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "setApprovalForAll",
"nameLocation": "4221:17:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 94,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 91,
"mutability": "mutable",
"name": "operator",
"nameLocation": "4247:8:0",
"nodeType": "VariableDeclaration",
"scope": 96,
"src": "4239:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 90,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "4239:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 93,
"mutability": "mutable",
"name": "_approved",
"nameLocation": "4262:9:0",
"nodeType": "VariableDeclaration",
"scope": 96,
"src": "4257:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 92,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "4257:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "4238:34:0"
},
"returnParameters": {
"id": 95,
"nodeType": "ParameterList",
"parameters": [],
"src": "4281:0:0"
},
"scope": 115,
"src": "4212:70:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 97,
"nodeType": "StructuredDocumentation",
"src": "4288:139:0",
"text": " @dev Returns the account approved for `tokenId` token.\n Requirements:\n - `tokenId` must exist."
},
"functionSelector": "081812fc",
"id": 104,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "getApproved",
"nameLocation": "4441:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 100,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 99,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "4461:7:0",
"nodeType": "VariableDeclaration",
"scope": 104,
"src": "4453:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 98,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "4453:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "4452:17:0"
},
"returnParameters": {
"id": 103,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 102,
"mutability": "mutable",
"name": "operator",
"nameLocation": "4501:8:0",
"nodeType": "VariableDeclaration",
"scope": 104,
"src": "4493:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 101,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "4493:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "4492:18:0"
},
"scope": 115,
"src": "4432:79:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 105,
"nodeType": "StructuredDocumentation",
"src": "4517:138:0",
"text": " @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n See {setApprovalForAll}"
},
"functionSelector": "e985e9c5",
"id": 114,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "isApprovedForAll",
"nameLocation": "4669:16:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 110,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 107,
"mutability": "mutable",
"name": "owner",
"nameLocation": "4694:5:0",
"nodeType": "VariableDeclaration",
"scope": 114,
"src": "4686:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 106,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "4686:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 109,
"mutability": "mutable",
"name": "operator",
"nameLocation": "4709:8:0",
"nodeType": "VariableDeclaration",
"scope": 114,
"src": "4701:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 108,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "4701:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "4685:33:0"
},
"returnParameters": {
"id": 113,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 112,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 114,
"src": "4742:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 111,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "4742:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "4741:6:0"
},
"scope": 115,
"src": "4660:88:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
}
],
"scope": 116,
"src": "250:4500:0",
"usedErrors": []
}
],
"src": "108:4643:0"
},
"id": 0
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol",
"exportedSymbols": {
"IERC165": [
127
]
},
"id": 128,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 117,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "100:23:1"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 118,
"nodeType": "StructuredDocumentation",
"src": "125:279:1",
"text": " @dev Interface of the ERC165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[EIP].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."
},
"fullyImplemented": false,
"id": 127,
"linearizedBaseContracts": [
127
],
"name": "IERC165",
"nameLocation": "415:7:1",
"nodeType": "ContractDefinition",
"nodes": [
{
"documentation": {
"id": 119,
"nodeType": "StructuredDocumentation",
"src": "429:340:1",
"text": " @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."
},
"functionSelector": "01ffc9a7",
"id": 126,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "supportsInterface",
"nameLocation": "783:17:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 122,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 121,
"mutability": "mutable",
"name": "interfaceId",
"nameLocation": "808:11:1",
"nodeType": "VariableDeclaration",
"scope": 126,
"src": "801:18:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"typeName": {
"id": 120,
"name": "bytes4",
"nodeType": "ElementaryTypeName",
"src": "801:6:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"visibility": "internal"
}
],
"src": "800:20:1"
},
"returnParameters": {
"id": 125,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 124,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 126,
"src": "844:4:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 123,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "844:4:1",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "843:6:1"
},
"scope": 127,
"src": "774:76:1",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
}
],
"scope": 128,
"src": "405:447:1",
"usedErrors": []
}
],
"src": "100:753:1"
},
"id": 1
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3266:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:259:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:9"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:9"
},
"nodeType": "YulFunctionCall",
"src": "137:49:9"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:9"
},
"nodeType": "YulFunctionCall",
"src": "121:66:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:9"
},
"nodeType": "YulFunctionCall",
"src": "196:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:9",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:9"
},
"nodeType": "YulFunctionCall",
"src": "237:16:9"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "300:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "303:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "293:6:9"
},
"nodeType": "YulFunctionCall",
"src": "293:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "293:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:9"
},
"nodeType": "YulFunctionCall",
"src": "268:16:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:9"
},
"nodeType": "YulFunctionCall",
"src": "265:25:9"
},
"nodeType": "YulIf",
"src": "262:2:9"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "338:3:9"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "343:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "348:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "316:21:9"
},
"nodeType": "YulFunctionCall",
"src": "316:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "316:39:9"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:9",
"type": ""
}
],
"src": "7:354:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "454:215:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "503:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "512:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "515:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "505:6:9"
},
"nodeType": "YulFunctionCall",
"src": "505:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "505:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "482:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "490:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "478:3:9"
},
"nodeType": "YulFunctionCall",
"src": "478:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "497:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "474:3:9"
},
"nodeType": "YulFunctionCall",
"src": "474:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "467:6:9"
},
"nodeType": "YulFunctionCall",
"src": "467:35:9"
},
"nodeType": "YulIf",
"src": "464:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "528:27:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "548:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "542:5:9"
},
"nodeType": "YulFunctionCall",
"src": "542:13:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "532:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "564:99:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "636:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "644:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "632:3:9"
},
"nodeType": "YulFunctionCall",
"src": "632:17:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "651:6:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "659:3:9"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "573:58:9"
},
"nodeType": "YulFunctionCall",
"src": "573:90:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "564:5:9"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "432:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "440:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "448:5:9",
"type": ""
}
],
"src": "381:288:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "789:538:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "835:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "844:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "847:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "837:6:9"
},
"nodeType": "YulFunctionCall",
"src": "837:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "837:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "810:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "819:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "806:3:9"
},
"nodeType": "YulFunctionCall",
"src": "806:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "831:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "802:3:9"
},
"nodeType": "YulFunctionCall",
"src": "802:32:9"
},
"nodeType": "YulIf",
"src": "799:2:9"
},
{
"nodeType": "YulBlock",
"src": "861:224:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "876:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "900:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "911:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "896:3:9"
},
"nodeType": "YulFunctionCall",
"src": "896:17:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "890:5:9"
},
"nodeType": "YulFunctionCall",
"src": "890:24:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "880:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "961:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "970:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "973:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "963:6:9"
},
"nodeType": "YulFunctionCall",
"src": "963:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "963:12:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "933:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "941:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "930:2:9"
},
"nodeType": "YulFunctionCall",
"src": "930:30:9"
},
"nodeType": "YulIf",
"src": "927:2:9"
},
{
"nodeType": "YulAssignment",
"src": "991:84:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1047:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1058:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1043:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1043:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1067:7:9"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1001:41:9"
},
"nodeType": "YulFunctionCall",
"src": "1001:74:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "991:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1095:225:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1110:39:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1134:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1145:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1130:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1130:18:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1124:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1124:25:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1114:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1196:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1205:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1208:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1198:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1198:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1198:12:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1168:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1176:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1165:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1165:30:9"
},
"nodeType": "YulIf",
"src": "1162:2:9"
},
{
"nodeType": "YulAssignment",
"src": "1226:84:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1282:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1293:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1278:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1278:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1302:7:9"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1236:41:9"
},
"nodeType": "YulFunctionCall",
"src": "1236:74:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1226:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "751:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "762:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "774:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "782:6:9",
"type": ""
}
],
"src": "675:652:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1374:88:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1384:30:9",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1394:18:9"
},
"nodeType": "YulFunctionCall",
"src": "1394:20:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1384:6:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1443:6:9"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1451:4:9"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1423:19:9"
},
"nodeType": "YulFunctionCall",
"src": "1423:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "1423:33:9"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1367:6:9",
"type": ""
}
],
"src": "1333:129:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1508:35:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1518:19:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1534:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1528:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1528:9:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1518:6:9"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1501:6:9",
"type": ""
}
],
"src": "1468:75:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1616:241:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1721:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1723:16:9"
},
"nodeType": "YulFunctionCall",
"src": "1723:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "1723:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1693:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1701:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1690:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1690:30:9"
},
"nodeType": "YulIf",
"src": "1687:2:9"
},
{
"nodeType": "YulAssignment",
"src": "1753:37:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1783:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1761:21:9"
},
"nodeType": "YulFunctionCall",
"src": "1761:29:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1753:4:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1827:23:9",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1839:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1845:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1835:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1835:15:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1827:4:9"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1600:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1611:4:9",
"type": ""
}
],
"src": "1549:308:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:258:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1922:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1931:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1926:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1991:63:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2016:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2021:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2012:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2012:11:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2035:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2040:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2031:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2031:11:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2025:5:9"
},
"nodeType": "YulFunctionCall",
"src": "2025:18:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2005:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2005:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "2005:39:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1952:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1955:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1949:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1949:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1963:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1965:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1974:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1977:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1970:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1970:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1965:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1945:3:9",
"statements": []
},
"src": "1941:113:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2088:76:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2138:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2143:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2134:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2134:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2152:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2127:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2127:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "2127:27:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2069:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2072:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2066:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2066:13:9"
},
"nodeType": "YulIf",
"src": "2063:2:9"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1894:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1899:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1904:6:9",
"type": ""
}
],
"src": "1863:307:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2227:269:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2237:22:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2251:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2257:1:9",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2247:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2247:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2237:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2268:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2298:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2304:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2294:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2294:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2272:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2345:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2359:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2373:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2381:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2369:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2369:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2359:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2325:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2318:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2318:26:9"
},
"nodeType": "YulIf",
"src": "2315:2:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2448:42:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2462:16:9"
},
"nodeType": "YulFunctionCall",
"src": "2462:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "2462:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2412:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2435:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2443:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2432:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2432:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2409:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2409:38:9"
},
"nodeType": "YulIf",
"src": "2406:2:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2211:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2220:6:9",
"type": ""
}
],
"src": "2176:320:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:238:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2555:58:9",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2577:6:9"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2607:4:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2585:21:9"
},
"nodeType": "YulFunctionCall",
"src": "2585:27:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2573:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2573:40:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "2559:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2724:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2726:16:9"
},
"nodeType": "YulFunctionCall",
"src": "2726:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "2726:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2667:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2679:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2664:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2664:34:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2703:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2715:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2700:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2700:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2661:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2661:62:9"
},
"nodeType": "YulIf",
"src": "2658:2:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2762:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2766:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2755:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2755:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "2755:22:9"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2531:6:9",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2539:4:9",
"type": ""
}
],
"src": "2502:281:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2817:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2834:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2837:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2827:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2827:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "2827:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2931:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2934:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2924:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2924:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "2924:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2955:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2958:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2948:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2948:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "2948:15:9"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "2789:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3003:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3020:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3023:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3013:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3013:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "3013:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3117:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3120:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3110:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3110:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "3110:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3141:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3144:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3134:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3134:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "3134:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "2975:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3209:54:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3219:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3237:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3244:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3233:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3233:14:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3253:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3249:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3249:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3229:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3229:28:9"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3219:6:9"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3192:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3202:6:9",
"type": ""
}
],
"src": "3161:102:9"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_memory_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_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 finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n}\n",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040516200274d3803806200274d833981810160405281019062000037919062000193565b81600090805190602001906200004f92919062000071565b5080600190805190602001906200006892919062000071565b50505062000376565b8280546200007f906200029b565b90600052602060002090601f016020900481019282620000a35760008555620000ef565b82601f10620000be57805160ff1916838001178555620000ef565b82800160010185558215620000ef579182015b82811115620000ee578251825591602001919060010190620000d1565b5b509050620000fe919062000102565b5090565b5b808211156200011d57600081600090555060010162000103565b5090565b60006200013862000132846200022f565b62000206565b9050828152602081018484840111156200015157600080fd5b6200015e84828562000265565b509392505050565b600082601f8301126200017857600080fd5b81516200018a84826020860162000121565b91505092915050565b60008060408385031215620001a757600080fd5b600083015167ffffffffffffffff811115620001c257600080fd5b620001d08582860162000166565b925050602083015167ffffffffffffffff811115620001ee57600080fd5b620001fc8582860162000166565b9150509250929050565b60006200021262000225565b9050620002208282620002d1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200024d576200024c62000336565b5b620002588262000365565b9050602081019050919050565b60005b838110156200028557808201518184015260208101905062000268565b8381111562000295576000848401525b50505050565b60006002820490506001821680620002b457607f821691505b60208210811415620002cb57620002ca62000307565b5b50919050565b620002dc8262000365565b810181811067ffffffffffffffff82111715620002fe57620002fd62000336565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6123c780620003866000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e991906116a1565b6102bc565b6040516100fb9190611a1b565b60405180910390f35b61010c61039e565b6040516101199190611a36565b60405180910390f35b61013c600480360381019061013791906116f3565b610430565b60405161014991906119b4565b60405180910390f35b61016c60048036038101906101679190611665565b6104b5565b005b6101886004803603810190610183919061155f565b6105cd565b005b6101a4600480360381019061019f919061155f565b61062d565b005b6101c060048036038101906101bb91906116f3565b61064d565b6040516101cd91906119b4565b60405180910390f35b6101f060048036038101906101eb91906114fa565b6106ff565b6040516101fd9190611bd8565b60405180910390f35b61020e6107b7565b60405161021b9190611a36565b60405180910390f35b61023e60048036038101906102399190611629565b610849565b005b61025a600480360381019061025591906115ae565b61085f565b005b610276600480360381019061027191906116f3565b6108c1565b6040516102839190611a36565b60405180910390f35b6102a660048036038101906102a19190611523565b610968565b6040516102b39190611a1b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103975750610396826109fc565b5b9050919050565b6060600080546103ad90611dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611dfd565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610a66565b61047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611b58565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611b98565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610ad2565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610ad2565b610968565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611af8565b60405180910390fd5b6105c88383610ada565b505050565b6105de6105d8610ad2565b82610b93565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611bb8565b60405180910390fd5b610628838383610c71565b505050565b6106488383836040518060200160405280600081525061085f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611b38565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790611b18565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611dfd565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b61085b610854610ad2565b8383610ed8565b5050565b61087061086a610ad2565b83610b93565b6108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611bb8565b60405180910390fd5b6108bb84848484611045565b50505050565b60606108cc82610a66565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290611b78565b60405180910390fd5b60006109156110a1565b905060008151116109355760405180602001604052806000815250610960565b8061093f846110b8565b604051602001610950929190611990565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b4d8361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b9e82610a66565b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611ad8565b60405180910390fd5b6000610be88361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c298185610968565b5b80610c6857508373ffffffffffffffffffffffffffffffffffffffff16610c5084610430565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610c918261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90611a78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90611a98565b60405180910390fd5b610d62838383611265565b610d6d600082610ada565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbd9190611d13565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e149190611c8c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed383838361126a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90611ab8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110389190611a1b565b60405180910390a3505050565b611050848484610c71565b61105c8484848461126f565b61109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290611a58565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611100576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611260565b600082905060005b6000821461113257808061111b90611e60565b915050600a8261112b9190611ce2565b9150611108565b60008167ffffffffffffffff811115611174577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111a65781602001600182028036833780820191505090505b5090505b60008514611259576001826111bf9190611d13565b9150600a856111ce9190611ea9565b60306111da9190611c8c565b60f81b818381518110611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112529190611ce2565b94506111aa565b8093505050505b919050565b505050565b505050565b60006112908473ffffffffffffffffffffffffffffffffffffffff16611406565b156113f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026112b9610ad2565b8786866040518563ffffffff1660e01b81526004016112db94939291906119cf565b602060405180830381600087803b1580156112f557600080fd5b505af192505050801561132657506040513d601f19601f8201168201806040525081019061132391906116ca565b60015b6113a9573d8060008114611356576040519150601f19603f3d011682016040523d82523d6000602084013e61135b565b606091505b506000815114156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890611a58565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506113fe565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600061143c61143784611c18565b611bf3565b90508281526020810184848401111561145457600080fd5b61145f848285611dbb565b509392505050565b60008135905061147681612335565b92915050565b60008135905061148b8161234c565b92915050565b6000813590506114a081612363565b92915050565b6000815190506114b581612363565b92915050565b600082601f8301126114cc57600080fd5b81356114dc848260208601611429565b91505092915050565b6000813590506114f48161237a565b92915050565b60006020828403121561150c57600080fd5b600061151a84828501611467565b91505092915050565b6000806040838503121561153657600080fd5b600061154485828601611467565b925050602061155585828601611467565b9150509250929050565b60008060006060848603121561157457600080fd5b600061158286828701611467565b935050602061159386828701611467565b92505060406115a4868287016114e5565b9150509250925092565b600080600080608085870312156115c457600080fd5b60006115d287828801611467565b94505060206115e387828801611467565b93505060406115f4878288016114e5565b925050606085013567ffffffffffffffff81111561161157600080fd5b61161d878288016114bb565b91505092959194509250565b6000806040838503121561163c57600080fd5b600061164a85828601611467565b925050602061165b8582860161147c565b9150509250929050565b6000806040838503121561167857600080fd5b600061168685828601611467565b9250506020611697858286016114e5565b9150509250929050565b6000602082840312156116b357600080fd5b60006116c184828501611491565b91505092915050565b6000602082840312156116dc57600080fd5b60006116ea848285016114a6565b91505092915050565b60006020828403121561170557600080fd5b6000611713848285016114e5565b91505092915050565b61172581611d47565b82525050565b61173481611d59565b82525050565b600061174582611c49565b61174f8185611c5f565b935061175f818560208601611dca565b61176881611f96565b840191505092915050565b600061177e82611c54565b6117888185611c70565b9350611798818560208601611dca565b6117a181611f96565b840191505092915050565b60006117b782611c54565b6117c18185611c81565b93506117d1818560208601611dca565b80840191505092915050565b60006117ea603283611c70565b91506117f582611fa7565b604082019050919050565b600061180d602583611c70565b915061181882611ff6565b604082019050919050565b6000611830602483611c70565b915061183b82612045565b604082019050919050565b6000611853601983611c70565b915061185e82612094565b602082019050919050565b6000611876602c83611c70565b9150611881826120bd565b604082019050919050565b6000611899603883611c70565b91506118a48261210c565b604082019050919050565b60006118bc602a83611c70565b91506118c78261215b565b604082019050919050565b60006118df602983611c70565b91506118ea826121aa565b604082019050919050565b6000611902602c83611c70565b915061190d826121f9565b604082019050919050565b6000611925602f83611c70565b915061193082612248565b604082019050919050565b6000611948602183611c70565b915061195382612297565b604082019050919050565b600061196b603183611c70565b9150611976826122e6565b604082019050919050565b61198a81611db1565b82525050565b600061199c82856117ac565b91506119a882846117ac565b91508190509392505050565b60006020820190506119c9600083018461171c565b92915050565b60006080820190506119e4600083018761171c565b6119f1602083018661171c565b6119fe6040830185611981565b8181036060830152611a10818461173a565b905095945050505050565b6000602082019050611a30600083018461172b565b92915050565b60006020820190508181036000830152611a508184611773565b905092915050565b60006020820190508181036000830152611a71816117dd565b9050919050565b60006020820190508181036000830152611a9181611800565b9050919050565b60006020820190508181036000830152611ab181611823565b9050919050565b60006020820190508181036000830152611ad181611846565b9050919050565b60006020820190508181036000830152611af181611869565b9050919050565b60006020820190508181036000830152611b118161188c565b9050919050565b60006020820190508181036000830152611b31816118af565b9050919050565b60006020820190508181036000830152611b51816118d2565b9050919050565b60006020820190508181036000830152611b71816118f5565b9050919050565b60006020820190508181036000830152611b9181611918565b9050919050565b60006020820190508181036000830152611bb18161193b565b9050919050565b60006020820190508181036000830152611bd18161195e565b9050919050565b6000602082019050611bed6000830184611981565b92915050565b6000611bfd611c0e565b9050611c098282611e2f565b919050565b6000604051905090565b600067ffffffffffffffff821115611c3357611c32611f67565b5b611c3c82611f96565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611c9782611db1565b9150611ca283611db1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cd757611cd6611eda565b5b828201905092915050565b6000611ced82611db1565b9150611cf883611db1565b925082611d0857611d07611f09565b5b828204905092915050565b6000611d1e82611db1565b9150611d2983611db1565b925082821015611d3c57611d3b611eda565b5b828203905092915050565b6000611d5282611d91565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611de8578082015181840152602081019050611dcd565b83811115611df7576000848401525b50505050565b60006002820490506001821680611e1557607f821691505b60208210811415611e2957611e28611f38565b5b50919050565b611e3882611f96565b810181811067ffffffffffffffff82111715611e5757611e56611f67565b5b80604052505050565b6000611e6b82611db1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611e9e57611e9d611eda565b5b600182019050919050565b6000611eb482611db1565b9150611ebf83611db1565b925082611ecf57611ece611f09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61233e81611d47565b811461234957600080fd5b50565b61235581611d59565b811461236057600080fd5b50565b61236c81611d65565b811461237757600080fd5b50565b61238381611db1565b811461238e57600080fd5b5056fea264697066735822122037591c6204144cb165a92011e76de38e52b5985e3de7d78e8d95478fd9035d2864736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x274D CODESIZE SUB DUP1 PUSH3 0x274D DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x193 JUMP JUMPDEST DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x4F SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x68 SWAP3 SWAP2 SWAP1 PUSH3 0x71 JUMP JUMPDEST POP POP POP PUSH3 0x376 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x7F SWAP1 PUSH3 0x29B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xA3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xBE JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xEF JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xEF JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xEE JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xD1 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xFE SWAP2 SWAP1 PUSH3 0x102 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x11D JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x103 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x138 PUSH3 0x132 DUP5 PUSH3 0x22F JUMP JUMPDEST PUSH3 0x206 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x151 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x15E DUP5 DUP3 DUP6 PUSH3 0x265 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x178 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0x18A DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x121 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1A7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1D0 DUP6 DUP3 DUP7 ADD PUSH3 0x166 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1FC DUP6 DUP3 DUP7 ADD PUSH3 0x166 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x212 PUSH3 0x225 JUMP JUMPDEST SWAP1 POP PUSH3 0x220 DUP3 DUP3 PUSH3 0x2D1 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x24D JUMPI PUSH3 0x24C PUSH3 0x336 JUMP JUMPDEST JUMPDEST PUSH3 0x258 DUP3 PUSH3 0x365 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x285 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x268 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x295 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2B4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x2CB JUMPI PUSH3 0x2CA PUSH3 0x307 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x2DC DUP3 PUSH3 0x365 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x2FE JUMPI PUSH3 0x2FD PUSH3 0x336 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x23C7 DUP1 PUSH3 0x386 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 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x16A1 JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x19B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x1665 JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x19B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x14FA JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1BD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x1629 JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x15AE JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x1523 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0x9FC JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1DFD 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 0x3D9 SWAP1 PUSH2 0x1DFD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 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 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x1B58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xAD2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xAD2 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1AF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xADA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xAD2 JUMP JUMPDEST DUP3 PUSH2 0xB93 JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1BB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xC71 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x85F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x1B38 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x1B18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7C6 SWAP1 PUSH2 0x1DFD 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 0x7F2 SWAP1 PUSH2 0x1DFD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F 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 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x85B PUSH2 0x854 PUSH2 0xAD2 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xED8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x870 PUSH2 0x86A PUSH2 0xAD2 JUMP JUMPDEST DUP4 PUSH2 0xB93 JUMP JUMPDEST PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1BB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8BB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1045 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x8CC DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0x90B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x902 SWAP1 PUSH2 0x1B78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x915 PUSH2 0x10A1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x935 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x960 JUMP JUMPDEST DUP1 PUSH2 0x93F DUP5 PUSH2 0x10B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x950 SWAP3 SWAP2 SWAP1 PUSH2 0x1990 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 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 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB4D DUP4 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB9E DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0xBDD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD4 SWAP1 PUSH2 0x1AD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBE8 DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xC2A JUMPI POP PUSH2 0xC29 DUP2 DUP6 PUSH2 0x968 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xC68 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC50 DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC91 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCE7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCDE SWAP1 PUSH2 0x1A78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD57 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD4E SWAP1 PUSH2 0x1A98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD62 DUP4 DUP4 DUP4 PUSH2 0x1265 JUMP JUMPDEST PUSH2 0xD6D PUSH1 0x0 DUP3 PUSH2 0xADA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xDBD SWAP2 SWAP1 PUSH2 0x1D13 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xE14 SWAP2 SWAP1 PUSH2 0x1C8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xED3 DUP4 DUP4 DUP4 PUSH2 0x126A JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF47 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF3E SWAP1 PUSH2 0x1AB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 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 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1038 SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1050 DUP5 DUP5 DUP5 PUSH2 0xC71 JUMP JUMPDEST PUSH2 0x105C DUP5 DUP5 DUP5 DUP5 PUSH2 0x126F JUMP JUMPDEST PUSH2 0x109B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1092 SWAP1 PUSH2 0x1A58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1100 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1260 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1132 JUMPI DUP1 DUP1 PUSH2 0x111B SWAP1 PUSH2 0x1E60 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x112B SWAP2 SWAP1 PUSH2 0x1CE2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1108 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1174 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x11A6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x1259 JUMPI PUSH1 0x1 DUP3 PUSH2 0x11BF SWAP2 SWAP1 PUSH2 0x1D13 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x11CE SWAP2 SWAP1 PUSH2 0x1EA9 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x11DA SWAP2 SWAP1 PUSH2 0x1C8C JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1216 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1252 SWAP2 SWAP1 PUSH2 0x1CE2 JUMP JUMPDEST SWAP5 POP PUSH2 0x11AA JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1290 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1406 JUMP JUMPDEST ISZERO PUSH2 0x13F9 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x12B9 PUSH2 0xAD2 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12DB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1326 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1323 SWAP2 SWAP1 PUSH2 0x16CA JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x13A9 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1356 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x135B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x13A1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1398 SWAP1 PUSH2 0x1A58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x13FE JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x143C PUSH2 0x1437 DUP5 PUSH2 0x1C18 JUMP JUMPDEST PUSH2 0x1BF3 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x145F DUP5 DUP3 DUP6 PUSH2 0x1DBB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1476 DUP2 PUSH2 0x2335 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x148B DUP2 PUSH2 0x234C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14A0 DUP2 PUSH2 0x2363 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x14B5 DUP2 PUSH2 0x2363 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x14CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x14DC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1429 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14F4 DUP2 PUSH2 0x237A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x150C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x151A DUP5 DUP3 DUP6 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1536 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1544 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1555 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 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 0x1574 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1582 DUP7 DUP3 DUP8 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1593 DUP7 DUP3 DUP8 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15A4 DUP7 DUP3 DUP8 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x15C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x15D2 DUP8 DUP3 DUP9 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x15E3 DUP8 DUP3 DUP9 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x15F4 DUP8 DUP3 DUP9 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1611 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x161D DUP8 DUP3 DUP9 ADD PUSH2 0x14BB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x163C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x164A DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x165B DUP6 DUP3 DUP7 ADD PUSH2 0x147C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1678 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1686 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1697 DUP6 DUP3 DUP7 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16C1 DUP5 DUP3 DUP6 ADD PUSH2 0x1491 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16EA DUP5 DUP3 DUP6 ADD PUSH2 0x14A6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1705 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1713 DUP5 DUP3 DUP6 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1725 DUP2 PUSH2 0x1D47 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1734 DUP2 PUSH2 0x1D59 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1745 DUP3 PUSH2 0x1C49 JUMP JUMPDEST PUSH2 0x174F DUP2 DUP6 PUSH2 0x1C5F JUMP JUMPDEST SWAP4 POP PUSH2 0x175F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST PUSH2 0x1768 DUP2 PUSH2 0x1F96 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x177E DUP3 PUSH2 0x1C54 JUMP JUMPDEST PUSH2 0x1788 DUP2 DUP6 PUSH2 0x1C70 JUMP JUMPDEST SWAP4 POP PUSH2 0x1798 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST PUSH2 0x17A1 DUP2 PUSH2 0x1F96 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B7 DUP3 PUSH2 0x1C54 JUMP JUMPDEST PUSH2 0x17C1 DUP2 DUP6 PUSH2 0x1C81 JUMP JUMPDEST SWAP4 POP PUSH2 0x17D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17EA PUSH1 0x32 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x17F5 DUP3 PUSH2 0x1FA7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180D PUSH1 0x25 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1818 DUP3 PUSH2 0x1FF6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1830 PUSH1 0x24 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x183B DUP3 PUSH2 0x2045 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1853 PUSH1 0x19 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x185E DUP3 PUSH2 0x2094 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1876 PUSH1 0x2C DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1881 DUP3 PUSH2 0x20BD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1899 PUSH1 0x38 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18A4 DUP3 PUSH2 0x210C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18BC PUSH1 0x2A DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18C7 DUP3 PUSH2 0x215B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18DF PUSH1 0x29 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18EA DUP3 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1902 PUSH1 0x2C DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x190D DUP3 PUSH2 0x21F9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1925 PUSH1 0x2F DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1930 DUP3 PUSH2 0x2248 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1948 PUSH1 0x21 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1953 DUP3 PUSH2 0x2297 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x196B PUSH1 0x31 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1976 DUP3 PUSH2 0x22E6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x198A DUP2 PUSH2 0x1DB1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x199C DUP3 DUP6 PUSH2 0x17AC JUMP JUMPDEST SWAP2 POP PUSH2 0x19A8 DUP3 DUP5 PUSH2 0x17AC JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19C9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x171C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x19E4 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x171C JUMP JUMPDEST PUSH2 0x19F1 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x171C JUMP JUMPDEST PUSH2 0x19FE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1981 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A10 DUP2 DUP5 PUSH2 0x173A JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A30 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x172B 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 0x1A50 DUP2 DUP5 PUSH2 0x1773 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 0x1A71 DUP2 PUSH2 0x17DD 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 0x1A91 DUP2 PUSH2 0x1800 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 0x1AB1 DUP2 PUSH2 0x1823 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 0x1AD1 DUP2 PUSH2 0x1846 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 0x1AF1 DUP2 PUSH2 0x1869 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 0x1B11 DUP2 PUSH2 0x188C 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 0x1B31 DUP2 PUSH2 0x18AF 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 0x1B51 DUP2 PUSH2 0x18D2 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 0x1B71 DUP2 PUSH2 0x18F5 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 0x1B91 DUP2 PUSH2 0x1918 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 0x1BB1 DUP2 PUSH2 0x193B 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 0x1BD1 DUP2 PUSH2 0x195E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1BED PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1981 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BFD PUSH2 0x1C0E JUMP JUMPDEST SWAP1 POP PUSH2 0x1C09 DUP3 DUP3 PUSH2 0x1E2F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C33 JUMPI PUSH2 0x1C32 PUSH2 0x1F67 JUMP JUMPDEST JUMPDEST PUSH2 0x1C3C DUP3 PUSH2 0x1F96 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 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 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C97 DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CA2 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1CD7 JUMPI PUSH2 0x1CD6 PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CED DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CF8 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1D08 JUMPI PUSH2 0x1D07 PUSH2 0x1F09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D1E DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D29 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1D3C JUMPI PUSH2 0x1D3B PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D52 DUP3 PUSH2 0x1D91 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND 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 DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1DE8 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1DCD JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1DF7 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 0x1E15 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1E29 JUMPI PUSH2 0x1E28 PUSH2 0x1F38 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E38 DUP3 PUSH2 0x1F96 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1E57 JUMPI PUSH2 0x1E56 PUSH2 0x1F67 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E6B DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1E9E JUMPI PUSH2 0x1E9D PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EB4 DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EBF DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1ECF JUMPI PUSH2 0x1ECE PUSH2 0x1F09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP 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 0x12 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x233E DUP2 PUSH2 0x1D47 JUMP JUMPDEST DUP2 EQ PUSH2 0x2349 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2355 DUP2 PUSH2 0x1D59 JUMP JUMPDEST DUP2 EQ PUSH2 0x2360 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x236C DUP2 PUSH2 0x1D65 JUMP JUMPDEST DUP2 EQ PUSH2 0x2377 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2383 DUP2 PUSH2 0x1DB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x238E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATACOPY MSIZE SHR PUSH3 0x4144C 0xB1 PUSH6 0xA92011E76DE3 DUP15 MSTORE 0xB5 SWAP9 0x5E RETURNDATASIZE 0xE7 0xD7 DUP15 DUP14 SWAP6 SELFBALANCE DUP16 0xD9 SUB 0x5D 0x28 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ",
"sourceMap": "628:13658:0:-:0;;;1390:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1464:5;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;628:13658;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:354:9:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:2;;;303:1;300;293:12;262:2;316:39;348:6;343:3;338;316:39;:::i;:::-;102:259;;;;;;:::o;381:288::-;448:5;497:3;490:4;482:6;478:17;474:27;464:2;;515:1;512;505:12;464:2;548:6;542:13;573:90;659:3;651:6;644:4;636:6;632:17;573:90;:::i;:::-;564:99;;454:215;;;;;:::o;675:652::-;774:6;782;831:2;819:9;810:7;806:23;802:32;799:2;;;847:1;844;837:12;799:2;911:1;900:9;896:17;890:24;941:18;933:6;930:30;927:2;;;973:1;970;963:12;927:2;1001:74;1067:7;1058:6;1047:9;1043:22;1001:74;:::i;:::-;991:84;;861:224;1145:2;1134:9;1130:18;1124:25;1176:18;1168:6;1165:30;1162:2;;;1208:1;1205;1198:12;1162:2;1236:74;1302:7;1293:6;1282:9;1278:22;1236:74;:::i;:::-;1226:84;;1095:225;789:538;;;;;:::o;1333:129::-;1367:6;1394:20;;:::i;:::-;1384:30;;1423:33;1451:4;1443:6;1423:33;:::i;:::-;1374:88;;;:::o;1468:75::-;1501:6;1534:2;1528:9;1518:19;;1508:35;:::o;1549:308::-;1611:4;1701:18;1693:6;1690:30;1687:2;;;1723:18;;:::i;:::-;1687:2;1761:29;1783:6;1761:29;:::i;:::-;1753:37;;1845:4;1839;1835:15;1827:23;;1616:241;;;:::o;1863:307::-;1931:1;1941:113;1955:6;1952:1;1949:13;1941:113;;;2040:1;2035:3;2031:11;2025:18;2021:1;2016:3;2012:11;2005:39;1977:2;1974:1;1970:10;1965:15;;1941:113;;;2072:6;2069:1;2066:13;2063:2;;;2152:1;2143:6;2138:3;2134:16;2127:27;2063:2;1912:258;;;;:::o;2176:320::-;2220:6;2257:1;2251:4;2247:12;2237:22;;2304:1;2298:4;2294:12;2325:18;2315:2;;2381:4;2373:6;2369:17;2359:27;;2315:2;2443;2435:6;2432:14;2412:18;2409:38;2406:2;;;2462:18;;:::i;:::-;2406:2;2227:269;;;;:::o;2502:281::-;2585:27;2607:4;2585:27;:::i;:::-;2577:6;2573:40;2715:6;2703:10;2700:22;2679:18;2667:10;2664:34;2661:62;2658:2;;;2726:18;;:::i;:::-;2658:2;2766:10;2762:2;2755:22;2545:238;;;:::o;2789:180::-;2837:77;2834:1;2827:88;2934:4;2931:1;2924:15;2958:4;2955:1;2948:15;2975:180;3023:77;3020:1;3013:88;3120:4;3117:1;3110:15;3144:4;3141:1;3134:15;3161:102;3202:6;3253:2;3249:7;3244:2;3237:5;3233:14;3229:28;3219:38;;3209:54;;;:::o;628:13658:0:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:26336:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:260:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:9"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:9"
},
"nodeType": "YulFunctionCall",
"src": "125:48:9"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:9"
},
"nodeType": "YulFunctionCall",
"src": "109:65:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:9"
},
"nodeType": "YulFunctionCall",
"src": "183:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:9",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:9"
},
"nodeType": "YulFunctionCall",
"src": "224:16:9"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "287:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "290:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "280:6:9"
},
"nodeType": "YulFunctionCall",
"src": "280:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "280:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:9"
},
"nodeType": "YulFunctionCall",
"src": "255:16:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:9"
},
"nodeType": "YulFunctionCall",
"src": "252:25:9"
},
"nodeType": "YulIf",
"src": "249:2:9"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "327:3:9"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "332:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "337:6:9"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "303:23:9"
},
"nodeType": "YulFunctionCall",
"src": "303:41:9"
},
"nodeType": "YulExpressionStatement",
"src": "303:41:9"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:9",
"type": ""
}
],
"src": "7:343:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "408:87:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "418:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "440:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "427:12:9"
},
"nodeType": "YulFunctionCall",
"src": "427:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "418:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:9"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "456:26:9"
},
"nodeType": "YulFunctionCall",
"src": "456:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "456:33:9"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "386:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "394:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "402:5:9",
"type": ""
}
],
"src": "356:139:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "550:84:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "560:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "582:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "569:12:9"
},
"nodeType": "YulFunctionCall",
"src": "569:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "560:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "622:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "598:23:9"
},
"nodeType": "YulFunctionCall",
"src": "598:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "598:30:9"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "528:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "536:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "544:5:9",
"type": ""
}
],
"src": "501:133:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "691:86:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "701:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "723:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "710:12:9"
},
"nodeType": "YulFunctionCall",
"src": "710:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "701:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "765:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "739:25:9"
},
"nodeType": "YulFunctionCall",
"src": "739:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "739:32:9"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "669:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "677:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "685:5:9",
"type": ""
}
],
"src": "640:137:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "845:79:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "855:22:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "870:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "864:5:9"
},
"nodeType": "YulFunctionCall",
"src": "864:13:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "855:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "886:25:9"
},
"nodeType": "YulFunctionCall",
"src": "886:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "886:32:9"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "823:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "831:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "839:5:9",
"type": ""
}
],
"src": "783:141:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1004:210:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1053:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1062:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1065:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1055:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1055:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1055:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1032:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1040:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1028:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1028:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1047:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1024:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1024:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1017:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1017:35:9"
},
"nodeType": "YulIf",
"src": "1014:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1078:34:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1105:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1092:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1092:20:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1082:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1121:87:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1181:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1189:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1177:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1177:17:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1196:6:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1204:3:9"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1130:46:9"
},
"nodeType": "YulFunctionCall",
"src": "1130:78:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1121:5:9"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "982:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "990:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "998:5:9",
"type": ""
}
],
"src": "943:271:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1272:87:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1282:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1304:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1291:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1291:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1282:5:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1347:5:9"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1320:26:9"
},
"nodeType": "YulFunctionCall",
"src": "1320:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "1320:33:9"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1250:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1258:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1266:5:9",
"type": ""
}
],
"src": "1220:139:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1431:196:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1477:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1489:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1479:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1479:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1479:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1452:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1461:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1448:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1448:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1473:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1444:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1444:32:9"
},
"nodeType": "YulIf",
"src": "1441:2:9"
},
{
"nodeType": "YulBlock",
"src": "1503:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1518:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1532:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1522:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1547:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1582:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1593:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1578:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1578:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1602:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1557:20:9"
},
"nodeType": "YulFunctionCall",
"src": "1557:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1547:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1401:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1412:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1424:6:9",
"type": ""
}
],
"src": "1365:262:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1716:324:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1762:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1771:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1774:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1764:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1764:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "1764:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1737:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1746:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1733:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1733:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1758:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1729:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1729:32:9"
},
"nodeType": "YulIf",
"src": "1726:2:9"
},
{
"nodeType": "YulBlock",
"src": "1788:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1803:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1817:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1807:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1832:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1867:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1878:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1863:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1863:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1887:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1842:20:9"
},
"nodeType": "YulFunctionCall",
"src": "1842:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1832:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1915:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1930:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1944:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1934:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1960:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1995:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2006:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1991:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1991:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2015:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1970:20:9"
},
"nodeType": "YulFunctionCall",
"src": "1970:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1960:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1678:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1689:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1701:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1709:6:9",
"type": ""
}
],
"src": "1633:407:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2146:452:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2192:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2201:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2204:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2194:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2194:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "2194:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2167:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2176:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2163:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2163:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2188:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2159:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2159:32:9"
},
"nodeType": "YulIf",
"src": "2156:2:9"
},
{
"nodeType": "YulBlock",
"src": "2218:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2233:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2247:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2237:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2262:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2297:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2308:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2293:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2293:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2317:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2272:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2272:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2262:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2345:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2360:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2374:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2364:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2390:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2425:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2436:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2421:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2421:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2445:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2400:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2400:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2390:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2473:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2488:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2502:2:9",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2492:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2518:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2553:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2564:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2549:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2549:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2573:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2528:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2528:53:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2518:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2100:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2111:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2123:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2131:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2139:6:9",
"type": ""
}
],
"src": "2046:552:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2730:683:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2777:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2786:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2789:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2779:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2779:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "2779:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2751:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2760:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2747:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2747:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2772:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2743:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2743:33:9"
},
"nodeType": "YulIf",
"src": "2740:2:9"
},
{
"nodeType": "YulBlock",
"src": "2803:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2818:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2832:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2822:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2847:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2882:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2893:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2878:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2878:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2902:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2857:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2857:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2847:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2930:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2945:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2959:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2949:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2975:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3010:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3021:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3006:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3006:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3030:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2985:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2985:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2975:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3058:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3073:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3087:2:9",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3077:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3103:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3138:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3149:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3134:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3134:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3158:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3113:20:9"
},
"nodeType": "YulFunctionCall",
"src": "3113:53:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3103:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3186:220:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3201:46:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3232:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3243:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3228:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3228:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3215:12:9"
},
"nodeType": "YulFunctionCall",
"src": "3215:32:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3205:6:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3294:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3303:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3306:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3296:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3296:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3296:12:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3266:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3274:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3263:2:9"
},
"nodeType": "YulFunctionCall",
"src": "3263:30:9"
},
"nodeType": "YulIf",
"src": "3260:2:9"
},
{
"nodeType": "YulAssignment",
"src": "3324:72:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3368:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3379:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3364:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3364:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3388:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3334:29:9"
},
"nodeType": "YulFunctionCall",
"src": "3334:62:9"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3324:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2676:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2687:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2699:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2707:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2715:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2723:6:9",
"type": ""
}
],
"src": "2604:809:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3499:321:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3545:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3554:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3557:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3547:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3547:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3547:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3520:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3529:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3516:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3516:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3541:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3512:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3512:32:9"
},
"nodeType": "YulIf",
"src": "3509:2:9"
},
{
"nodeType": "YulBlock",
"src": "3571:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3586:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3600:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3590:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3615:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3650:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3661:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3646:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3646:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3670:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3625:20:9"
},
"nodeType": "YulFunctionCall",
"src": "3625:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3615:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3698:115:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3713:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3727:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3717:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3743:60:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3775:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3786:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3771:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3771:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3795:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "3753:17:9"
},
"nodeType": "YulFunctionCall",
"src": "3753:50:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3743:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3461:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3472:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3484:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3492:6:9",
"type": ""
}
],
"src": "3419:401:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3909:324:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3955:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3964:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3967:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3957:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3957:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "3957:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3930:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3939:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3926:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3926:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3951:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3922:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3922:32:9"
},
"nodeType": "YulIf",
"src": "3919:2:9"
},
{
"nodeType": "YulBlock",
"src": "3981:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3996:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4010:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4000:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4025:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4060:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4071:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4056:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4056:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4080:7:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4035:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4035:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4025:6:9"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4108:118:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4123:16:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4137:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4127:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4153:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4188:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4199:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4184:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4184:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4208:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4163:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4163:53:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4153:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3871:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3882:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3894:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3902:6:9",
"type": ""
}
],
"src": "3826:407:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4304:195:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4350:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4359:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4362:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4352:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4352:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "4352:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4325:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4334:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4321:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4321:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4346:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4317:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4317:32:9"
},
"nodeType": "YulIf",
"src": "4314:2:9"
},
{
"nodeType": "YulBlock",
"src": "4376:116:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4391:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4405:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4395:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4420:62:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4454:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4465:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4450:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4450:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4474:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "4430:19:9"
},
"nodeType": "YulFunctionCall",
"src": "4430:52:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4420:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4274:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4285:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4297:6:9",
"type": ""
}
],
"src": "4239:260:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4581:206:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4627:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4636:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4639:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4629:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4629:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "4629:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4602:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4611:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4598:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4598:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4623:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4594:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4594:32:9"
},
"nodeType": "YulIf",
"src": "4591:2:9"
},
{
"nodeType": "YulBlock",
"src": "4653:127:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4668:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4682:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4672:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4697:73:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4742:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4753:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4738:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4738:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4762:7:9"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "4707:30:9"
},
"nodeType": "YulFunctionCall",
"src": "4707:63:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4697:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4551:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4562:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4574:6:9",
"type": ""
}
],
"src": "4505:282:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4859:196:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4905:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4914:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4917:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4907:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4907:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "4907:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4880:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4889:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4876:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4876:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4901:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4872:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4872:32:9"
},
"nodeType": "YulIf",
"src": "4869:2:9"
},
{
"nodeType": "YulBlock",
"src": "4931:117:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4946:15:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4960:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4950:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4975:63:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5010:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5021:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5006:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5006:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5030:7:9"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4985:20:9"
},
"nodeType": "YulFunctionCall",
"src": "4985:53:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4975:6:9"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4829:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4840:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4852:6:9",
"type": ""
}
],
"src": "4793:262:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5126:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5143:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5166:5:9"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5148:17:9"
},
"nodeType": "YulFunctionCall",
"src": "5148:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5136:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5136:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "5136:37:9"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5114:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5121:3:9",
"type": ""
}
],
"src": "5061:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5244:50:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5261:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5281:5:9"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "5266:14:9"
},
"nodeType": "YulFunctionCall",
"src": "5266:21:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5254:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5254:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "5254:34:9"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5232:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5239:3:9",
"type": ""
}
],
"src": "5185:109:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5390:270:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5400:52:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5446:5:9"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5414:31:9"
},
"nodeType": "YulFunctionCall",
"src": "5414:38:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5404:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5461:77:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5526:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5531:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5468:57:9"
},
"nodeType": "YulFunctionCall",
"src": "5468:70:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5461:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5573:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5580:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5569:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5569:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5587:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5592:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5547:21:9"
},
"nodeType": "YulFunctionCall",
"src": "5547:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "5547:52:9"
},
{
"nodeType": "YulAssignment",
"src": "5608:46:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5619:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5646:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5624:21:9"
},
"nodeType": "YulFunctionCall",
"src": "5624:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5615:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5615:39:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5608:3:9"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5371:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5378:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5386:3:9",
"type": ""
}
],
"src": "5300:360:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5758:272:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5768:53:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5815:5:9"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5782:32:9"
},
"nodeType": "YulFunctionCall",
"src": "5782:39:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5772:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5830:78:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5896:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5901:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5837:58:9"
},
"nodeType": "YulFunctionCall",
"src": "5837:71:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5830:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5943:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5950:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5939:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5939:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5957:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5962:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5917:21:9"
},
"nodeType": "YulFunctionCall",
"src": "5917:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "5917:52:9"
},
{
"nodeType": "YulAssignment",
"src": "5978:46:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5989:3:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6016:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5994:21:9"
},
"nodeType": "YulFunctionCall",
"src": "5994:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5985:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5985:39:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5978:3:9"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5739:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5746:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5754:3:9",
"type": ""
}
],
"src": "5666:364:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6146:267:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6156:53:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6203:5:9"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6170:32:9"
},
"nodeType": "YulFunctionCall",
"src": "6170:39:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6160:6:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6218:96:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6302:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6307:6:9"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6225:76:9"
},
"nodeType": "YulFunctionCall",
"src": "6225:89:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6218:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6349:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6356:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6345:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6345:16:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6363:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6368:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6323:21:9"
},
"nodeType": "YulFunctionCall",
"src": "6323:52:9"
},
"nodeType": "YulExpressionStatement",
"src": "6323:52:9"
},
{
"nodeType": "YulAssignment",
"src": "6384:23:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6395:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6400:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6391:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6391:16:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6384:3:9"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6127:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6134:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6142:3:9",
"type": ""
}
],
"src": "6036:377:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6565:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6575:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6641:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6646:2:9",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6582:58:9"
},
"nodeType": "YulFunctionCall",
"src": "6582:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6575:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6747:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "6658:88:9"
},
"nodeType": "YulFunctionCall",
"src": "6658:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "6658:93:9"
},
{
"nodeType": "YulAssignment",
"src": "6760:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6771:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6776:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6767:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6767:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6760:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6553:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6561:3:9",
"type": ""
}
],
"src": "6419:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6937:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6947:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7013:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7018:2:9",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6954:58:9"
},
"nodeType": "YulFunctionCall",
"src": "6954:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6947:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7119:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "7030:88:9"
},
"nodeType": "YulFunctionCall",
"src": "7030:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "7030:93:9"
},
{
"nodeType": "YulAssignment",
"src": "7132:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7143:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7148:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7139:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7139:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7132:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6925:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6933:3:9",
"type": ""
}
],
"src": "6791:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7309:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7319:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7385:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7390:2:9",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7326:58:9"
},
"nodeType": "YulFunctionCall",
"src": "7326:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7319:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7491:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "7402:88:9"
},
"nodeType": "YulFunctionCall",
"src": "7402:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "7402:93:9"
},
{
"nodeType": "YulAssignment",
"src": "7504:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7515:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7520:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7511:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7511:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7504:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7297:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7305:3:9",
"type": ""
}
],
"src": "7163:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7681:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7691:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7757:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7762:2:9",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7698:58:9"
},
"nodeType": "YulFunctionCall",
"src": "7698:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7691:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7863:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "7774:88:9"
},
"nodeType": "YulFunctionCall",
"src": "7774:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "7774:93:9"
},
{
"nodeType": "YulAssignment",
"src": "7876:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7887:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7892:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7883:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7883:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7876:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7669:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7677:3:9",
"type": ""
}
],
"src": "7535:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8053:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8063:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8129:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8134:2:9",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8070:58:9"
},
"nodeType": "YulFunctionCall",
"src": "8070:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8063:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8235:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "8146:88:9"
},
"nodeType": "YulFunctionCall",
"src": "8146:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "8146:93:9"
},
{
"nodeType": "YulAssignment",
"src": "8248:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8259:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8264:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8255:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8255:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8248:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8041:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8049:3:9",
"type": ""
}
],
"src": "7907:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8425:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8435:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8501:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8506:2:9",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8442:58:9"
},
"nodeType": "YulFunctionCall",
"src": "8442:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8435:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8607:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "8518:88:9"
},
"nodeType": "YulFunctionCall",
"src": "8518:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "8518:93:9"
},
{
"nodeType": "YulAssignment",
"src": "8620:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8631:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8636:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8627:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8627:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8620:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8413:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8421:3:9",
"type": ""
}
],
"src": "8279:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8797:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8807:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8873:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8878:2:9",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8814:58:9"
},
"nodeType": "YulFunctionCall",
"src": "8814:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8807:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8979:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "8890:88:9"
},
"nodeType": "YulFunctionCall",
"src": "8890:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "8890:93:9"
},
{
"nodeType": "YulAssignment",
"src": "8992:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9003:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9008:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8999:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8999:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8992:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8785:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8793:3:9",
"type": ""
}
],
"src": "8651:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9169:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9179:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9245:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9250:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9186:58:9"
},
"nodeType": "YulFunctionCall",
"src": "9186:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9179:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9351:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "9262:88:9"
},
"nodeType": "YulFunctionCall",
"src": "9262:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "9262:93:9"
},
{
"nodeType": "YulAssignment",
"src": "9364:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9375:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9380:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9371:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9371:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9364:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9157:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9165:3:9",
"type": ""
}
],
"src": "9023:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9541:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9551:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9617:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9622:2:9",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9558:58:9"
},
"nodeType": "YulFunctionCall",
"src": "9558:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9551:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9723:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "9634:88:9"
},
"nodeType": "YulFunctionCall",
"src": "9634:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "9634:93:9"
},
{
"nodeType": "YulAssignment",
"src": "9736:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9747:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9752:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9743:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9743:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9736:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9529:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9537:3:9",
"type": ""
}
],
"src": "9395:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9913:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9923:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9989:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9994:2:9",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9930:58:9"
},
"nodeType": "YulFunctionCall",
"src": "9930:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9923:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10095:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "10006:88:9"
},
"nodeType": "YulFunctionCall",
"src": "10006:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "10006:93:9"
},
{
"nodeType": "YulAssignment",
"src": "10108:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10119:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10124:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10115:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10115:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10108:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9901:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9909:3:9",
"type": ""
}
],
"src": "9767:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10285:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10295:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10361:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10366:2:9",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10302:58:9"
},
"nodeType": "YulFunctionCall",
"src": "10302:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10295:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10467:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "10378:88:9"
},
"nodeType": "YulFunctionCall",
"src": "10378:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "10378:93:9"
},
{
"nodeType": "YulAssignment",
"src": "10480:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10491:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10496:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10487:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10487:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10480:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10273:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10281:3:9",
"type": ""
}
],
"src": "10139:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10657:220:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10667:74:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10733:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10738:2:9",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10674:58:9"
},
"nodeType": "YulFunctionCall",
"src": "10674:67:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10667:3:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10839:3:9"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "10750:88:9"
},
"nodeType": "YulFunctionCall",
"src": "10750:93:9"
},
"nodeType": "YulExpressionStatement",
"src": "10750:93:9"
},
{
"nodeType": "YulAssignment",
"src": "10852:19:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10863:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10868:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10859:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10859:12:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10852:3:9"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10645:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10653:3:9",
"type": ""
}
],
"src": "10511:366:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10948:53:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10965:3:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10988:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10970:17:9"
},
"nodeType": "YulFunctionCall",
"src": "10970:24:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10958:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10958:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "10958:37:9"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10936:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10943:3:9",
"type": ""
}
],
"src": "10883:118:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11191:251:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11202:102:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11291:6:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11300:3:9"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11209:81:9"
},
"nodeType": "YulFunctionCall",
"src": "11209:95:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11202:3:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11314:102:9",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11403:6:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11412:3:9"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "11321:81:9"
},
"nodeType": "YulFunctionCall",
"src": "11321:95:9"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11314:3:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "11426:10:9",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11433:3:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11426:3:9"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11162:3:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11168:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11176:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11187:3:9",
"type": ""
}
],
"src": "11007:435:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11546:124:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11556:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11568:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11579:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11564:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11564:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11556:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11636:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11649:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11660:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11645:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11645:17:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11592:43:9"
},
"nodeType": "YulFunctionCall",
"src": "11592:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "11592:71:9"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11518:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11530:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11541:4:9",
"type": ""
}
],
"src": "11448:222:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11876:440:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11886:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11898:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11909:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11894:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11894:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11886:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11967:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11980:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11991:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11976:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11976:17:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "11923:43:9"
},
"nodeType": "YulFunctionCall",
"src": "11923:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "11923:71:9"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12048:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12061:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12072:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12057:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12057:18:9"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12004:43:9"
},
"nodeType": "YulFunctionCall",
"src": "12004:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "12004:72:9"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "12130:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12143:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12154:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12139:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12139:18:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "12086:43:9"
},
"nodeType": "YulFunctionCall",
"src": "12086:72:9"
},
"nodeType": "YulExpressionStatement",
"src": "12086:72:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12179:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12190:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12175:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12175:18:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12199:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12205:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12195:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12195:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12168:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12168:48:9"
},
"nodeType": "YulExpressionStatement",
"src": "12168:48:9"
},
{
"nodeType": "YulAssignment",
"src": "12225:84:9",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "12295:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12304:4:9"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12233:61:9"
},
"nodeType": "YulFunctionCall",
"src": "12233:76:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12225:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11824:9:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "11836:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "11844:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11852:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11860:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11871:4:9",
"type": ""
}
],
"src": "11676:640:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12414:118:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12424:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12436:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12447:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12432:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12432:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12424:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12498:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12511:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12522:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12507:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12507:17:9"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "12460:37:9"
},
"nodeType": "YulFunctionCall",
"src": "12460:65:9"
},
"nodeType": "YulExpressionStatement",
"src": "12460:65:9"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12386:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12398:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12409:4:9",
"type": ""
}
],
"src": "12322:210:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12656:195:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12666:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12678:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12689:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12674:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12674:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12666:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12713:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12724:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12709:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12709:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12732:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12738:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12728:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12728:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12702:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12702:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "12702:47:9"
},
{
"nodeType": "YulAssignment",
"src": "12758:86:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12830:6:9"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12839:4:9"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12766:63:9"
},
"nodeType": "YulFunctionCall",
"src": "12766:78:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12758:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12628:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12640:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12651:4:9",
"type": ""
}
],
"src": "12538:313:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13028:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13038:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13050:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13061:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13046:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13046:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13038:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13085:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13096:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13081:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13081:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13104:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13110:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13100:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13100:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13074:6:9"
},
"nodeType": "YulFunctionCall",
"src": "13074:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "13074:47:9"
},
{
"nodeType": "YulAssignment",
"src": "13130:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13264:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13138:124:9"
},
"nodeType": "YulFunctionCall",
"src": "13138:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13130:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13008:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13023:4:9",
"type": ""
}
],
"src": "12857:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13453:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13463:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13475:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13486:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13471:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13471:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13463:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13510:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13521:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13506:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13506:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13529:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13535:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13525:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13525:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13499:6:9"
},
"nodeType": "YulFunctionCall",
"src": "13499:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "13499:47:9"
},
{
"nodeType": "YulAssignment",
"src": "13555:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13689:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13563:124:9"
},
"nodeType": "YulFunctionCall",
"src": "13563:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13555:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13433:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13448:4:9",
"type": ""
}
],
"src": "13282:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13878:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13888:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13900:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13911:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13896:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13896:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13888:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13935:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13946:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13931:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13931:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13954:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13960:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13950:3:9"
},
"nodeType": "YulFunctionCall",
"src": "13950:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13924:6:9"
},
"nodeType": "YulFunctionCall",
"src": "13924:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "13924:47:9"
},
{
"nodeType": "YulAssignment",
"src": "13980:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14114:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13988:124:9"
},
"nodeType": "YulFunctionCall",
"src": "13988:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13980:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13858:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13873:4:9",
"type": ""
}
],
"src": "13707:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14303:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14313:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14325:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14336:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14321:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14321:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14313:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14360:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14371:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14356:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14356:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14379:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14385:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14375:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14375:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14349:6:9"
},
"nodeType": "YulFunctionCall",
"src": "14349:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "14349:47:9"
},
{
"nodeType": "YulAssignment",
"src": "14405:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14539:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14413:124:9"
},
"nodeType": "YulFunctionCall",
"src": "14413:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14405:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14283:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14298:4:9",
"type": ""
}
],
"src": "14132:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14728:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14738:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14750:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14761:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14746:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14746:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14738:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14785:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14796:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14781:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14781:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14804:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14810:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14800:3:9"
},
"nodeType": "YulFunctionCall",
"src": "14800:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14774:6:9"
},
"nodeType": "YulFunctionCall",
"src": "14774:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "14774:47:9"
},
{
"nodeType": "YulAssignment",
"src": "14830:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14964:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14838:124:9"
},
"nodeType": "YulFunctionCall",
"src": "14838:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14830:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14708:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14723:4:9",
"type": ""
}
],
"src": "14557:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15153:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15163:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15175:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15186:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15171:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15171:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15163:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15210:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15221:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15206:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15206:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15229:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15235:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15225:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15225:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15199:6:9"
},
"nodeType": "YulFunctionCall",
"src": "15199:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "15199:47:9"
},
{
"nodeType": "YulAssignment",
"src": "15255:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15389:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15263:124:9"
},
"nodeType": "YulFunctionCall",
"src": "15263:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15255:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15133:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15148:4:9",
"type": ""
}
],
"src": "14982:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15578:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15588:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15600:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15611:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15596:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15596:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15588:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15635:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15646:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15631:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15631:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15654:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15660:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15650:3:9"
},
"nodeType": "YulFunctionCall",
"src": "15650:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15624:6:9"
},
"nodeType": "YulFunctionCall",
"src": "15624:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "15624:47:9"
},
{
"nodeType": "YulAssignment",
"src": "15680:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15814:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15688:124:9"
},
"nodeType": "YulFunctionCall",
"src": "15688:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15680:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15558:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15573:4:9",
"type": ""
}
],
"src": "15407:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16003:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16013:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16025:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16036:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16021:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16021:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16013:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16060:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16071:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16056:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16056:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16079:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16085:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16075:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16075:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16049:6:9"
},
"nodeType": "YulFunctionCall",
"src": "16049:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "16049:47:9"
},
{
"nodeType": "YulAssignment",
"src": "16105:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16239:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16113:124:9"
},
"nodeType": "YulFunctionCall",
"src": "16113:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16105:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15983:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15998:4:9",
"type": ""
}
],
"src": "15832:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16428:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16438:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16450:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16461:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16446:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16446:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16438:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16485:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16496:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16481:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16481:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16504:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16510:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16500:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16500:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16474:6:9"
},
"nodeType": "YulFunctionCall",
"src": "16474:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "16474:47:9"
},
{
"nodeType": "YulAssignment",
"src": "16530:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16664:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16538:124:9"
},
"nodeType": "YulFunctionCall",
"src": "16538:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16530:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16408:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16423:4:9",
"type": ""
}
],
"src": "16257:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16853:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16863:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16875:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16886:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16871:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16871:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16863:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16910:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16921:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16906:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16906:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16929:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16935:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16925:3:9"
},
"nodeType": "YulFunctionCall",
"src": "16925:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16899:6:9"
},
"nodeType": "YulFunctionCall",
"src": "16899:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "16899:47:9"
},
{
"nodeType": "YulAssignment",
"src": "16955:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17089:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16963:124:9"
},
"nodeType": "YulFunctionCall",
"src": "16963:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16955:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16833:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16848:4:9",
"type": ""
}
],
"src": "16682:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17278:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17288:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17300:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17311:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17296:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17296:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17288:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17335:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17346:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17331:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17331:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17354:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17360:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17350:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17350:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17324:6:9"
},
"nodeType": "YulFunctionCall",
"src": "17324:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "17324:47:9"
},
{
"nodeType": "YulAssignment",
"src": "17380:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17514:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17388:124:9"
},
"nodeType": "YulFunctionCall",
"src": "17388:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17380:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17258:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17273:4:9",
"type": ""
}
],
"src": "17107:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17703:248:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17713:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17725:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17736:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17721:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17721:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17713:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17760:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17771:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17756:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17756:17:9"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17779:4:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17785:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17775:3:9"
},
"nodeType": "YulFunctionCall",
"src": "17775:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17749:6:9"
},
"nodeType": "YulFunctionCall",
"src": "17749:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "17749:47:9"
},
{
"nodeType": "YulAssignment",
"src": "17805:139:9",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17939:4:9"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17813:124:9"
},
"nodeType": "YulFunctionCall",
"src": "17813:131:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17805:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17683:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17698:4:9",
"type": ""
}
],
"src": "17532:419:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18055:124:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18065:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18077:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18088:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18073:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18073:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18065:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18145:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18158:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18169:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18154:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18154:17:9"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "18101:43:9"
},
"nodeType": "YulFunctionCall",
"src": "18101:71:9"
},
"nodeType": "YulExpressionStatement",
"src": "18101:71:9"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18027:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18039:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18050:4:9",
"type": ""
}
],
"src": "17957:222:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18226:88:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18236:30:9",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "18246:18:9"
},
"nodeType": "YulFunctionCall",
"src": "18246:20:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18236:6:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18295:6:9"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18303:4:9"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "18275:19:9"
},
"nodeType": "YulFunctionCall",
"src": "18275:33:9"
},
"nodeType": "YulExpressionStatement",
"src": "18275:33:9"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "18210:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18219:6:9",
"type": ""
}
],
"src": "18185:129:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18360:35:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18370:19:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18386:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "18380:5:9"
},
"nodeType": "YulFunctionCall",
"src": "18380:9:9"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18370:6:9"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18353:6:9",
"type": ""
}
],
"src": "18320:75:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18467:241:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18572:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "18574:16:9"
},
"nodeType": "YulFunctionCall",
"src": "18574:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "18574:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18544:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18552:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "18541:2:9"
},
"nodeType": "YulFunctionCall",
"src": "18541:30:9"
},
"nodeType": "YulIf",
"src": "18538:2:9"
},
{
"nodeType": "YulAssignment",
"src": "18604:37:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18634:6:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "18612:21:9"
},
"nodeType": "YulFunctionCall",
"src": "18612:29:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18604:4:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "18678:23:9",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18690:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18696:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18686:3:9"
},
"nodeType": "YulFunctionCall",
"src": "18686:15:9"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "18678:4:9"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18451:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "18462:4:9",
"type": ""
}
],
"src": "18401:307:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18772:40:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18783:22:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18799:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "18793:5:9"
},
"nodeType": "YulFunctionCall",
"src": "18793:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18783:6:9"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18755:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18765:6:9",
"type": ""
}
],
"src": "18714:98:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18877:40:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18888:22:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18904:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "18898:5:9"
},
"nodeType": "YulFunctionCall",
"src": "18898:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "18888:6:9"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18860:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18870:6:9",
"type": ""
}
],
"src": "18818:99:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19018:73:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19035:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19040:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19028:6:9"
},
"nodeType": "YulFunctionCall",
"src": "19028:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "19028:19:9"
},
{
"nodeType": "YulAssignment",
"src": "19056:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19075:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19080:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19071:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19071:14:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "19056:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18990:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "18995:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "19006:11:9",
"type": ""
}
],
"src": "18923:168:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19193:73:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19210:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19215:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19203:6:9"
},
"nodeType": "YulFunctionCall",
"src": "19203:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "19203:19:9"
},
{
"nodeType": "YulAssignment",
"src": "19231:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19250:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19255:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19246:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19246:14:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "19231:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19165:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19170:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "19181:11:9",
"type": ""
}
],
"src": "19097:169:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19386:34:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19396:18:9",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19411:3:9"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "19396:11:9"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19358:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19363:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "19374:11:9",
"type": ""
}
],
"src": "19272:148:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19470:261:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19480:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19503:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19485:17:9"
},
"nodeType": "YulFunctionCall",
"src": "19485:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19480:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19514:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19537:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19519:17:9"
},
"nodeType": "YulFunctionCall",
"src": "19519:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19514:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19677:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "19679:16:9"
},
"nodeType": "YulFunctionCall",
"src": "19679:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "19679:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19598:1:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19605:66:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19673:1:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19601:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19601:74:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "19595:2:9"
},
"nodeType": "YulFunctionCall",
"src": "19595:81:9"
},
"nodeType": "YulIf",
"src": "19592:2:9"
},
{
"nodeType": "YulAssignment",
"src": "19709:16:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19720:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19723:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19716:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19716:9:9"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "19709:3:9"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "19457:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "19460:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "19466:3:9",
"type": ""
}
],
"src": "19426:305:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19779:143:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19789:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19812:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19794:17:9"
},
"nodeType": "YulFunctionCall",
"src": "19794:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19789:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19823:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19846:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19828:17:9"
},
"nodeType": "YulFunctionCall",
"src": "19828:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19823:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "19870:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "19872:16:9"
},
"nodeType": "YulFunctionCall",
"src": "19872:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "19872:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19867:1:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "19860:6:9"
},
"nodeType": "YulFunctionCall",
"src": "19860:9:9"
},
"nodeType": "YulIf",
"src": "19857:2:9"
},
{
"nodeType": "YulAssignment",
"src": "19902:14:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19911:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "19914:1:9"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "19907:3:9"
},
"nodeType": "YulFunctionCall",
"src": "19907:9:9"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "19902:1:9"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "19768:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "19771:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "19777:1:9",
"type": ""
}
],
"src": "19737:185:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19973:146:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19983:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20006:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "19988:17:9"
},
"nodeType": "YulFunctionCall",
"src": "19988:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "19983:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20017:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20040:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20022:17:9"
},
"nodeType": "YulFunctionCall",
"src": "20022:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20017:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "20064:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "20066:16:9"
},
"nodeType": "YulFunctionCall",
"src": "20066:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "20066:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20058:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20061:1:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "20055:2:9"
},
"nodeType": "YulFunctionCall",
"src": "20055:8:9"
},
"nodeType": "YulIf",
"src": "20052:2:9"
},
{
"nodeType": "YulAssignment",
"src": "20096:17:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20108:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20111:1:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20104:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20104:9:9"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "20096:4:9"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "19959:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "19962:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "19968:4:9",
"type": ""
}
],
"src": "19928:191:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20170:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20180:35:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20209:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "20191:17:9"
},
"nodeType": "YulFunctionCall",
"src": "20191:24:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20180:7:9"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20152:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20162:7:9",
"type": ""
}
],
"src": "20125:96:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20269:48:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20279:32:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20304:5:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "20297:6:9"
},
"nodeType": "YulFunctionCall",
"src": "20297:13:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "20290:6:9"
},
"nodeType": "YulFunctionCall",
"src": "20290:21:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20279:7:9"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20251:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20261:7:9",
"type": ""
}
],
"src": "20227:90:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20367:105:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20377:89:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20392:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20399:66:9",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "20388:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20388:78:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20377:7:9"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20349:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20359:7:9",
"type": ""
}
],
"src": "20323:149:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20523:81:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20533:65:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "20548:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20555:42:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "20544:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20544:54:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20533:7:9"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20505:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20515:7:9",
"type": ""
}
],
"src": "20478:126:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20655:32:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20665:16:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "20676:5:9"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20665:7:9"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20637:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20647:7:9",
"type": ""
}
],
"src": "20610:77:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20744:103:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "20767:3:9"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "20772:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20777:6:9"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "20754:12:9"
},
"nodeType": "YulFunctionCall",
"src": "20754:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "20754:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "20825:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20830:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20821:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20821:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20839:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20814:6:9"
},
"nodeType": "YulFunctionCall",
"src": "20814:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "20814:27:9"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "20726:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "20731:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20736:6:9",
"type": ""
}
],
"src": "20693:154:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20902:258:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "20912:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "20921:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "20916:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "20981:63:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21006:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21011:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21002:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21002:11:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "21025:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21030:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21021:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21021:11:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "21015:5:9"
},
"nodeType": "YulFunctionCall",
"src": "21015:18:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20995:6:9"
},
"nodeType": "YulFunctionCall",
"src": "20995:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "20995:39:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "20942:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20945:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "20939:2:9"
},
"nodeType": "YulFunctionCall",
"src": "20939:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "20953:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20955:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "20964:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20967:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20960:3:9"
},
"nodeType": "YulFunctionCall",
"src": "20960:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "20955:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "20935:3:9",
"statements": []
},
"src": "20931:113:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21078:76:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21128:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21133:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21124:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21124:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21142:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21117:6:9"
},
"nodeType": "YulFunctionCall",
"src": "21117:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "21117:27:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21059:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21062:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21056:2:9"
},
"nodeType": "YulFunctionCall",
"src": "21056:13:9"
},
"nodeType": "YulIf",
"src": "21053:2:9"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "20884:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "20889:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20894:6:9",
"type": ""
}
],
"src": "20853:307:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21217:269:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21227:22:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "21241:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21247:1:9",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "21237:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21237:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21227:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "21258:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "21288:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21294:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21284:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21284:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "21262:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21335:51:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21349:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21363:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21371:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21359:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21359:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21349:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "21315:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21308:6:9"
},
"nodeType": "YulFunctionCall",
"src": "21308:26:9"
},
"nodeType": "YulIf",
"src": "21305:2:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21438:42:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "21452:16:9"
},
"nodeType": "YulFunctionCall",
"src": "21452:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "21452:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "21402:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21425:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21433:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "21422:2:9"
},
"nodeType": "YulFunctionCall",
"src": "21422:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21399:2:9"
},
"nodeType": "YulFunctionCall",
"src": "21399:38:9"
},
"nodeType": "YulIf",
"src": "21396:2:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "21201:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21210:6:9",
"type": ""
}
],
"src": "21166:320:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21535:238:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "21545:58:9",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21567:6:9"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "21597:4:9"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "21575:21:9"
},
"nodeType": "YulFunctionCall",
"src": "21575:27:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21563:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21563:40:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "21549:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21714:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "21716:16:9"
},
"nodeType": "YulFunctionCall",
"src": "21716:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "21716:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "21657:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21669:18:9",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21654:2:9"
},
"nodeType": "YulFunctionCall",
"src": "21654:34:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "21693:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21705:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "21690:2:9"
},
"nodeType": "YulFunctionCall",
"src": "21690:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "21651:2:9"
},
"nodeType": "YulFunctionCall",
"src": "21651:62:9"
},
"nodeType": "YulIf",
"src": "21648:2:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21752:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "21756:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21745:6:9"
},
"nodeType": "YulFunctionCall",
"src": "21745:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "21745:22:9"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21521:6:9",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "21529:4:9",
"type": ""
}
],
"src": "21492:281:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21822:190:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21832:33:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21859:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "21841:17:9"
},
"nodeType": "YulFunctionCall",
"src": "21841:24:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21832:5:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21955:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "21957:16:9"
},
"nodeType": "YulFunctionCall",
"src": "21957:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "21957:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21880:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21887:66:9",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "21877:2:9"
},
"nodeType": "YulFunctionCall",
"src": "21877:77:9"
},
"nodeType": "YulIf",
"src": "21874:2:9"
},
{
"nodeType": "YulAssignment",
"src": "21986:20:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21997:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22004:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21993:3:9"
},
"nodeType": "YulFunctionCall",
"src": "21993:13:9"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "21986:3:9"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21808:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "21818:3:9",
"type": ""
}
],
"src": "21779:233:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22052:142:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22062:25:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22085:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22067:17:9"
},
"nodeType": "YulFunctionCall",
"src": "22067:20:9"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22062:1:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22096:25:9",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22119:1:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22101:17:9"
},
"nodeType": "YulFunctionCall",
"src": "22101:20:9"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22096:1:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22143:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "22145:16:9"
},
"nodeType": "YulFunctionCall",
"src": "22145:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "22145:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22140:1:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22133:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22133:9:9"
},
"nodeType": "YulIf",
"src": "22130:2:9"
},
{
"nodeType": "YulAssignment",
"src": "22174:14:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22183:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22186:1:9"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "22179:3:9"
},
"nodeType": "YulFunctionCall",
"src": "22179:9:9"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "22174:1:9"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "22041:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "22044:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "22050:1:9",
"type": ""
}
],
"src": "22018:176:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22228:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22245:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22248:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22238:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22238:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "22238:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22342:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22345:4:9",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22335:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22335:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "22335:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22366:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22369:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22359:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22359:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "22359:15:9"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "22200:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22414:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22431:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22434:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22424:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22424:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "22424:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22528:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22531:4:9",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22521:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22521:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "22521:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22552:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22555:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22545:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22545:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "22545:15:9"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "22386:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22600:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22617:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22620:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22610:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22610:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "22610:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22714:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22717:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22707:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22707:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "22707:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22738:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22741:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22731:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22731:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "22731:15:9"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "22572:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22786:152:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22803:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22806:77:9",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22796:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22796:88:9"
},
"nodeType": "YulExpressionStatement",
"src": "22796:88:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22900:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22903:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22893:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22893:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "22893:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22924:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22927:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "22917:6:9"
},
"nodeType": "YulFunctionCall",
"src": "22917:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "22917:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "22758:180:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22992:54:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23002:38:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23020:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23027:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23016:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23016:14:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23036:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "23032:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23032:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "23012:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23012:28:9"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "23002:6:9"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22975:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "22985:6:9",
"type": ""
}
],
"src": "22944:102:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23158:131:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23180:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23188:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23176:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23176:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23192:34:9",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23169:6:9"
},
"nodeType": "YulFunctionCall",
"src": "23169:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "23169:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23248:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23256:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23244:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23244:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23261:20:9",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23237:6:9"
},
"nodeType": "YulFunctionCall",
"src": "23237:45:9"
},
"nodeType": "YulExpressionStatement",
"src": "23237:45:9"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23150:6:9",
"type": ""
}
],
"src": "23052:237:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23401:118:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23423:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23431:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23419:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23419:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23435:34:9",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23412:6:9"
},
"nodeType": "YulFunctionCall",
"src": "23412:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "23412:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23491:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23499:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23487:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23487:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23504:7:9",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23480:6:9"
},
"nodeType": "YulFunctionCall",
"src": "23480:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "23480:32:9"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23393:6:9",
"type": ""
}
],
"src": "23295:224:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23631:117:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23653:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23661:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23649:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23649:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23665:34:9",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23642:6:9"
},
"nodeType": "YulFunctionCall",
"src": "23642:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "23642:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23721:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23729:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23717:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23717:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23734:6:9",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23710:6:9"
},
"nodeType": "YulFunctionCall",
"src": "23710:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "23710:31:9"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23623:6:9",
"type": ""
}
],
"src": "23525:223:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23860:69:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23882:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23890:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23878:3:9"
},
"nodeType": "YulFunctionCall",
"src": "23878:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "23894:27:9",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23871:6:9"
},
"nodeType": "YulFunctionCall",
"src": "23871:51:9"
},
"nodeType": "YulExpressionStatement",
"src": "23871:51:9"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23852:6:9",
"type": ""
}
],
"src": "23754:175:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24041:125:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24063:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24071:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24059:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24059:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24075:34:9",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24052:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24052:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "24052:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24131:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24139:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24127:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24127:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24144:14:9",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24120:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24120:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "24120:39:9"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24033:6:9",
"type": ""
}
],
"src": "23935:231:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24278:137:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24300:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24308:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24296:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24296:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24312:34:9",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24289:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24289:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "24289:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24368:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24376:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24364:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24364:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24381:26:9",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24357:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24357:51:9"
},
"nodeType": "YulExpressionStatement",
"src": "24357:51:9"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24270:6:9",
"type": ""
}
],
"src": "24172:243:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24527:123:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24549:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24557:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24545:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24545:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24561:34:9",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24538:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24538:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "24538:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24617:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24625:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24613:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24613:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24630:12:9",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24606:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24606:37:9"
},
"nodeType": "YulExpressionStatement",
"src": "24606:37:9"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24519:6:9",
"type": ""
}
],
"src": "24421:229:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24762:122:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24784:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24792:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24780:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24780:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24796:34:9",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24773:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24773:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "24773:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24852:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24860:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24848:3:9"
},
"nodeType": "YulFunctionCall",
"src": "24848:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "24865:11:9",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24841:6:9"
},
"nodeType": "YulFunctionCall",
"src": "24841:36:9"
},
"nodeType": "YulExpressionStatement",
"src": "24841:36:9"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24754:6:9",
"type": ""
}
],
"src": "24656:228:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24996:125:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25018:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25026:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25014:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25014:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25030:34:9",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25007:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25007:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "25007:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25086:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25094:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25082:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25082:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25099:14:9",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25075:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25075:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "25075:39:9"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24988:6:9",
"type": ""
}
],
"src": "24890:231:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25233:128:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25255:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25263:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25251:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25251:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25267:34:9",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25244:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25244:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "25244:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25323:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25331:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25319:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25319:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25336:17:9",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25312:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25312:42:9"
},
"nodeType": "YulExpressionStatement",
"src": "25312:42:9"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25225:6:9",
"type": ""
}
],
"src": "25127:234:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25473:114:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25495:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25503:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25491:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25491:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25507:34:9",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25484:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25484:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "25484:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25563:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25571:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25559:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25559:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25576:3:9",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25552:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25552:28:9"
},
"nodeType": "YulExpressionStatement",
"src": "25552:28:9"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25465:6:9",
"type": ""
}
],
"src": "25367:220:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25699:130:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25721:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25729:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25717:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25717:14:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25733:34:9",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25710:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25710:58:9"
},
"nodeType": "YulExpressionStatement",
"src": "25710:58:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25789:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25797:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25785:3:9"
},
"nodeType": "YulFunctionCall",
"src": "25785:15:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "25802:19:9",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25778:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25778:44:9"
},
"nodeType": "YulExpressionStatement",
"src": "25778:44:9"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25691:6:9",
"type": ""
}
],
"src": "25593:236:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25878:79:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "25935:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25944:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25947:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "25937:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25937:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "25937:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25901:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25926:5:9"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "25908:17:9"
},
"nodeType": "YulFunctionCall",
"src": "25908:24:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "25898:2:9"
},
"nodeType": "YulFunctionCall",
"src": "25898:35:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "25891:6:9"
},
"nodeType": "YulFunctionCall",
"src": "25891:43:9"
},
"nodeType": "YulIf",
"src": "25888:2:9"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25871:5:9",
"type": ""
}
],
"src": "25835:122:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26003:76:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26057:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26066:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26069:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26059:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26059:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "26059:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26026:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26048:5:9"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "26033:14:9"
},
"nodeType": "YulFunctionCall",
"src": "26033:21:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26023:2:9"
},
"nodeType": "YulFunctionCall",
"src": "26023:32:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26016:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26016:40:9"
},
"nodeType": "YulIf",
"src": "26013:2:9"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25996:5:9",
"type": ""
}
],
"src": "25963:116:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26127:78:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26183:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26192:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26195:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26185:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26185:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "26185:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26150:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26174:5:9"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "26157:16:9"
},
"nodeType": "YulFunctionCall",
"src": "26157:23:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26147:2:9"
},
"nodeType": "YulFunctionCall",
"src": "26147:34:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26140:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26140:42:9"
},
"nodeType": "YulIf",
"src": "26137:2:9"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26120:5:9",
"type": ""
}
],
"src": "26085:120:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26254:79:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "26311:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26320:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26323:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "26313:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26313:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "26313:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26277:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26302:5:9"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26284:17:9"
},
"nodeType": "YulFunctionCall",
"src": "26284:24:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26274:2:9"
},
"nodeType": "YulFunctionCall",
"src": "26274:35:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26267:6:9"
},
"nodeType": "YulFunctionCall",
"src": "26267:43:9"
},
"nodeType": "YulIf",
"src": "26264:2:9"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26247:5:9",
"type": ""
}
],
"src": "26211:122:9"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(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_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_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_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_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\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_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\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_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__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_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__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_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__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_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__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_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__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_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__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_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__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_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__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_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__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_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__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_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__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_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__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_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\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 array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\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_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\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 finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\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_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer from incorrect \")\n\n mstore(add(memPtr, 32), \"owner\")\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved for all\")\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(memPtr, 32), \"ent token\")\n\n }\n\n function store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(memPtr, 32), \"nexistent token\")\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(memPtr, 32), \"wner nor approved\")\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_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(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": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e991906116a1565b6102bc565b6040516100fb9190611a1b565b60405180910390f35b61010c61039e565b6040516101199190611a36565b60405180910390f35b61013c600480360381019061013791906116f3565b610430565b60405161014991906119b4565b60405180910390f35b61016c60048036038101906101679190611665565b6104b5565b005b6101886004803603810190610183919061155f565b6105cd565b005b6101a4600480360381019061019f919061155f565b61062d565b005b6101c060048036038101906101bb91906116f3565b61064d565b6040516101cd91906119b4565b60405180910390f35b6101f060048036038101906101eb91906114fa565b6106ff565b6040516101fd9190611bd8565b60405180910390f35b61020e6107b7565b60405161021b9190611a36565b60405180910390f35b61023e60048036038101906102399190611629565b610849565b005b61025a600480360381019061025591906115ae565b61085f565b005b610276600480360381019061027191906116f3565b6108c1565b6040516102839190611a36565b60405180910390f35b6102a660048036038101906102a19190611523565b610968565b6040516102b39190611a1b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103975750610396826109fc565b5b9050919050565b6060600080546103ad90611dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611dfd565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610a66565b61047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611b58565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611b98565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610ad2565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610ad2565b610968565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611af8565b60405180910390fd5b6105c88383610ada565b505050565b6105de6105d8610ad2565b82610b93565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611bb8565b60405180910390fd5b610628838383610c71565b505050565b6106488383836040518060200160405280600081525061085f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611b38565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790611b18565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611dfd565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b61085b610854610ad2565b8383610ed8565b5050565b61087061086a610ad2565b83610b93565b6108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611bb8565b60405180910390fd5b6108bb84848484611045565b50505050565b60606108cc82610a66565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290611b78565b60405180910390fd5b60006109156110a1565b905060008151116109355760405180602001604052806000815250610960565b8061093f846110b8565b604051602001610950929190611990565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b4d8361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b9e82610a66565b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611ad8565b60405180910390fd5b6000610be88361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c2a5750610c298185610968565b5b80610c6857508373ffffffffffffffffffffffffffffffffffffffff16610c5084610430565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610c918261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90611a78565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4e90611a98565b60405180910390fd5b610d62838383611265565b610d6d600082610ada565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbd9190611d13565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e149190611c8c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ed383838361126a565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90611ab8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110389190611a1b565b60405180910390a3505050565b611050848484610c71565b61105c8484848461126f565b61109b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109290611a58565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611100576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611260565b600082905060005b6000821461113257808061111b90611e60565b915050600a8261112b9190611ce2565b9150611108565b60008167ffffffffffffffff811115611174577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156111a65781602001600182028036833780820191505090505b5090505b60008514611259576001826111bf9190611d13565b9150600a856111ce9190611ea9565b60306111da9190611c8c565b60f81b818381518110611216577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112529190611ce2565b94506111aa565b8093505050505b919050565b505050565b505050565b60006112908473ffffffffffffffffffffffffffffffffffffffff16611406565b156113f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026112b9610ad2565b8786866040518563ffffffff1660e01b81526004016112db94939291906119cf565b602060405180830381600087803b1580156112f557600080fd5b505af192505050801561132657506040513d601f19601f8201168201806040525081019061132391906116ca565b60015b6113a9573d8060008114611356576040519150601f19603f3d011682016040523d82523d6000602084013e61135b565b606091505b506000815114156113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890611a58565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506113fe565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600061143c61143784611c18565b611bf3565b90508281526020810184848401111561145457600080fd5b61145f848285611dbb565b509392505050565b60008135905061147681612335565b92915050565b60008135905061148b8161234c565b92915050565b6000813590506114a081612363565b92915050565b6000815190506114b581612363565b92915050565b600082601f8301126114cc57600080fd5b81356114dc848260208601611429565b91505092915050565b6000813590506114f48161237a565b92915050565b60006020828403121561150c57600080fd5b600061151a84828501611467565b91505092915050565b6000806040838503121561153657600080fd5b600061154485828601611467565b925050602061155585828601611467565b9150509250929050565b60008060006060848603121561157457600080fd5b600061158286828701611467565b935050602061159386828701611467565b92505060406115a4868287016114e5565b9150509250925092565b600080600080608085870312156115c457600080fd5b60006115d287828801611467565b94505060206115e387828801611467565b93505060406115f4878288016114e5565b925050606085013567ffffffffffffffff81111561161157600080fd5b61161d878288016114bb565b91505092959194509250565b6000806040838503121561163c57600080fd5b600061164a85828601611467565b925050602061165b8582860161147c565b9150509250929050565b6000806040838503121561167857600080fd5b600061168685828601611467565b9250506020611697858286016114e5565b9150509250929050565b6000602082840312156116b357600080fd5b60006116c184828501611491565b91505092915050565b6000602082840312156116dc57600080fd5b60006116ea848285016114a6565b91505092915050565b60006020828403121561170557600080fd5b6000611713848285016114e5565b91505092915050565b61172581611d47565b82525050565b61173481611d59565b82525050565b600061174582611c49565b61174f8185611c5f565b935061175f818560208601611dca565b61176881611f96565b840191505092915050565b600061177e82611c54565b6117888185611c70565b9350611798818560208601611dca565b6117a181611f96565b840191505092915050565b60006117b782611c54565b6117c18185611c81565b93506117d1818560208601611dca565b80840191505092915050565b60006117ea603283611c70565b91506117f582611fa7565b604082019050919050565b600061180d602583611c70565b915061181882611ff6565b604082019050919050565b6000611830602483611c70565b915061183b82612045565b604082019050919050565b6000611853601983611c70565b915061185e82612094565b602082019050919050565b6000611876602c83611c70565b9150611881826120bd565b604082019050919050565b6000611899603883611c70565b91506118a48261210c565b604082019050919050565b60006118bc602a83611c70565b91506118c78261215b565b604082019050919050565b60006118df602983611c70565b91506118ea826121aa565b604082019050919050565b6000611902602c83611c70565b915061190d826121f9565b604082019050919050565b6000611925602f83611c70565b915061193082612248565b604082019050919050565b6000611948602183611c70565b915061195382612297565b604082019050919050565b600061196b603183611c70565b9150611976826122e6565b604082019050919050565b61198a81611db1565b82525050565b600061199c82856117ac565b91506119a882846117ac565b91508190509392505050565b60006020820190506119c9600083018461171c565b92915050565b60006080820190506119e4600083018761171c565b6119f1602083018661171c565b6119fe6040830185611981565b8181036060830152611a10818461173a565b905095945050505050565b6000602082019050611a30600083018461172b565b92915050565b60006020820190508181036000830152611a508184611773565b905092915050565b60006020820190508181036000830152611a71816117dd565b9050919050565b60006020820190508181036000830152611a9181611800565b9050919050565b60006020820190508181036000830152611ab181611823565b9050919050565b60006020820190508181036000830152611ad181611846565b9050919050565b60006020820190508181036000830152611af181611869565b9050919050565b60006020820190508181036000830152611b118161188c565b9050919050565b60006020820190508181036000830152611b31816118af565b9050919050565b60006020820190508181036000830152611b51816118d2565b9050919050565b60006020820190508181036000830152611b71816118f5565b9050919050565b60006020820190508181036000830152611b9181611918565b9050919050565b60006020820190508181036000830152611bb18161193b565b9050919050565b60006020820190508181036000830152611bd18161195e565b9050919050565b6000602082019050611bed6000830184611981565b92915050565b6000611bfd611c0e565b9050611c098282611e2f565b919050565b6000604051905090565b600067ffffffffffffffff821115611c3357611c32611f67565b5b611c3c82611f96565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611c9782611db1565b9150611ca283611db1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cd757611cd6611eda565b5b828201905092915050565b6000611ced82611db1565b9150611cf883611db1565b925082611d0857611d07611f09565b5b828204905092915050565b6000611d1e82611db1565b9150611d2983611db1565b925082821015611d3c57611d3b611eda565b5b828203905092915050565b6000611d5282611d91565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611de8578082015181840152602081019050611dcd565b83811115611df7576000848401525b50505050565b60006002820490506001821680611e1557607f821691505b60208210811415611e2957611e28611f38565b5b50919050565b611e3882611f96565b810181811067ffffffffffffffff82111715611e5757611e56611f67565b5b80604052505050565b6000611e6b82611db1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611e9e57611e9d611eda565b5b600182019050919050565b6000611eb482611db1565b9150611ebf83611db1565b925082611ecf57611ece611f09565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61233e81611d47565b811461234957600080fd5b50565b61235581611d59565b811461236057600080fd5b50565b61236c81611d65565b811461237757600080fd5b50565b61238381611db1565b811461238e57600080fd5b5056fea264697066735822122037591c6204144cb165a92011e76de38e52b5985e3de7d78e8d95478fd9035d2864736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x16A1 JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x19B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x1665 JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x155F JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x19B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x14FA JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1BD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x1629 JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x15AE JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x16F3 JUMP JUMPDEST PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1A36 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x1523 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0x9FC JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1DFD 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 0x3D9 SWAP1 PUSH2 0x1DFD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 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 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x1B58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1B98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xAD2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xAD2 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1AF8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xADA JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xAD2 JUMP JUMPDEST DUP3 PUSH2 0xB93 JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1BB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xC71 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x85F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x1B38 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x1B18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x7C6 SWAP1 PUSH2 0x1DFD 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 0x7F2 SWAP1 PUSH2 0x1DFD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F 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 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x85B PUSH2 0x854 PUSH2 0xAD2 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xED8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x870 PUSH2 0x86A PUSH2 0xAD2 JUMP JUMPDEST DUP4 PUSH2 0xB93 JUMP JUMPDEST PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1BB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8BB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1045 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x8CC DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0x90B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x902 SWAP1 PUSH2 0x1B78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x915 PUSH2 0x10A1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x935 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x960 JUMP JUMPDEST DUP1 PUSH2 0x93F DUP5 PUSH2 0x10B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x950 SWAP3 SWAP2 SWAP1 PUSH2 0x1990 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 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 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB4D DUP4 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB9E DUP3 PUSH2 0xA66 JUMP JUMPDEST PUSH2 0xBDD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBD4 SWAP1 PUSH2 0x1AD8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xBE8 DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xC2A JUMPI POP PUSH2 0xC29 DUP2 DUP6 PUSH2 0x968 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xC68 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC50 DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC91 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCE7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCDE SWAP1 PUSH2 0x1A78 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD57 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD4E SWAP1 PUSH2 0x1A98 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD62 DUP4 DUP4 DUP4 PUSH2 0x1265 JUMP JUMPDEST PUSH2 0xD6D PUSH1 0x0 DUP3 PUSH2 0xADA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xDBD SWAP2 SWAP1 PUSH2 0x1D13 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 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 DUP3 DUP3 SLOAD PUSH2 0xE14 SWAP2 SWAP1 PUSH2 0x1C8C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0xED3 DUP4 DUP4 DUP4 PUSH2 0x126A JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF47 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF3E SWAP1 PUSH2 0x1AB8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 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 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1038 SWAP2 SWAP1 PUSH2 0x1A1B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1050 DUP5 DUP5 DUP5 PUSH2 0xC71 JUMP JUMPDEST PUSH2 0x105C DUP5 DUP5 DUP5 DUP5 PUSH2 0x126F JUMP JUMPDEST PUSH2 0x109B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1092 SWAP1 PUSH2 0x1A58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1100 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x1260 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1132 JUMPI DUP1 DUP1 PUSH2 0x111B SWAP1 PUSH2 0x1E60 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x112B SWAP2 SWAP1 PUSH2 0x1CE2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1108 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1174 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x11A6 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x1259 JUMPI PUSH1 0x1 DUP3 PUSH2 0x11BF SWAP2 SWAP1 PUSH2 0x1D13 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x11CE SWAP2 SWAP1 PUSH2 0x1EA9 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x11DA SWAP2 SWAP1 PUSH2 0x1C8C JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1216 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1252 SWAP2 SWAP1 PUSH2 0x1CE2 JUMP JUMPDEST SWAP5 POP PUSH2 0x11AA JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1290 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1406 JUMP JUMPDEST ISZERO PUSH2 0x13F9 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x12B9 PUSH2 0xAD2 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12DB SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19CF JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12F5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1326 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x1323 SWAP2 SWAP1 PUSH2 0x16CA JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x13A9 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1356 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x135B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x13A1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1398 SWAP1 PUSH2 0x1A58 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x13FE JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x143C PUSH2 0x1437 DUP5 PUSH2 0x1C18 JUMP JUMPDEST PUSH2 0x1BF3 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1454 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x145F DUP5 DUP3 DUP6 PUSH2 0x1DBB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1476 DUP2 PUSH2 0x2335 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x148B DUP2 PUSH2 0x234C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14A0 DUP2 PUSH2 0x2363 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x14B5 DUP2 PUSH2 0x2363 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x14CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x14DC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1429 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14F4 DUP2 PUSH2 0x237A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x150C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x151A DUP5 DUP3 DUP6 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1536 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1544 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1555 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 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 0x1574 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1582 DUP7 DUP3 DUP8 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1593 DUP7 DUP3 DUP8 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x15A4 DUP7 DUP3 DUP8 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x15C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x15D2 DUP8 DUP3 DUP9 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x15E3 DUP8 DUP3 DUP9 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x15F4 DUP8 DUP3 DUP9 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1611 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x161D DUP8 DUP3 DUP9 ADD PUSH2 0x14BB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x163C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x164A DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x165B DUP6 DUP3 DUP7 ADD PUSH2 0x147C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1678 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1686 DUP6 DUP3 DUP7 ADD PUSH2 0x1467 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1697 DUP6 DUP3 DUP7 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16C1 DUP5 DUP3 DUP6 ADD PUSH2 0x1491 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16EA DUP5 DUP3 DUP6 ADD PUSH2 0x14A6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1705 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1713 DUP5 DUP3 DUP6 ADD PUSH2 0x14E5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1725 DUP2 PUSH2 0x1D47 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1734 DUP2 PUSH2 0x1D59 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1745 DUP3 PUSH2 0x1C49 JUMP JUMPDEST PUSH2 0x174F DUP2 DUP6 PUSH2 0x1C5F JUMP JUMPDEST SWAP4 POP PUSH2 0x175F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST PUSH2 0x1768 DUP2 PUSH2 0x1F96 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x177E DUP3 PUSH2 0x1C54 JUMP JUMPDEST PUSH2 0x1788 DUP2 DUP6 PUSH2 0x1C70 JUMP JUMPDEST SWAP4 POP PUSH2 0x1798 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST PUSH2 0x17A1 DUP2 PUSH2 0x1F96 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17B7 DUP3 PUSH2 0x1C54 JUMP JUMPDEST PUSH2 0x17C1 DUP2 DUP6 PUSH2 0x1C81 JUMP JUMPDEST SWAP4 POP PUSH2 0x17D1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DCA JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17EA PUSH1 0x32 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x17F5 DUP3 PUSH2 0x1FA7 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x180D PUSH1 0x25 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1818 DUP3 PUSH2 0x1FF6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1830 PUSH1 0x24 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x183B DUP3 PUSH2 0x2045 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1853 PUSH1 0x19 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x185E DUP3 PUSH2 0x2094 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1876 PUSH1 0x2C DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1881 DUP3 PUSH2 0x20BD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1899 PUSH1 0x38 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18A4 DUP3 PUSH2 0x210C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18BC PUSH1 0x2A DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18C7 DUP3 PUSH2 0x215B JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18DF PUSH1 0x29 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x18EA DUP3 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1902 PUSH1 0x2C DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x190D DUP3 PUSH2 0x21F9 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1925 PUSH1 0x2F DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1930 DUP3 PUSH2 0x2248 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1948 PUSH1 0x21 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1953 DUP3 PUSH2 0x2297 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x196B PUSH1 0x31 DUP4 PUSH2 0x1C70 JUMP JUMPDEST SWAP2 POP PUSH2 0x1976 DUP3 PUSH2 0x22E6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x198A DUP2 PUSH2 0x1DB1 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x199C DUP3 DUP6 PUSH2 0x17AC JUMP JUMPDEST SWAP2 POP PUSH2 0x19A8 DUP3 DUP5 PUSH2 0x17AC JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19C9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x171C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x19E4 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x171C JUMP JUMPDEST PUSH2 0x19F1 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x171C JUMP JUMPDEST PUSH2 0x19FE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1981 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x1A10 DUP2 DUP5 PUSH2 0x173A JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A30 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x172B 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 0x1A50 DUP2 DUP5 PUSH2 0x1773 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 0x1A71 DUP2 PUSH2 0x17DD 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 0x1A91 DUP2 PUSH2 0x1800 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 0x1AB1 DUP2 PUSH2 0x1823 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 0x1AD1 DUP2 PUSH2 0x1846 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 0x1AF1 DUP2 PUSH2 0x1869 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 0x1B11 DUP2 PUSH2 0x188C 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 0x1B31 DUP2 PUSH2 0x18AF 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 0x1B51 DUP2 PUSH2 0x18D2 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 0x1B71 DUP2 PUSH2 0x18F5 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 0x1B91 DUP2 PUSH2 0x1918 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 0x1BB1 DUP2 PUSH2 0x193B 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 0x1BD1 DUP2 PUSH2 0x195E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1BED PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1981 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BFD PUSH2 0x1C0E JUMP JUMPDEST SWAP1 POP PUSH2 0x1C09 DUP3 DUP3 PUSH2 0x1E2F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C33 JUMPI PUSH2 0x1C32 PUSH2 0x1F67 JUMP JUMPDEST JUMPDEST PUSH2 0x1C3C DUP3 PUSH2 0x1F96 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 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 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C97 DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CA2 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1CD7 JUMPI PUSH2 0x1CD6 PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CED DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CF8 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1D08 JUMPI PUSH2 0x1D07 PUSH2 0x1F09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D1E DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D29 DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1D3C JUMPI PUSH2 0x1D3B PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D52 DUP3 PUSH2 0x1D91 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND 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 DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1DE8 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1DCD JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1DF7 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 0x1E15 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1E29 JUMPI PUSH2 0x1E28 PUSH2 0x1F38 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E38 DUP3 PUSH2 0x1F96 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1E57 JUMPI PUSH2 0x1E56 PUSH2 0x1F67 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E6B DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1E9E JUMPI PUSH2 0x1E9D PUSH2 0x1EDA JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EB4 DUP3 PUSH2 0x1DB1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EBF DUP4 PUSH2 0x1DB1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1ECF JUMPI PUSH2 0x1ECE PUSH2 0x1F09 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP 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 0x12 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x233E DUP2 PUSH2 0x1D47 JUMP JUMPDEST DUP2 EQ PUSH2 0x2349 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2355 DUP2 PUSH2 0x1D59 JUMP JUMPDEST DUP2 EQ PUSH2 0x2360 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x236C DUP2 PUSH2 0x1D65 JUMP JUMPDEST DUP2 EQ PUSH2 0x2377 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2383 DUP2 PUSH2 0x1DB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x238E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLDATACOPY MSIZE SHR PUSH3 0x4144C 0xB1 PUSH6 0xA92011E76DE3 DUP15 MSTORE 0xB5 SWAP9 0x5E RETURNDATASIZE 0xE7 0xD7 DUP15 DUP14 SWAP6 SELFBALANCE DUP16 0xD9 SUB 0x5D 0x28 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ",
"sourceMap": "628:13658:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2488:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4000:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3538:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4727:330;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5123:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2191:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2650:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4284:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5368:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2818:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4503:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1570:300;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;2488:98::-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;4000:217::-;4076:7;4103:16;4111:7;4103;:16::i;:::-;4095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4186:15;:24;4202:7;4186:24;;;;;;;;;;;;;;;;;;;;;4179:31;;4000:217;;;:::o;3538:401::-;3618:13;3634:23;3649:7;3634:14;:23::i;:::-;3618:39;;3681:5;3675:11;;:2;:11;;;;3667:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3772:5;3756:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3781:37;3798:5;3805:12;:10;:12::i;:::-;3781:16;:37::i;:::-;3756:62;3735:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3911:21;3920:2;3924:7;3911:8;:21::i;:::-;3538:401;;;:::o;4727:330::-;4916:41;4935:12;:10;:12::i;:::-;4949:7;4916:18;:41::i;:::-;4908:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5022:28;5032:4;5038:2;5042:7;5022:9;:28::i;:::-;4727:330;;;:::o;5123:179::-;5256:39;5273:4;5279:2;5283:7;5256:39;;;;;;;;;;;;:16;:39::i;:::-;5123:179;;;:::o;2191:235::-;2263:7;2282:13;2298:7;:16;2306:7;2298:16;;;;;;;;;;;;;;;;;;;;;2282:32;;2349:1;2332:19;;:5;:19;;;;2324:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2414:5;2407:12;;;2191:235;;;:::o;1929:205::-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2111:9;:16;2121:5;2111:16;;;;;;;;;;;;;;;;2104:23;;1929:205;;;:::o;2650:102::-;2706:13;2738:7;2731:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650:102;:::o;4284:153::-;4378:52;4397:12;:10;:12::i;:::-;4411:8;4421;4378:18;:52::i;:::-;4284:153;;:::o;5368:320::-;5537:41;5556:12;:10;:12::i;:::-;5570:7;5537:18;:41::i;:::-;5529:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5642:39;5656:4;5662:2;5666:7;5675:5;5642:13;:39::i;:::-;5368:320;;;;:::o;2818:329::-;2891:13;2924:16;2932:7;2924;:16::i;:::-;2916:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3003:21;3027:10;:8;:10::i;:::-;3003:34;;3078:1;3060:7;3054:21;:25;:86;;;;;;;;;;;;;;;;;3106:7;3115:18;:7;:16;:18::i;:::-;3089:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3054:86;3047:93;;;2818:329;;;:::o;4503:162::-;4600:4;4623:18;:25;4642:5;4623:25;;;;;;;;;;;;;;;:35;4649:8;4623:35;;;;;;;;;;;;;;;;;;;;;;;;;4616:42;;4503:162;;;;:::o;829:155:7:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7160:125:0:-;7225:4;7276:1;7248:30;;:7;:16;7256:7;7248:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7241:37;;7160:125;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;11169:171:0:-;11270:2;11243:15;:24;11259:7;11243:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11325:7;11321:2;11287:46;;11296:23;11311:7;11296:14;:23::i;:::-;11287:46;;;;;;;;;;;;11169:171;;:::o;7443:344::-;7536:4;7560:16;7568:7;7560;:16::i;:::-;7552:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7635:13;7651:23;7666:7;7651:14;:23::i;:::-;7635:39;;7703:5;7692:16;;:7;:16;;;:52;;;;7712:32;7729:5;7736:7;7712:16;:32::i;:::-;7692:52;:87;;;;7772:7;7748:31;;:20;7760:7;7748:11;:20::i;:::-;:31;;;7692:87;7684:96;;;7443:344;;;;:::o;10453:605::-;10607:4;10580:31;;:23;10595:7;10580:14;:23::i;:::-;:31;;;10572:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10685:1;10671:16;;:2;:16;;;;10663:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10739:39;10760:4;10766:2;10770:7;10739:20;:39::i;:::-;10840:29;10857:1;10861:7;10840:8;:29::i;:::-;10899:1;10880:9;:15;10890:4;10880:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10927:1;10910:9;:13;10920:2;10910:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10957:2;10938:7;:16;10946:7;10938:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10994:7;10990:2;10975:27;;10984:4;10975:27;;;;;;;;;;;;11013:38;11033:4;11039:2;11043:7;11013:19;:38::i;:::-;10453:605;;;:::o;11475:307::-;11625:8;11616:17;;:5;:17;;;;11608:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11711:8;11673:18;:25;11692:5;11673:25;;;;;;;;;;;;;;;:35;11699:8;11673:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11756:8;11734:41;;11749:5;11734:41;;;11766:8;11734:41;;;;;;:::i;:::-;;;;;;;;11475:307;;;:::o;6550:::-;6701:28;6711:4;6717:2;6721:7;6701:9;:28::i;:::-;6747:48;6770:4;6776:2;6780:7;6789:5;6747:22;:48::i;:::-;6739:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6550:307;;;;:::o;3389:92::-;3440:13;3465:9;;;;;;;;;;;;;;3389:92;:::o;328:703:6:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;13669:122:0:-;;;;:::o;14163:121::-;;;;:::o;12335:778::-;12485:4;12505:15;:2;:13;;;:15::i;:::-;12501:606;;;12556:2;12540:36;;;12577:12;:10;:12::i;:::-;12591:4;12597:7;12606:5;12540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12536:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12796:1;12779:6;:13;:18;12775:266;;;12821:60;;;;;;;;;;:::i;:::-;;;;;;;;12775:266;12993:6;12987:13;12978:6;12974:2;12970:15;12963:38;12536:519;12672:41;;;12662:51;;;:6;:51;;;;12655:58;;;;;12501:606;13092:4;13085:11;;12335:778;;;;;;;:::o;1175:320:4:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;7:343:9:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1220:139::-;1266:5;1304:6;1291:20;1282:29;;1320:33;1347:5;1320:33;:::i;:::-;1272:87;;;;:::o;1365:262::-;1424:6;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1489:1;1486;1479:12;1441:2;1532:1;1557:53;1602:7;1593:6;1582:9;1578:22;1557:53;:::i;:::-;1547:63;;1503:117;1431:196;;;;:::o;1633:407::-;1701:6;1709;1758:2;1746:9;1737:7;1733:23;1729:32;1726:2;;;1774:1;1771;1764:12;1726:2;1817:1;1842:53;1887:7;1878:6;1867:9;1863:22;1842:53;:::i;:::-;1832:63;;1788:117;1944:2;1970:53;2015:7;2006:6;1995:9;1991:22;1970:53;:::i;:::-;1960:63;;1915:118;1716:324;;;;;:::o;2046:552::-;2123:6;2131;2139;2188:2;2176:9;2167:7;2163:23;2159:32;2156:2;;;2204:1;2201;2194:12;2156:2;2247:1;2272:53;2317:7;2308:6;2297:9;2293:22;2272:53;:::i;:::-;2262:63;;2218:117;2374:2;2400:53;2445:7;2436:6;2425:9;2421:22;2400:53;:::i;:::-;2390:63;;2345:118;2502:2;2528:53;2573:7;2564:6;2553:9;2549:22;2528:53;:::i;:::-;2518:63;;2473:118;2146:452;;;;;:::o;2604:809::-;2699:6;2707;2715;2723;2772:3;2760:9;2751:7;2747:23;2743:33;2740:2;;;2789:1;2786;2779:12;2740:2;2832:1;2857:53;2902:7;2893:6;2882:9;2878:22;2857:53;:::i;:::-;2847:63;;2803:117;2959:2;2985:53;3030:7;3021:6;3010:9;3006:22;2985:53;:::i;:::-;2975:63;;2930:118;3087:2;3113:53;3158:7;3149:6;3138:9;3134:22;3113:53;:::i;:::-;3103:63;;3058:118;3243:2;3232:9;3228:18;3215:32;3274:18;3266:6;3263:30;3260:2;;;3306:1;3303;3296:12;3260:2;3334:62;3388:7;3379:6;3368:9;3364:22;3334:62;:::i;:::-;3324:72;;3186:220;2730:683;;;;;;;:::o;3419:401::-;3484:6;3492;3541:2;3529:9;3520:7;3516:23;3512:32;3509:2;;;3557:1;3554;3547:12;3509:2;3600:1;3625:53;3670:7;3661:6;3650:9;3646:22;3625:53;:::i;:::-;3615:63;;3571:117;3727:2;3753:50;3795:7;3786:6;3775:9;3771:22;3753:50;:::i;:::-;3743:60;;3698:115;3499:321;;;;;:::o;3826:407::-;3894:6;3902;3951:2;3939:9;3930:7;3926:23;3922:32;3919:2;;;3967:1;3964;3957:12;3919:2;4010:1;4035:53;4080:7;4071:6;4060:9;4056:22;4035:53;:::i;:::-;4025:63;;3981:117;4137:2;4163:53;4208:7;4199:6;4188:9;4184:22;4163:53;:::i;:::-;4153:63;;4108:118;3909:324;;;;;:::o;4239:260::-;4297:6;4346:2;4334:9;4325:7;4321:23;4317:32;4314:2;;;4362:1;4359;4352:12;4314:2;4405:1;4430:52;4474:7;4465:6;4454:9;4450:22;4430:52;:::i;:::-;4420:62;;4376:116;4304:195;;;;:::o;4505:282::-;4574:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:2;;;4639:1;4636;4629:12;4591:2;4682:1;4707:63;4762:7;4753:6;4742:9;4738:22;4707:63;:::i;:::-;4697:73;;4653:127;4581:206;;;;:::o;4793:262::-;4852:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:2;;;4917:1;4914;4907:12;4869:2;4960:1;4985:53;5030:7;5021:6;5010:9;5006:22;4985:53;:::i;:::-;4975:63;;4931:117;4859:196;;;;:::o;5061:118::-;5148:24;5166:5;5148:24;:::i;:::-;5143:3;5136:37;5126:53;;:::o;5185:109::-;5266:21;5281:5;5266:21;:::i;:::-;5261:3;5254:34;5244:50;;:::o;5300:360::-;5386:3;5414:38;5446:5;5414:38;:::i;:::-;5468:70;5531:6;5526:3;5468:70;:::i;:::-;5461:77;;5547:52;5592:6;5587:3;5580:4;5573:5;5569:16;5547:52;:::i;:::-;5624:29;5646:6;5624:29;:::i;:::-;5619:3;5615:39;5608:46;;5390:270;;;;;:::o;5666:364::-;5754:3;5782:39;5815:5;5782:39;:::i;:::-;5837:71;5901:6;5896:3;5837:71;:::i;:::-;5830:78;;5917:52;5962:6;5957:3;5950:4;5943:5;5939:16;5917:52;:::i;:::-;5994:29;6016:6;5994:29;:::i;:::-;5989:3;5985:39;5978:46;;5758:272;;;;;:::o;6036:377::-;6142:3;6170:39;6203:5;6170:39;:::i;:::-;6225:89;6307:6;6302:3;6225:89;:::i;:::-;6218:96;;6323:52;6368:6;6363:3;6356:4;6349:5;6345:16;6323:52;:::i;:::-;6400:6;6395:3;6391:16;6384:23;;6146:267;;;;;:::o;6419:366::-;6561:3;6582:67;6646:2;6641:3;6582:67;:::i;:::-;6575:74;;6658:93;6747:3;6658:93;:::i;:::-;6776:2;6771:3;6767:12;6760:19;;6565:220;;;:::o;6791:366::-;6933:3;6954:67;7018:2;7013:3;6954:67;:::i;:::-;6947:74;;7030:93;7119:3;7030:93;:::i;:::-;7148:2;7143:3;7139:12;7132:19;;6937:220;;;:::o;7163:366::-;7305:3;7326:67;7390:2;7385:3;7326:67;:::i;:::-;7319:74;;7402:93;7491:3;7402:93;:::i;:::-;7520:2;7515:3;7511:12;7504:19;;7309:220;;;:::o;7535:366::-;7677:3;7698:67;7762:2;7757:3;7698:67;:::i;:::-;7691:74;;7774:93;7863:3;7774:93;:::i;:::-;7892:2;7887:3;7883:12;7876:19;;7681:220;;;:::o;7907:366::-;8049:3;8070:67;8134:2;8129:3;8070:67;:::i;:::-;8063:74;;8146:93;8235:3;8146:93;:::i;:::-;8264:2;8259:3;8255:12;8248:19;;8053:220;;;:::o;8279:366::-;8421:3;8442:67;8506:2;8501:3;8442:67;:::i;:::-;8435:74;;8518:93;8607:3;8518:93;:::i;:::-;8636:2;8631:3;8627:12;8620:19;;8425:220;;;:::o;8651:366::-;8793:3;8814:67;8878:2;8873:3;8814:67;:::i;:::-;8807:74;;8890:93;8979:3;8890:93;:::i;:::-;9008:2;9003:3;8999:12;8992:19;;8797:220;;;:::o;9023:366::-;9165:3;9186:67;9250:2;9245:3;9186:67;:::i;:::-;9179:74;;9262:93;9351:3;9262:93;:::i;:::-;9380:2;9375:3;9371:12;9364:19;;9169:220;;;:::o;9395:366::-;9537:3;9558:67;9622:2;9617:3;9558:67;:::i;:::-;9551:74;;9634:93;9723:3;9634:93;:::i;:::-;9752:2;9747:3;9743:12;9736:19;;9541:220;;;:::o;9767:366::-;9909:3;9930:67;9994:2;9989:3;9930:67;:::i;:::-;9923:74;;10006:93;10095:3;10006:93;:::i;:::-;10124:2;10119:3;10115:12;10108:19;;9913:220;;;:::o;10139:366::-;10281:3;10302:67;10366:2;10361:3;10302:67;:::i;:::-;10295:74;;10378:93;10467:3;10378:93;:::i;:::-;10496:2;10491:3;10487:12;10480:19;;10285:220;;;:::o;10511:366::-;10653:3;10674:67;10738:2;10733:3;10674:67;:::i;:::-;10667:74;;10750:93;10839:3;10750:93;:::i;:::-;10868:2;10863:3;10859:12;10852:19;;10657:220;;;:::o;10883:118::-;10970:24;10988:5;10970:24;:::i;:::-;10965:3;10958:37;10948:53;;:::o;11007:435::-;11187:3;11209:95;11300:3;11291:6;11209:95;:::i;:::-;11202:102;;11321:95;11412:3;11403:6;11321:95;:::i;:::-;11314:102;;11433:3;11426:10;;11191:251;;;;;:::o;11448:222::-;11541:4;11579:2;11568:9;11564:18;11556:26;;11592:71;11660:1;11649:9;11645:17;11636:6;11592:71;:::i;:::-;11546:124;;;;:::o;11676:640::-;11871:4;11909:3;11898:9;11894:19;11886:27;;11923:71;11991:1;11980:9;11976:17;11967:6;11923:71;:::i;:::-;12004:72;12072:2;12061:9;12057:18;12048:6;12004:72;:::i;:::-;12086;12154:2;12143:9;12139:18;12130:6;12086:72;:::i;:::-;12205:9;12199:4;12195:20;12190:2;12179:9;12175:18;12168:48;12233:76;12304:4;12295:6;12233:76;:::i;:::-;12225:84;;11876:440;;;;;;;:::o;12322:210::-;12409:4;12447:2;12436:9;12432:18;12424:26;;12460:65;12522:1;12511:9;12507:17;12498:6;12460:65;:::i;:::-;12414:118;;;;:::o;12538:313::-;12651:4;12689:2;12678:9;12674:18;12666:26;;12738:9;12732:4;12728:20;12724:1;12713:9;12709:17;12702:47;12766:78;12839:4;12830:6;12766:78;:::i;:::-;12758:86;;12656:195;;;;:::o;12857:419::-;13023:4;13061:2;13050:9;13046:18;13038:26;;13110:9;13104:4;13100:20;13096:1;13085:9;13081:17;13074:47;13138:131;13264:4;13138:131;:::i;:::-;13130:139;;13028:248;;;:::o;13282:419::-;13448:4;13486:2;13475:9;13471:18;13463:26;;13535:9;13529:4;13525:20;13521:1;13510:9;13506:17;13499:47;13563:131;13689:4;13563:131;:::i;:::-;13555:139;;13453:248;;;:::o;13707:419::-;13873:4;13911:2;13900:9;13896:18;13888:26;;13960:9;13954:4;13950:20;13946:1;13935:9;13931:17;13924:47;13988:131;14114:4;13988:131;:::i;:::-;13980:139;;13878:248;;;:::o;14132:419::-;14298:4;14336:2;14325:9;14321:18;14313:26;;14385:9;14379:4;14375:20;14371:1;14360:9;14356:17;14349:47;14413:131;14539:4;14413:131;:::i;:::-;14405:139;;14303:248;;;:::o;14557:419::-;14723:4;14761:2;14750:9;14746:18;14738:26;;14810:9;14804:4;14800:20;14796:1;14785:9;14781:17;14774:47;14838:131;14964:4;14838:131;:::i;:::-;14830:139;;14728:248;;;:::o;14982:419::-;15148:4;15186:2;15175:9;15171:18;15163:26;;15235:9;15229:4;15225:20;15221:1;15210:9;15206:17;15199:47;15263:131;15389:4;15263:131;:::i;:::-;15255:139;;15153:248;;;:::o;15407:419::-;15573:4;15611:2;15600:9;15596:18;15588:26;;15660:9;15654:4;15650:20;15646:1;15635:9;15631:17;15624:47;15688:131;15814:4;15688:131;:::i;:::-;15680:139;;15578:248;;;:::o;15832:419::-;15998:4;16036:2;16025:9;16021:18;16013:26;;16085:9;16079:4;16075:20;16071:1;16060:9;16056:17;16049:47;16113:131;16239:4;16113:131;:::i;:::-;16105:139;;16003:248;;;:::o;16257:419::-;16423:4;16461:2;16450:9;16446:18;16438:26;;16510:9;16504:4;16500:20;16496:1;16485:9;16481:17;16474:47;16538:131;16664:4;16538:131;:::i;:::-;16530:139;;16428:248;;;:::o;16682:419::-;16848:4;16886:2;16875:9;16871:18;16863:26;;16935:9;16929:4;16925:20;16921:1;16910:9;16906:17;16899:47;16963:131;17089:4;16963:131;:::i;:::-;16955:139;;16853:248;;;:::o;17107:419::-;17273:4;17311:2;17300:9;17296:18;17288:26;;17360:9;17354:4;17350:20;17346:1;17335:9;17331:17;17324:47;17388:131;17514:4;17388:131;:::i;:::-;17380:139;;17278:248;;;:::o;17532:419::-;17698:4;17736:2;17725:9;17721:18;17713:26;;17785:9;17779:4;17775:20;17771:1;17760:9;17756:17;17749:47;17813:131;17939:4;17813:131;:::i;:::-;17805:139;;17703:248;;;:::o;17957:222::-;18050:4;18088:2;18077:9;18073:18;18065:26;;18101:71;18169:1;18158:9;18154:17;18145:6;18101:71;:::i;:::-;18055:124;;;;:::o;18185:129::-;18219:6;18246:20;;:::i;:::-;18236:30;;18275:33;18303:4;18295:6;18275:33;:::i;:::-;18226:88;;;:::o;18320:75::-;18353:6;18386:2;18380:9;18370:19;;18360:35;:::o;18401:307::-;18462:4;18552:18;18544:6;18541:30;18538:2;;;18574:18;;:::i;:::-;18538:2;18612:29;18634:6;18612:29;:::i;:::-;18604:37;;18696:4;18690;18686:15;18678:23;;18467:241;;;:::o;18714:98::-;18765:6;18799:5;18793:12;18783:22;;18772:40;;;:::o;18818:99::-;18870:6;18904:5;18898:12;18888:22;;18877:40;;;:::o;18923:168::-;19006:11;19040:6;19035:3;19028:19;19080:4;19075:3;19071:14;19056:29;;19018:73;;;;:::o;19097:169::-;19181:11;19215:6;19210:3;19203:19;19255:4;19250:3;19246:14;19231:29;;19193:73;;;;:::o;19272:148::-;19374:11;19411:3;19396:18;;19386:34;;;;:::o;19426:305::-;19466:3;19485:20;19503:1;19485:20;:::i;:::-;19480:25;;19519:20;19537:1;19519:20;:::i;:::-;19514:25;;19673:1;19605:66;19601:74;19598:1;19595:81;19592:2;;;19679:18;;:::i;:::-;19592:2;19723:1;19720;19716:9;19709:16;;19470:261;;;;:::o;19737:185::-;19777:1;19794:20;19812:1;19794:20;:::i;:::-;19789:25;;19828:20;19846:1;19828:20;:::i;:::-;19823:25;;19867:1;19857:2;;19872:18;;:::i;:::-;19857:2;19914:1;19911;19907:9;19902:14;;19779:143;;;;:::o;19928:191::-;19968:4;19988:20;20006:1;19988:20;:::i;:::-;19983:25;;20022:20;20040:1;20022:20;:::i;:::-;20017:25;;20061:1;20058;20055:8;20052:2;;;20066:18;;:::i;:::-;20052:2;20111:1;20108;20104:9;20096:17;;19973:146;;;;:::o;20125:96::-;20162:7;20191:24;20209:5;20191:24;:::i;:::-;20180:35;;20170:51;;;:::o;20227:90::-;20261:7;20304:5;20297:13;20290:21;20279:32;;20269:48;;;:::o;20323:149::-;20359:7;20399:66;20392:5;20388:78;20377:89;;20367:105;;;:::o;20478:126::-;20515:7;20555:42;20548:5;20544:54;20533:65;;20523:81;;;:::o;20610:77::-;20647:7;20676:5;20665:16;;20655:32;;;:::o;20693:154::-;20777:6;20772:3;20767;20754:30;20839:1;20830:6;20825:3;20821:16;20814:27;20744:103;;;:::o;20853:307::-;20921:1;20931:113;20945:6;20942:1;20939:13;20931:113;;;21030:1;21025:3;21021:11;21015:18;21011:1;21006:3;21002:11;20995:39;20967:2;20964:1;20960:10;20955:15;;20931:113;;;21062:6;21059:1;21056:13;21053:2;;;21142:1;21133:6;21128:3;21124:16;21117:27;21053:2;20902:258;;;;:::o;21166:320::-;21210:6;21247:1;21241:4;21237:12;21227:22;;21294:1;21288:4;21284:12;21315:18;21305:2;;21371:4;21363:6;21359:17;21349:27;;21305:2;21433;21425:6;21422:14;21402:18;21399:38;21396:2;;;21452:18;;:::i;:::-;21396:2;21217:269;;;;:::o;21492:281::-;21575:27;21597:4;21575:27;:::i;:::-;21567:6;21563:40;21705:6;21693:10;21690:22;21669:18;21657:10;21654:34;21651:62;21648:2;;;21716:18;;:::i;:::-;21648:2;21756:10;21752:2;21745:22;21535:238;;;:::o;21779:233::-;21818:3;21841:24;21859:5;21841:24;:::i;:::-;21832:33;;21887:66;21880:5;21877:77;21874:2;;;21957:18;;:::i;:::-;21874:2;22004:1;21997:5;21993:13;21986:20;;21822:190;;;:::o;22018:176::-;22050:1;22067:20;22085:1;22067:20;:::i;:::-;22062:25;;22101:20;22119:1;22101:20;:::i;:::-;22096:25;;22140:1;22130:2;;22145:18;;:::i;:::-;22130:2;22186:1;22183;22179:9;22174:14;;22052:142;;;;:::o;22200:180::-;22248:77;22245:1;22238:88;22345:4;22342:1;22335:15;22369:4;22366:1;22359:15;22386:180;22434:77;22431:1;22424:88;22531:4;22528:1;22521:15;22555:4;22552:1;22545:15;22572:180;22620:77;22617:1;22610:88;22717:4;22714:1;22707:15;22741:4;22738:1;22731:15;22758:180;22806:77;22803:1;22796:88;22903:4;22900:1;22893:15;22927:4;22924:1;22917:15;22944:102;22985:6;23036:2;23032:7;23027:2;23020:5;23016:14;23012:28;23002:38;;22992:54;;;:::o;23052:237::-;23192:34;23188:1;23180:6;23176:14;23169:58;23261:20;23256:2;23248:6;23244:15;23237:45;23158:131;:::o;23295:224::-;23435:34;23431:1;23423:6;23419:14;23412:58;23504:7;23499:2;23491:6;23487:15;23480:32;23401:118;:::o;23525:223::-;23665:34;23661:1;23653:6;23649:14;23642:58;23734:6;23729:2;23721:6;23717:15;23710:31;23631:117;:::o;23754:175::-;23894:27;23890:1;23882:6;23878:14;23871:51;23860:69;:::o;23935:231::-;24075:34;24071:1;24063:6;24059:14;24052:58;24144:14;24139:2;24131:6;24127:15;24120:39;24041:125;:::o;24172:243::-;24312:34;24308:1;24300:6;24296:14;24289:58;24381:26;24376:2;24368:6;24364:15;24357:51;24278:137;:::o;24421:229::-;24561:34;24557:1;24549:6;24545:14;24538:58;24630:12;24625:2;24617:6;24613:15;24606:37;24527:123;:::o;24656:228::-;24796:34;24792:1;24784:6;24780:14;24773:58;24865:11;24860:2;24852:6;24848:15;24841:36;24762:122;:::o;24890:231::-;25030:34;25026:1;25018:6;25014:14;25007:58;25099:14;25094:2;25086:6;25082:15;25075:39;24996:125;:::o;25127:234::-;25267:34;25263:1;25255:6;25251:14;25244:58;25336:17;25331:2;25323:6;25319:15;25312:42;25233:128;:::o;25367:220::-;25507:34;25503:1;25495:6;25491:14;25484:58;25576:3;25571:2;25563:6;25559:15;25552:28;25473:114;:::o;25593:236::-;25733:34;25729:1;25721:6;25717:14;25710:58;25802:19;25797:2;25789:6;25785:15;25778:44;25699:130;:::o;25835:122::-;25908:24;25926:5;25908:24;:::i;:::-;25901:5;25898:35;25888:2;;25947:1;25944;25937:12;25888:2;25878:79;:::o;25963:116::-;26033:21;26048:5;26033:21;:::i;:::-;26026:5;26023:32;26013:2;;26069:1;26066;26059:12;26013:2;26003:76;:::o;26085:120::-;26157:23;26174:5;26157:23;:::i;:::-;26150:5;26147:34;26137:2;;26195:1;26192;26185:12;26137:2;26127:78;:::o;26211:122::-;26284:24;26302:5;26284:24;:::i;:::-;26277:5;26274:35;26264:2;;26323:1;26320;26313:12;26264:2;26254:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1831800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1624",
"getApproved(uint256)": "2605",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "1700",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "774",
"symbol()": "infinite",
"tokenURI(uint256)": "2095",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_afterTokenTransfer(address,address,uint256)": "15",
"_approve(address,uint256)": "infinite",
"_baseURI()": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "15",
"_burn(uint256)": "infinite",
"_checkOnERC721Received(address,address,uint256,bytes memory)": "infinite",
"_exists(uint256)": "969",
"_isApprovedOrOwner(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_safeMint(address,uint256)": "infinite",
"_safeMint(address,uint256,bytes memory)": "infinite",
"_safeTransfer(address,address,uint256,bytes memory)": "infinite",
"_setApprovalForAll(address,address,bool)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol": "ERC721"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol": {
"keccak256": "0x921f012325281f7d81e29c53a13824cf6c2c5d77232065d0d4f3f912e97af6ea",
"license": "MIT",
"urls": [
"bzz-raw://7dbcedc364fce0ab5e54d21d4cbd91a97959f52c0674cf5c36a314bb58308f62",
"dweb:/ipfs/QmfYpqHKtu3bSQ9FGvLwzdxRNykStpVPtoLNTaM1KBKj6E"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol": {
"keccak256": "0x0d4de01fe5360c38b4ad2b0822a12722958428f5138a7ff47c1720eb6fa52bba",
"license": "MIT",
"urls": [
"bzz-raw://77724cecdfba8814632ab58737c2b0f2d4ad2d532bc614aee559b5593c1152f0",
"dweb:/ipfs/QmUcE6gXyv7CQh4sUdcDABYKGTovTe1zLMZSEq95nkc3ph"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da",
"license": "MIT",
"urls": [
"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708",
"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol": {
"keccak256": "0x2ccf9d2313a313d41a791505f2b5abfdc62191b5d4334f7f7a82691c088a1c87",
"license": "MIT",
"urls": [
"bzz-raw://b3a57d0854b2fdce6ebff933a48dca2445643d1eccfc27f00292e937f26c6a58",
"dweb:/ipfs/QmW45rZooS9TqR4YXUbjRbtf2Bpb5ouSarBvfW1LdGprvV"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "_approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.4+commit.c7e474f2"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "_approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Required interface of an ERC721 compliant contract.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when `owner` enables `approved` to manage the `tokenId` token."
},
"ApprovalForAll(address,address,bool)": {
"details": "Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `tokenId` token is transferred from `from` to `to`."
}
},
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "Gives permission to `to` to transfer `tokenId` token to another account. The approval is cleared when the token is transferred. Only a single account can be approved at a time, so approving the zero address clears previous approvals. Requirements: - The caller must own the token or be an approved operator. - `tokenId` must exist. Emits an {Approval} event."
},
"balanceOf(address)": {
"details": "Returns the number of tokens in ``owner``'s account."
},
"getApproved(uint256)": {
"details": "Returns the account approved for `tokenId` token. Requirements: - `tokenId` must exist."
},
"isApprovedForAll(address,address)": {
"details": "Returns if the `operator` is allowed to manage all of the assets of `owner`. See {setApprovalForAll}"
},
"ownerOf(uint256)": {
"details": "Returns the owner of the `tokenId` token. Requirements: - `tokenId` must exist."
},
"safeTransferFrom(address,address,uint256)": {
"details": "Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients are aware of the ERC721 protocol to prevent tokens from being forever locked. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "Safely transfers `tokenId` token from `from` to `to`. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must exist and be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. Emits a {Transfer} event."
},
"setApprovalForAll(address,bool)": {
"details": "Approve or remove `operator` as an operator for the caller. Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. Requirements: - The `operator` cannot be the caller. Emits an {ApprovalForAll} event."
},
"supportsInterface(bytes4)": {
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
},
"transferFrom(address,address,uint256)": {
"details": "Transfers `tokenId` token from `from` to `to`. WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. Requirements: - `from` cannot be the zero address. - `to` cannot be the zero address. - `tokenId` token must be owned by `from`. - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. Emits a {Transfer} event."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol": "IERC721"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol": {
"keccak256": "0x0d4de01fe5360c38b4ad2b0822a12722958428f5138a7ff47c1720eb6fa52bba",
"license": "MIT",
"urls": [
"bzz-raw://77724cecdfba8814632ab58737c2b0f2d4ad2d532bc614aee559b5593c1152f0",
"dweb:/ipfs/QmUcE6gXyv7CQh4sUdcDABYKGTovTe1zLMZSEq95nkc3ph"
]
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` 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 tokenId
) 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.
* - `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 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
This file has been truncated, but you can view the full file.
{
"id": "7fb2515b96cb98495d507bbf9bfdfd8f",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.4",
"solcLongVersion": "0.8.4+commit.c7e474f2",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC721.sol\";\nimport \"./IERC721Receiver.sol\";\nimport \"./extensions/IERC721Metadata.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/Strings.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\n using Address for address;\n using Strings for uint256;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n // Mapping from token ID to owner address\n mapping(uint256 => address) private _owners;\n\n // Mapping owner address to token count\n mapping(address => uint256) private _balances;\n\n // Mapping from token ID to approved address\n mapping(uint256 => address) private _tokenApprovals;\n\n // Mapping from owner to operator approvals\n mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n /**\n * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view virtual override returns (uint256) {\n require(owner != address(0), \"ERC721: balance query for the zero address\");\n return _balances[owner];\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view virtual override returns (address) {\n address owner = _owners[tokenId];\n require(owner != address(0), \"ERC721: owner query for nonexistent token\");\n return owner;\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n require(_exists(tokenId), \"ERC721Metadata: URI query for nonexistent token\");\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\";\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overridden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return \"\";\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public virtual override {\n address owner = ERC721.ownerOf(tokenId);\n require(to != owner, \"ERC721: approval to current owner\");\n\n require(\n _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\n \"ERC721: approve caller is not owner nor approved for all\"\n );\n\n _approve(to, tokenId);\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view virtual override returns (address) {\n require(_exists(tokenId), \"ERC721: approved query for nonexistent token\");\n\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual override {\n _setApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n //solhint-disable-next-line max-line-length\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\");\n\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n safeTransferFrom(from, to, tokenId, \"\");\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) public virtual override {\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\");\n _safeTransfer(from, to, tokenId, _data);\n }\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * `_data` is additional data, it has no specified format and it is sent in call to `to`.\n *\n * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\n * implement alternative mechanisms to perform token transfer, such as signature-based.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeTransfer(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) internal virtual {\n _transfer(from, to, tokenId);\n require(_checkOnERC721Received(from, to, tokenId, _data), \"ERC721: transfer to non ERC721Receiver implementer\");\n }\n\n /**\n * @dev Returns whether `tokenId` exists.\n *\n * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n *\n * Tokens start existing when they are minted (`_mint`),\n * and stop existing when they are burned (`_burn`).\n */\n function _exists(uint256 tokenId) internal view virtual returns (bool) {\n return _owners[tokenId] != address(0);\n }\n\n /**\n * @dev Returns whether `spender` is allowed to manage `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\n require(_exists(tokenId), \"ERC721: operator query for nonexistent token\");\n address owner = ERC721.ownerOf(tokenId);\n return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);\n }\n\n /**\n * @dev Safely mints `tokenId` and transfers it to `to`.\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(address to, uint256 tokenId) internal virtual {\n _safeMint(to, tokenId, \"\");\n }\n\n /**\n * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n */\n function _safeMint(\n address to,\n uint256 tokenId,\n bytes memory _data\n ) internal virtual {\n _mint(to, tokenId);\n require(\n _checkOnERC721Received(address(0), to, tokenId, _data),\n \"ERC721: transfer to non ERC721Receiver implementer\"\n );\n }\n\n /**\n * @dev Mints `tokenId` and transfers it to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - `to` cannot be the zero address.\n *\n * Emits a {Transfer} event.\n */\n function _mint(address to, uint256 tokenId) internal virtual {\n require(to != address(0), \"ERC721: mint to the zero address\");\n require(!_exists(tokenId), \"ERC721: token already minted\");\n\n _beforeTokenTransfer(address(0), to, tokenId);\n\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(address(0), to, tokenId);\n\n _afterTokenTransfer(address(0), to, tokenId);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId) internal virtual {\n address owner = ERC721.ownerOf(tokenId);\n\n _beforeTokenTransfer(owner, address(0), tokenId);\n\n // Clear approvals\n _approve(address(0), tokenId);\n\n _balances[owner] -= 1;\n delete _owners[tokenId];\n\n emit Transfer(owner, address(0), tokenId);\n\n _afterTokenTransfer(owner, address(0), tokenId);\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {\n require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n require(to != address(0), \"ERC721: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, tokenId);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId);\n\n _balances[from] -= 1;\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(from, to, tokenId);\n\n _afterTokenTransfer(from, to, tokenId);\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits a {Approval} event.\n */\n function _approve(address to, uint256 tokenId) internal virtual {\n _tokenApprovals[tokenId] = to;\n emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\n }\n\n /**\n * @dev Approve `operator` to operate on all of `owner` tokens\n *\n * Emits a {ApprovalForAll} event.\n */\n function _setApprovalForAll(\n address owner,\n address operator,\n bool approved\n ) internal virtual {\n require(owner != operator, \"ERC721: approve to caller\");\n _operatorApprovals[owner][operator] = approved;\n emit ApprovalForAll(owner, operator, approved);\n }\n\n /**\n * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n * The call is not executed if the target address is not a contract.\n *\n * @param from address representing the previous owner of the given token ID\n * @param to target address that will receive the tokens\n * @param tokenId uint256 ID of the token to be transferred\n * @param _data bytes optional data to send along with the call\n * @return bool whether the call correctly returned the expected magic value\n */\n function _checkOnERC721Received(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) private returns (bool) {\n if (to.isContract()) {\n try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {\n return retval == IERC721Receiver.onERC721Received.selector;\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n revert(\"ERC721: transfer to non ERC721Receiver implementer\");\n } else {\n assembly {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n } else {\n return true;\n }\n }\n\n /**\n * @dev Hook that is called before any token transfer. This includes minting\n * and burning.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\n * transferred to `to`.\n * - When `from` is zero, `tokenId` will be minted for `to`.\n * - When `to` is zero, ``from``'s `tokenId` will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n // Inspired by OraclizeAPI's implementation - MIT licence\n // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n if (value == 0) {\n return \"0\";\n }\n uint256 temp = value;\n uint256 digits;\n while (temp != 0) {\n digits++;\n temp /= 10;\n }\n bytes memory buffer = new bytes(digits);\n while (value != 0) {\n digits -= 1;\n buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n value /= 10;\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n if (value == 0) {\n return \"0x00\";\n }\n uint256 temp = value;\n uint256 length = 0;\n while (temp != 0) {\n length++;\n temp >>= 8;\n }\n return toHexString(value, length);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _HEX_SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/extensions/IERC721Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721Receiver.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n *\n * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/IERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/IERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol": {
"ERC721": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"evm": {
"assembly": " /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":628:14286 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1464:1469 name_ */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1456:1461 _name */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1456:1469 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1489:1496 symbol_ */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1479:1486 _symbol */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1479:1496 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":628:14286 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n jump(tag_9)\ntag_7:\n dup3\n dup1\n sload\n tag_10\n swap1\n tag_11\n jump\t// in\ntag_10:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_13\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_12)\ntag_13:\n dup3\n 0x1f\n lt\n tag_14\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_12)\ntag_14:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_12\n jumpi\n swap2\n dup3\n add\ntag_15:\n dup3\n dup2\n gt\n iszero\n tag_16\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_15)\ntag_16:\ntag_12:\n pop\n swap1\n pop\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\ntag_17:\n pop\n swap1\n jump\t// out\ntag_18:\ntag_19:\n dup1\n dup3\n gt\n iszero\n tag_20\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_19)\ntag_20:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:361 */\ntag_22:\n /* \"#utility.yul\":96:101 */\n 0x00\n /* \"#utility.yul\":121:187 */\n tag_24\n /* \"#utility.yul\":137:186 */\n tag_25\n /* \"#utility.yul\":179:185 */\n dup5\n /* \"#utility.yul\":137:186 */\n tag_26\n jump\t// in\ntag_25:\n /* \"#utility.yul\":121:187 */\n tag_27\n jump\t// in\ntag_24:\n /* \"#utility.yul\":112:187 */\n swap1\n pop\n /* \"#utility.yul\":210:216 */\n dup3\n /* \"#utility.yul\":203:208 */\n dup2\n /* \"#utility.yul\":196:217 */\n mstore\n /* \"#utility.yul\":248:252 */\n 0x20\n /* \"#utility.yul\":241:246 */\n dup2\n /* \"#utility.yul\":237:253 */\n add\n /* \"#utility.yul\":286:289 */\n dup5\n /* \"#utility.yul\":277:283 */\n dup5\n /* \"#utility.yul\":272:275 */\n dup5\n /* \"#utility.yul\":268:284 */\n add\n /* \"#utility.yul\":265:290 */\n gt\n /* \"#utility.yul\":262:264 */\n iszero\n tag_28\n jumpi\n /* \"#utility.yul\":303:304 */\n 0x00\n /* \"#utility.yul\":300:301 */\n dup1\n /* \"#utility.yul\":293:305 */\n revert\n /* \"#utility.yul\":262:264 */\ntag_28:\n /* \"#utility.yul\":316:355 */\n tag_29\n /* \"#utility.yul\":348:354 */\n dup5\n /* \"#utility.yul\":343:346 */\n dup3\n /* \"#utility.yul\":338:341 */\n dup6\n /* \"#utility.yul\":316:355 */\n tag_30\n jump\t// in\ntag_29:\n /* \"#utility.yul\":102:361 */\n pop\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":381:669 */\ntag_31:\n /* \"#utility.yul\":448:453 */\n 0x00\n /* \"#utility.yul\":497:500 */\n dup3\n /* \"#utility.yul\":490:494 */\n 0x1f\n /* \"#utility.yul\":482:488 */\n dup4\n /* \"#utility.yul\":478:495 */\n add\n /* \"#utility.yul\":474:501 */\n slt\n /* \"#utility.yul\":464:466 */\n tag_33\n jumpi\n /* \"#utility.yul\":515:516 */\n 0x00\n /* \"#utility.yul\":512:513 */\n dup1\n /* \"#utility.yul\":505:517 */\n revert\n /* \"#utility.yul\":464:466 */\ntag_33:\n /* \"#utility.yul\":548:554 */\n dup2\n /* \"#utility.yul\":542:555 */\n mload\n /* \"#utility.yul\":573:663 */\n tag_34\n /* \"#utility.yul\":659:662 */\n dup5\n /* \"#utility.yul\":651:657 */\n dup3\n /* \"#utility.yul\":644:648 */\n 0x20\n /* \"#utility.yul\":636:642 */\n dup7\n /* \"#utility.yul\":632:649 */\n add\n /* \"#utility.yul\":573:663 */\n tag_22\n jump\t// in\ntag_34:\n /* \"#utility.yul\":564:663 */\n swap2\n pop\n /* \"#utility.yul\":454:669 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":675:1327 */\ntag_3:\n /* \"#utility.yul\":774:780 */\n 0x00\n /* \"#utility.yul\":782:788 */\n dup1\n /* \"#utility.yul\":831:833 */\n 0x40\n /* \"#utility.yul\":819:828 */\n dup4\n /* \"#utility.yul\":810:817 */\n dup6\n /* \"#utility.yul\":806:829 */\n sub\n /* \"#utility.yul\":802:834 */\n slt\n /* \"#utility.yul\":799:801 */\n iszero\n tag_36\n jumpi\n /* \"#utility.yul\":847:848 */\n 0x00\n /* \"#utility.yul\":844:845 */\n dup1\n /* \"#utility.yul\":837:849 */\n revert\n /* \"#utility.yul\":799:801 */\ntag_36:\n /* \"#utility.yul\":911:912 */\n 0x00\n /* \"#utility.yul\":900:909 */\n dup4\n /* \"#utility.yul\":896:913 */\n add\n /* \"#utility.yul\":890:914 */\n mload\n /* \"#utility.yul\":941:959 */\n 0xffffffffffffffff\n /* \"#utility.yul\":933:939 */\n dup2\n /* \"#utility.yul\":930:960 */\n gt\n /* \"#utility.yul\":927:929 */\n iszero\n tag_37\n jumpi\n /* \"#utility.yul\":973:974 */\n 0x00\n /* \"#utility.yul\":970:971 */\n dup1\n /* \"#utility.yul\":963:975 */\n revert\n /* \"#utility.yul\":927:929 */\ntag_37:\n /* \"#utility.yul\":1001:1075 */\n tag_38\n /* \"#utility.yul\":1067:1074 */\n dup6\n /* \"#utility.yul\":1058:1064 */\n dup3\n /* \"#utility.yul\":1047:1056 */\n dup7\n /* \"#utility.yul\":1043:1065 */\n add\n /* \"#utility.yul\":1001:1075 */\n tag_31\n jump\t// in\ntag_38:\n /* \"#utility.yul\":991:1075 */\n swap3\n pop\n /* \"#utility.yul\":861:1085 */\n pop\n /* \"#utility.yul\":1145:1147 */\n 0x20\n /* \"#utility.yul\":1134:1143 */\n dup4\n /* \"#utility.yul\":1130:1148 */\n add\n /* \"#utility.yul\":1124:1149 */\n mload\n /* \"#utility.yul\":1176:1194 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1168:1174 */\n dup2\n /* \"#utility.yul\":1165:1195 */\n gt\n /* \"#utility.yul\":1162:1164 */\n iszero\n tag_39\n jumpi\n /* \"#utility.yul\":1208:1209 */\n 0x00\n /* \"#utility.yul\":1205:1206 */\n dup1\n /* \"#utility.yul\":1198:1210 */\n revert\n /* \"#utility.yul\":1162:1164 */\ntag_39:\n /* \"#utility.yul\":1236:1310 */\n tag_40\n /* \"#utility.yul\":1302:1309 */\n dup6\n /* \"#utility.yul\":1293:1299 */\n dup3\n /* \"#utility.yul\":1282:1291 */\n dup7\n /* \"#utility.yul\":1278:1300 */\n add\n /* \"#utility.yul\":1236:1310 */\n tag_31\n jump\t// in\ntag_40:\n /* \"#utility.yul\":1226:1310 */\n swap2\n pop\n /* \"#utility.yul\":1095:1320 */\n pop\n /* \"#utility.yul\":789:1327 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1333:1462 */\ntag_27:\n /* \"#utility.yul\":1367:1373 */\n 0x00\n /* \"#utility.yul\":1394:1414 */\n tag_42\n tag_43\n jump\t// in\ntag_42:\n /* \"#utility.yul\":1384:1414 */\n swap1\n pop\n /* \"#utility.yul\":1423:1456 */\n tag_44\n /* \"#utility.yul\":1451:1455 */\n dup3\n /* \"#utility.yul\":1443:1449 */\n dup3\n /* \"#utility.yul\":1423:1456 */\n tag_45\n jump\t// in\ntag_44:\n /* \"#utility.yul\":1374:1462 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1468:1543 */\ntag_43:\n /* \"#utility.yul\":1501:1507 */\n 0x00\n /* \"#utility.yul\":1534:1536 */\n 0x40\n /* \"#utility.yul\":1528:1537 */\n mload\n /* \"#utility.yul\":1518:1537 */\n swap1\n pop\n /* \"#utility.yul\":1508:1543 */\n swap1\n jump\t// out\n /* \"#utility.yul\":1549:1857 */\ntag_26:\n /* \"#utility.yul\":1611:1615 */\n 0x00\n /* \"#utility.yul\":1701:1719 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1693:1699 */\n dup3\n /* \"#utility.yul\":1690:1720 */\n gt\n /* \"#utility.yul\":1687:1689 */\n iszero\n tag_48\n jumpi\n /* \"#utility.yul\":1723:1741 */\n tag_49\n tag_50\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1687:1689 */\ntag_48:\n /* \"#utility.yul\":1761:1790 */\n tag_51\n /* \"#utility.yul\":1783:1789 */\n dup3\n /* \"#utility.yul\":1761:1790 */\n tag_52\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1753:1790 */\n swap1\n pop\n /* \"#utility.yul\":1845:1849 */\n 0x20\n /* \"#utility.yul\":1839:1843 */\n dup2\n /* \"#utility.yul\":1835:1850 */\n add\n /* \"#utility.yul\":1827:1850 */\n swap1\n pop\n /* \"#utility.yul\":1616:1857 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1863:2170 */\ntag_30:\n /* \"#utility.yul\":1931:1932 */\n 0x00\n /* \"#utility.yul\":1941:2054 */\ntag_54:\n /* \"#utility.yul\":1955:1961 */\n dup4\n /* \"#utility.yul\":1952:1953 */\n dup2\n /* \"#utility.yul\":1949:1962 */\n lt\n /* \"#utility.yul\":1941:2054 */\n iszero\n tag_56\n jumpi\n /* \"#utility.yul\":2040:2041 */\n dup1\n /* \"#utility.yul\":2035:2038 */\n dup3\n /* \"#utility.yul\":2031:2042 */\n add\n /* \"#utility.yul\":2025:2043 */\n mload\n /* \"#utility.yul\":2021:2022 */\n dup2\n /* \"#utility.yul\":2016:2019 */\n dup5\n /* \"#utility.yul\":2012:2023 */\n add\n /* \"#utility.yul\":2005:2044 */\n mstore\n /* \"#utility.yul\":1977:1979 */\n 0x20\n /* \"#utility.yul\":1974:1975 */\n dup2\n /* \"#utility.yul\":1970:1980 */\n add\n /* \"#utility.yul\":1965:1980 */\n swap1\n pop\n /* \"#utility.yul\":1941:2054 */\n jump(tag_54)\ntag_56:\n /* \"#utility.yul\":2072:2078 */\n dup4\n /* \"#utility.yul\":2069:2070 */\n dup2\n /* \"#utility.yul\":2066:2079 */\n gt\n /* \"#utility.yul\":2063:2065 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":2152:2153 */\n 0x00\n /* \"#utility.yul\":2143:2149 */\n dup5\n /* \"#utility.yul\":2138:2141 */\n dup5\n /* \"#utility.yul\":2134:2150 */\n add\n /* \"#utility.yul\":2127:2154 */\n mstore\n /* \"#utility.yul\":2063:2065 */\ntag_57:\n /* \"#utility.yul\":1912:2170 */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2176:2496 */\ntag_11:\n /* \"#utility.yul\":2220:2226 */\n 0x00\n /* \"#utility.yul\":2257:2258 */\n 0x02\n /* \"#utility.yul\":2251:2255 */\n dup3\n /* \"#utility.yul\":2247:2259 */\n div\n /* \"#utility.yul\":2237:2259 */\n swap1\n pop\n /* \"#utility.yul\":2304:2305 */\n 0x01\n /* \"#utility.yul\":2298:2302 */\n dup3\n /* \"#utility.yul\":2294:2306 */\n and\n /* \"#utility.yul\":2325:2343 */\n dup1\n /* \"#utility.yul\":2315:2317 */\n tag_59\n jumpi\n /* \"#utility.yul\":2381:2385 */\n 0x7f\n /* \"#utility.yul\":2373:2379 */\n dup3\n /* \"#utility.yul\":2369:2386 */\n and\n /* \"#utility.yul\":2359:2386 */\n swap2\n pop\n /* \"#utility.yul\":2315:2317 */\ntag_59:\n /* \"#utility.yul\":2443:2445 */\n 0x20\n /* \"#utility.yul\":2435:2441 */\n dup3\n /* \"#utility.yul\":2432:2446 */\n lt\n /* \"#utility.yul\":2412:2430 */\n dup2\n /* \"#utility.yul\":2409:2447 */\n eq\n /* \"#utility.yul\":2406:2408 */\n iszero\n tag_60\n jumpi\n /* \"#utility.yul\":2462:2480 */\n tag_61\n tag_62\n jump\t// in\ntag_61:\n /* \"#utility.yul\":2406:2408 */\ntag_60:\n /* \"#utility.yul\":2227:2496 */\n pop\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2502:2783 */\ntag_45:\n /* \"#utility.yul\":2585:2612 */\n tag_64\n /* \"#utility.yul\":2607:2611 */\n dup3\n /* \"#utility.yul\":2585:2612 */\n tag_52\n jump\t// in\ntag_64:\n /* \"#utility.yul\":2577:2583 */\n dup2\n /* \"#utility.yul\":2573:2613 */\n add\n /* \"#utility.yul\":2715:2721 */\n dup2\n /* \"#utility.yul\":2703:2713 */\n dup2\n /* \"#utility.yul\":2700:2722 */\n lt\n /* \"#utility.yul\":2679:2697 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2667:2677 */\n dup3\n /* \"#utility.yul\":2664:2698 */\n gt\n /* \"#utility.yul\":2661:2723 */\n or\n /* \"#utility.yul\":2658:2660 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":2726:2744 */\n tag_66\n tag_50\n jump\t// in\ntag_66:\n /* \"#utility.yul\":2658:2660 */\ntag_65:\n /* \"#utility.yul\":2766:2776 */\n dup1\n /* \"#utility.yul\":2762:2764 */\n 0x40\n /* \"#utility.yul\":2755:2777 */\n mstore\n /* \"#utility.yul\":2545:2783 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2789:2969 */\ntag_62:\n /* \"#utility.yul\":2837:2914 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2834:2835 */\n 0x00\n /* \"#utility.yul\":2827:2915 */\n mstore\n /* \"#utility.yul\":2934:2938 */\n 0x22\n /* \"#utility.yul\":2931:2932 */\n 0x04\n /* \"#utility.yul\":2924:2939 */\n mstore\n /* \"#utility.yul\":2958:2962 */\n 0x24\n /* \"#utility.yul\":2955:2956 */\n 0x00\n /* \"#utility.yul\":2948:2963 */\n revert\n /* \"#utility.yul\":2975:3155 */\ntag_50:\n /* \"#utility.yul\":3023:3100 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3020:3021 */\n 0x00\n /* \"#utility.yul\":3013:3101 */\n mstore\n /* \"#utility.yul\":3120:3124 */\n 0x41\n /* \"#utility.yul\":3117:3118 */\n 0x04\n /* \"#utility.yul\":3110:3125 */\n mstore\n /* \"#utility.yul\":3144:3148 */\n 0x24\n /* \"#utility.yul\":3141:3142 */\n 0x00\n /* \"#utility.yul\":3134:3149 */\n revert\n /* \"#utility.yul\":3161:3263 */\ntag_52:\n /* \"#utility.yul\":3202:3208 */\n 0x00\n /* \"#utility.yul\":3253:3255 */\n 0x1f\n /* \"#utility.yul\":3249:3256 */\n not\n /* \"#utility.yul\":3244:3246 */\n 0x1f\n /* \"#utility.yul\":3237:3242 */\n dup4\n /* \"#utility.yul\":3233:3247 */\n add\n /* \"#utility.yul\":3229:3257 */\n and\n /* \"#utility.yul\":3219:3257 */\n swap1\n pop\n /* \"#utility.yul\":3209:3263 */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":628:14286 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":628:14286 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x6352211e\n gt\n tag_16\n jumpi\n dup1\n 0xa22cb465\n gt\n tag_17\n jumpi\n dup1\n 0xa22cb465\n eq\n tag_12\n jumpi\n dup1\n 0xb88d4fde\n eq\n tag_13\n jumpi\n dup1\n 0xc87b56dd\n eq\n tag_14\n jumpi\n dup1\n 0xe985e9c5\n eq\n tag_15\n jumpi\n jump(tag_2)\n tag_17:\n dup1\n 0x6352211e\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_11\n jumpi\n jump(tag_2)\n tag_16:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x081812fc\n eq\n tag_5\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_6\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_7\n jumpi\n dup1\n 0x42842e0e\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_3:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_24\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4000:4217 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_5:\n tag_28\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_29\n swap2\n swap1\n tag_30\n jump\t// in\n tag_29:\n tag_31\n jump\t// in\n tag_28:\n mload(0x40)\n tag_32\n swap2\n swap1\n tag_33\n jump\t// in\n tag_32:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3538:3939 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_6:\n tag_34\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_35\n swap2\n swap1\n tag_36\n jump\t// in\n tag_35:\n tag_37\n jump\t// in\n tag_34:\n stop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4727:5057 function transferFrom(... */\n tag_7:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n tag_38:\n stop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5123:5302 function safeTransferFrom(... */\n tag_8:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_40\n jump\t// in\n tag_43:\n tag_44\n jump\t// in\n tag_42:\n stop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_9:\n tag_45\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_46\n swap2\n swap1\n tag_30\n jump\t// in\n tag_46:\n tag_47\n jump\t// in\n tag_45:\n mload(0x40)\n tag_48\n swap2\n swap1\n tag_33\n jump\t// in\n tag_48:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_10:\n tag_49\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_50\n swap2\n swap1\n tag_51\n jump\t// in\n tag_50:\n tag_52\n jump\t// in\n tag_49:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_54\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n tag_11:\n tag_55\n tag_56\n jump\t// in\n tag_55:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_27\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4284:4437 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_12:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n stop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5368:5688 function safeTransferFrom(... */\n tag_13:\n tag_62\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_63\n swap2\n swap1\n tag_64\n jump\t// in\n tag_63:\n tag_65\n jump\t// in\n tag_62:\n stop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_14:\n tag_66\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_67\n swap2\n swap1\n tag_30\n jump\t// in\n tag_67:\n tag_68\n jump\t// in\n tag_66:\n mload(0x40)\n tag_69\n swap2\n swap1\n tag_27\n jump\t// in\n tag_69:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4503:4665 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_15:\n tag_70\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_71\n swap2\n swap1\n tag_72\n jump\t// in\n tag_71:\n tag_73\n jump\t// in\n tag_70:\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_23\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_21:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1672:1676 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1722:1747 type(IERC721).interfaceId */\n 0x80ac58cd00000000000000000000000000000000000000000000000000000000\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1707:1718 interfaceId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_76\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1778:1811 type(IERC721Metadata).interfaceId */\n 0x5b5e139f00000000000000000000000000000000000000000000000000000000\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1763:1774 interfaceId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n tag_76:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_77\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n tag_78\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1851:1862 interfaceId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1827:1850 super.supportsInterface */\n tag_79\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n jump\t// in\n tag_78:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n tag_77:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1688:1863 return... */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n tag_25:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2542:2555 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2574:2579 _name */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2567:2579 return _name */\n dup1\n sload\n tag_81\n swap1\n tag_82\n jump\t// in\n tag_81:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_83\n swap1\n tag_82\n jump\t// in\n tag_83:\n dup1\n iszero\n tag_84\n jumpi\n dup1\n 0x1f\n lt\n tag_85\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_84)\n tag_85:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_86:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_86\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_84:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4000:4217 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_31:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4076:4083 address */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4103:4119 _exists(tokenId) */\n tag_88\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4111:4118 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4103:4110 _exists */\n tag_89\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4103:4119 _exists(tokenId) */\n jump\t// in\n tag_88:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4095:4168 require(_exists(tokenId), \"ERC721: approved query for nonexistent token\") */\n tag_90\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_91\n swap1\n tag_92\n jump\t// in\n tag_91:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_90:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4186:4201 _tokenApprovals */\n 0x04\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4186:4210 _tokenApprovals[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4202:4209 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4186:4210 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4179:4210 return _tokenApprovals[tokenId] */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4000:4217 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3538:3939 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_37:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3618:3631 address owner */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3634:3657 ERC721.ownerOf(tokenId) */\n tag_94\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3649:3656 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3634:3648 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3634:3657 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_94:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3618:3657 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3681:3686 owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3675:3686 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3675:3677 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3675:3686 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3667:3724 require(to != owner, \"ERC721: approval to current owner\") */\n tag_95\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_96\n swap1\n tag_97\n jump\t// in\n tag_96:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_95:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3772:3777 owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3756:3777 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3756:3768 _msgSender() */\n tag_98\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3756:3766 _msgSender */\n tag_99\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3756:3768 _msgSender() */\n jump\t// in\n tag_98:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3756:3777 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3756:3818 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n dup1\n tag_100\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3781:3818 isApprovedForAll(owner, _msgSender()) */\n tag_101\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3798:3803 owner */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3805:3817 _msgSender() */\n tag_102\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3805:3815 _msgSender */\n tag_99\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3805:3817 _msgSender() */\n jump\t// in\n tag_102:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3781:3797 isApprovedForAll */\n tag_73\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3781:3818 isApprovedForAll(owner, _msgSender()) */\n jump\t// in\n tag_101:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3756:3818 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n tag_100:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3735:3900 require(... */\n tag_103\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_104\n swap1\n tag_105\n jump\t// in\n tag_104:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_103:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3911:3932 _approve(to, tokenId) */\n tag_106\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3920:3922 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3924:3931 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3911:3919 _approve */\n tag_107\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3911:3932 _approve(to, tokenId) */\n jump\t// in\n tag_106:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3538:3939 function approve(address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4727:5057 function transferFrom(... */\n tag_41:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4916:4957 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_109\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4935:4947 _msgSender() */\n tag_110\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4935:4945 _msgSender */\n tag_99\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4935:4947 _msgSender() */\n jump\t// in\n tag_110:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4949:4956 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4916:4934 _isApprovedOrOwner */\n tag_111\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4916:4957 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_109:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4908:5011 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\") */\n tag_112\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_113\n swap1\n tag_114\n jump\t// in\n tag_113:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_112:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5022:5050 _transfer(from, to, tokenId) */\n tag_115\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5032:5036 from */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5038:5040 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5042:5049 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5022:5031 _transfer */\n tag_116\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5022:5050 _transfer(from, to, tokenId) */\n jump\t// in\n tag_115:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4727:5057 function transferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5123:5302 function safeTransferFrom(... */\n tag_44:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5256:5295 safeTransferFrom(from, to, tokenId, \"\") */\n tag_118\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5273:5277 from */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5279:5281 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5283:5290 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5256:5295 safeTransferFrom(from, to, tokenId, \"\") */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5256:5272 safeTransferFrom */\n tag_65\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5256:5295 safeTransferFrom(from, to, tokenId, \"\") */\n jump\t// in\n tag_118:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5123:5302 function safeTransferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_47:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2263:2270 address */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2282:2295 address owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2298:2305 _owners */\n 0x02\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2298:2314 _owners[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2306:2313 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2298:2314 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2282:2314 address owner = _owners[tokenId] */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2349:2350 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2332:2351 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2332:2337 owner */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2332:2351 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2324:2397 require(owner != address(0), \"ERC721: owner query for nonexistent token\") */\n tag_120\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_121\n swap1\n tag_122\n jump\t// in\n tag_121:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_120:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2414:2419 owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2407:2419 return owner */\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_52:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2001:2008 uint256 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2045:2046 0 */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2028:2033 owner */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2020:2094 require(owner != address(0), \"ERC721: balance query for the zero address\") */\n tag_124\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_125\n swap1\n tag_126\n jump\t// in\n tag_125:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_124:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2111:2120 _balances */\n 0x03\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2111:2127 _balances[owner] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2121:2126 owner */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2111:2127 _balances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2104:2127 return _balances[owner] */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n tag_56:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2706:2719 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2738:2745 _symbol */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2731:2745 return _symbol */\n dup1\n sload\n tag_128\n swap1\n tag_82\n jump\t// in\n tag_128:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_129\n swap1\n tag_82\n jump\t// in\n tag_129:\n dup1\n iszero\n tag_130\n jumpi\n dup1\n 0x1f\n lt\n tag_131\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_130)\n tag_131:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_132:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_132\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_130:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4284:4437 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_61:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4378:4430 _setApprovalForAll(_msgSender(), operator, approved) */\n tag_134\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4397:4409 _msgSender() */\n tag_135\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4397:4407 _msgSender */\n tag_99\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4397:4409 _msgSender() */\n jump\t// in\n tag_135:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4411:4419 operator */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4421:4429 approved */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4378:4396 _setApprovalForAll */\n tag_136\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4378:4430 _setApprovalForAll(_msgSender(), operator, approved) */\n jump\t// in\n tag_134:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4284:4437 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5368:5688 function safeTransferFrom(... */\n tag_65:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5537:5578 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_138\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5556:5568 _msgSender() */\n tag_139\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5556:5566 _msgSender */\n tag_99\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5556:5568 _msgSender() */\n jump\t// in\n tag_139:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5570:5577 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5537:5555 _isApprovedOrOwner */\n tag_111\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5537:5578 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_138:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5529:5632 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\") */\n tag_140\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_141\n swap1\n tag_114\n jump\t// in\n tag_141:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_140:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5642:5681 _safeTransfer(from, to, tokenId, _data) */\n tag_142\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5656:5660 from */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5662:5664 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5666:5673 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5675:5680 _data */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5642:5655 _safeTransfer */\n tag_143\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5642:5681 _safeTransfer(from, to, tokenId, _data) */\n jump\t// in\n tag_142:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":5368:5688 function safeTransferFrom(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_68:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2891:2904 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2924:2940 _exists(tokenId) */\n tag_145\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2932:2939 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2924:2931 _exists */\n tag_89\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2924:2940 _exists(tokenId) */\n jump\t// in\n tag_145:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2916:2992 require(_exists(tokenId), \"ERC721Metadata: URI query for nonexistent token\") */\n tag_146\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_147\n swap1\n tag_148\n jump\t// in\n tag_147:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_146:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3003:3024 string memory baseURI */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3027:3037 _baseURI() */\n tag_149\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3027:3035 _baseURI */\n tag_150\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3027:3037 _baseURI() */\n jump\t// in\n tag_149:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3003:3037 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3078:3079 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3060:3067 baseURI */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3054:3075 bytes(baseURI).length */\n mload\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3054:3079 bytes(baseURI).length > 0 */\n gt\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3054:3140 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_151\n jumpi\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n jump(tag_152)\n tag_151:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3106:3113 baseURI */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3115:3133 tokenId.toString() */\n tag_153\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3115:3122 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3115:3131 tokenId.toString */\n tag_154\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3115:3133 tokenId.toString() */\n jump\t// in\n tag_153:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3089:3134 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_155\n swap3\n swap2\n swap1\n tag_156\n jump\t// in\n tag_155:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3054:3140 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_152:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3047:3140 return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4503:4665 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_73:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4600:4604 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4623:4641 _operatorApprovals */\n 0x05\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4623:4648 _operatorApprovals[owner] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4642:4647 owner */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4623:4648 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4623:4658 _operatorApprovals[owner][operator] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4649:4657 operator */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4623:4658 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4616:4658 return _operatorApprovals[owner][operator] */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":4503:4665 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n tag_79:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol\":914:918 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol\":952:977 type(IERC165).interfaceId */\n 0x01ffc9a700000000000000000000000000000000000000000000000000000000\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol\":937:948 interfaceId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol\":930:977 return interfaceId == type(IERC165).interfaceId */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7160:7285 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n tag_89:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7225:7229 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7276:7277 0 */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7248:7278 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7248:7255 _owners */\n 0x02\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7248:7264 _owners[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7256:7263 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7248:7264 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7248:7278 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7241:7278 return _owners[tokenId] != address(0) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7160:7285 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_99:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Context.sol\":693:700 address */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11169:11340 function _approve(address to, uint256 tokenId) internal virtual {... */\n tag_107:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11270:11272 to */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11243:11258 _tokenApprovals */\n 0x04\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11243:11267 _tokenApprovals[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11259:11266 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11243:11267 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11243:11272 _tokenApprovals[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11325:11332 tokenId */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11321:11323 to */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11287:11333 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11296:11319 ERC721.ownerOf(tokenId) */\n tag_162\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11311:11318 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11296:11310 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11296:11319 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_162:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11287:11333 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11169:11340 function _approve(address to, uint256 tokenId) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7443:7787 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n tag_111:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7536:7540 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7560:7576 _exists(tokenId) */\n tag_164\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7568:7575 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7560:7567 _exists */\n tag_89\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7560:7576 _exists(tokenId) */\n jump\t// in\n tag_164:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7552:7625 require(_exists(tokenId), \"ERC721: operator query for nonexistent token\") */\n tag_165\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_166\n swap1\n tag_167\n jump\t// in\n tag_166:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_165:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7635:7648 address owner */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7651:7674 ERC721.ownerOf(tokenId) */\n tag_168\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7666:7673 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7651:7665 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7651:7674 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_168:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7635:7674 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7703:7708 owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7692:7708 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7692:7699 spender */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7692:7708 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7692:7744 spender == owner || isApprovedForAll(owner, spender) */\n dup1\n tag_169\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7712:7744 isApprovedForAll(owner, spender) */\n tag_170\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7729:7734 owner */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7736:7743 spender */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7712:7728 isApprovedForAll */\n tag_73\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7712:7744 isApprovedForAll(owner, spender) */\n jump\t// in\n tag_170:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7692:7744 spender == owner || isApprovedForAll(owner, spender) */\n tag_169:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7692:7779 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n dup1\n tag_171\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7772:7779 spender */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7748:7779 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7748:7768 getApproved(tokenId) */\n tag_172\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7760:7767 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7748:7759 getApproved */\n tag_31\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7748:7768 getApproved(tokenId) */\n jump\t// in\n tag_172:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7748:7779 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7692:7779 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n tag_171:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7684:7780 return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender) */\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":7443:7787 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10453:11058 function _transfer(... */\n tag_116:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10607:10611 from */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10580:10611 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10580:10603 ERC721.ownerOf(tokenId) */\n tag_174\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10595:10602 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10580:10594 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10580:10603 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_174:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10580:10611 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10572:10653 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_175\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_176\n swap1\n tag_177\n jump\t// in\n tag_176:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_175:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10685:10686 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10671:10687 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10671:10673 to */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10671:10687 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10663:10728 require(to != address(0), \"ERC721: transfer to the zero address\") */\n tag_178\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_179\n swap1\n tag_180\n jump\t// in\n tag_179:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_178:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10739:10778 _beforeTokenTransfer(from, to, tokenId) */\n tag_181\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10760:10764 from */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10766:10768 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10770:10777 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10739:10759 _beforeTokenTransfer */\n tag_182\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10739:10778 _beforeTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_181:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10840:10869 _approve(address(0), tokenId) */\n tag_183\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10857:10858 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10861:10868 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10840:10848 _approve */\n tag_107\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10840:10869 _approve(address(0), tokenId) */\n jump\t// in\n tag_183:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10899:10900 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10880:10889 _balances */\n 0x03\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10880:10895 _balances[from] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10890:10894 from */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10880:10895 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10880:10900 _balances[from] -= 1 */\n dup3\n dup3\n sload\n tag_184\n swap2\n swap1\n tag_185\n jump\t// in\n tag_184:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10927:10928 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10910:10919 _balances */\n 0x03\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10910:10923 _balances[to] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10920:10922 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10910:10923 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10910:10928 _balances[to] += 1 */\n dup3\n dup3\n sload\n tag_186\n swap2\n swap1\n tag_187\n jump\t// in\n tag_186:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10957:10959 to */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10938:10945 _owners */\n 0x02\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10938:10954 _owners[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10946:10953 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10938:10954 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10938:10959 _owners[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10994:11001 tokenId */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10990:10992 to */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10975:11002 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10984:10988 from */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10975:11002 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11013:11051 _afterTokenTransfer(from, to, tokenId) */\n tag_188\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11033:11037 from */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11039:11041 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11043:11050 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11013:11032 _afterTokenTransfer */\n tag_189\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11013:11051 _afterTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_188:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":10453:11058 function _transfer(... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11475:11782 function _setApprovalForAll(... */\n tag_136:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11625:11633 operator */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11616:11633 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11616:11621 owner */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11616:11633 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11608:11663 require(owner != operator, \"ERC721: approve to caller\") */\n tag_191\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_192\n swap1\n tag_193\n jump\t// in\n tag_192:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_191:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11711:11719 approved */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11673:11691 _operatorApprovals */\n 0x05\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11673:11698 _operatorApprovals[owner] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11692:11697 owner */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11673:11698 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11673:11708 _operatorApprovals[owner][operator] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11699:11707 operator */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11673:11708 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11673:11719 _operatorApprovals[owner][operator] = approved */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11756:11764 operator */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11734:11775 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11749:11754 owner */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11734:11775 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11766:11774 approved */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11734:11775 ApprovalForAll(owner, operator, approved) */\n mload(0x40)\n tag_194\n swap2\n swap1\n tag_23\n jump\t// in\n tag_194:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":11475:11782 function _setApprovalForAll(... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6550:6857 function _safeTransfer(... */\n tag_143:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6701:6729 _transfer(from, to, tokenId) */\n tag_196\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6711:6715 from */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6717:6719 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6721:6728 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6701:6710 _transfer */\n tag_116\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6701:6729 _transfer(from, to, tokenId) */\n jump\t// in\n tag_196:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6747:6795 _checkOnERC721Received(from, to, tokenId, _data) */\n tag_197\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6770:6774 from */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6776:6778 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6780:6787 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6789:6794 _data */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6747:6769 _checkOnERC721Received */\n tag_198\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6747:6795 _checkOnERC721Received(from, to, tokenId, _data) */\n jump\t// in\n tag_197:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6739:6850 require(_checkOnERC721Received(from, to, tokenId, _data), \"ERC721: transfer to non ERC721Receiver implementer\") */\n tag_199\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_200\n swap1\n tag_201\n jump\t// in\n tag_200:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_199:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":6550:6857 function _safeTransfer(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3389:3481 function _baseURI() internal view virtual returns (string memory) {... */\n tag_150:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3440:3453 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3465:3474 return \"\" */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":3389:3481 function _baseURI() internal view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":328:1031 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_154:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":384:397 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":610:611 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":601:606 value */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":601:611 value == 0 */\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":597:648 if (value == 0) {... */\n iszero\n tag_204\n jumpi\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":627:637 return \"0\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x01\n dup2\n mstore\n 0x20\n add\n 0x3000000000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n swap1\n pop\n jump(tag_203)\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":597:648 if (value == 0) {... */\n tag_204:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":657:669 uint256 temp */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":672:677 value */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":657:677 uint256 temp = value */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":687:701 uint256 digits */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":711:786 while (temp != 0) {... */\n tag_205:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":726:727 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":718:722 temp */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":718:727 temp != 0 */\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":711:786 while (temp != 0) {... */\n tag_206\n jumpi\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":743:751 digits++ */\n dup1\n dup1\n tag_207\n swap1\n tag_208\n jump\t// in\n tag_207:\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":773:775 10 */\n 0x0a\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":765:775 temp /= 10 */\n dup3\n tag_209\n swap2\n swap1\n tag_210\n jump\t// in\n tag_209:\n swap2\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":711:786 while (temp != 0) {... */\n jump(tag_205)\n tag_206:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":795:814 bytes memory buffer */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":827:833 digits */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":817:834 new bytes(digits) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_211\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x41)\n revert(0x00, 0x24)\n tag_211:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x1f\n add\n not(0x1f)\n and\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_212\n jumpi\n dup2\n 0x20\n add\n 0x01\n dup3\n mul\n dup1\n calldatasize\n dup4\n calldatacopy\n dup1\n dup3\n add\n swap2\n pop\n pop\n swap1\n pop\n tag_212:\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":795:834 bytes memory buffer = new bytes(digits) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":844:994 while (value != 0) {... */\n tag_213:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":860:861 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":851:856 value */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":851:861 value != 0 */\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":844:994 while (value != 0) {... */\n tag_214\n jumpi\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":887:888 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":877:888 digits -= 1 */\n dup3\n tag_215\n swap2\n swap1\n tag_185\n jump\t// in\n tag_215:\n swap2\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":953:955 10 */\n 0x0a\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":945:950 value */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":945:955 value % 10 */\n tag_216\n swap2\n swap1\n tag_217\n jump\t// in\n tag_216:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":932:934 48 */\n 0x30\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":932:956 48 + uint256(value % 10) */\n tag_218\n swap2\n swap1\n tag_187\n jump\t// in\n tag_218:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":919:958 bytes1(uint8(48 + uint256(value % 10))) */\n 0xf8\n shl\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":902:908 buffer */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":909:915 digits */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":902:916 buffer[digits] */\n dup2\n mload\n dup2\n lt\n tag_219\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x32)\n revert(0x00, 0x24)\n tag_219:\n 0x20\n add\n add\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":902:958 buffer[digits] = bytes1(uint8(48 + uint256(value % 10))) */\n swap1\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n swap1\n dup2\n 0x00\n byte\n swap1\n mstore8\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":981:983 10 */\n 0x0a\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":972:983 value /= 10 */\n dup6\n tag_220\n swap2\n swap1\n tag_210\n jump\t// in\n tag_220:\n swap5\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":844:994 while (value != 0) {... */\n jump(tag_213)\n tag_214:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":1017:1023 buffer */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":1003:1024 return string(buffer) */\n swap4\n pop\n pop\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Strings.sol\":328:1031 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_203:\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":13669:13791 function _beforeTokenTransfer(... */\n tag_182:\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":14163:14284 function _afterTokenTransfer(... */\n tag_189:\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12335:13113 function _checkOnERC721Received(... */\n tag_198:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12485:12489 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12505:12520 to.isContract() */\n tag_224\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12505:12507 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12505:12518 to.isContract */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n tag_225\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12505:12520 to.isContract() */\n jump\t// in\n tag_224:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12501:13107 if (to.isContract()) {... */\n iszero\n tag_226\n jumpi\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12556:12558 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12540:12576 IERC721Receiver(to).onERC721Received */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x150b7a02\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12577:12589 _msgSender() */\n tag_227\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12577:12587 _msgSender */\n tag_99\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12577:12589 _msgSender() */\n jump\t// in\n tag_227:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12591:12595 from */\n dup8\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12597:12604 tokenId */\n dup7\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12606:12611 _data */\n dup7\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12540:12612 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) */\n mload(0x40)\n dup6\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_228\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_229\n jump\t// in\n tag_228:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n dup1\n extcodesize\n iszero\n dup1\n iszero\n tag_230\n jumpi\n 0x00\n dup1\n revert\n tag_230:\n pop\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_231\n jumpi\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_232\n swap2\n swap1\n tag_233\n jump\t// in\n tag_232:\n 0x01\n tag_231:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12536:13055 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_234\n jumpi\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_239\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_238)\n tag_239:\n 0x60\n swap2\n pop\n tag_238:\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12796:12797 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12779:12785 reason */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12779:12792 reason.length */\n mload\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12779:12797 reason.length == 0 */\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12775:13041 if (reason.length == 0) {... */\n iszero\n tag_240\n jumpi\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12821:12881 revert(\"ERC721: transfer to non ERC721Receiver implementer\") */\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_241\n swap1\n tag_201\n jump\t// in\n tag_241:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12775:13041 if (reason.length == 0) {... */\n tag_240:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12993:12999 reason */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12987:13000 mload(reason) */\n mload\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12978:12984 reason */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12974:12976 32 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12970:12985 add(32, reason) */\n add\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12963:13001 revert(add(32, reason), mload(reason)) */\n revert\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12536:13055 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_234:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12672:12713 IERC721Receiver.onERC721Received.selector */\n shl(0xe0, 0x150b7a02)\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12662:12713 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12662:12668 retval */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12662:12713 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12655:12713 return retval == IERC721Receiver.onERC721Received.selector */\n swap2\n pop\n pop\n jump(tag_223)\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12501:13107 if (to.isContract()) {... */\n tag_226:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":13092:13096 true */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":13085:13096 return true */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/token/ERC721/ERC721.sol\":12335:13113 function _checkOnERC721Received(... */\n tag_223:\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n tag_225:\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol\":1235:1239 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol\":1487:1488 0 */\n dup1\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol\":1465:1472 account */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol\":1465:1484 account.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol\":1465:1488 account.code.length > 0 */\n gt\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol\":1458:1488 return account.code.length > 0 */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.6.0/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7:350 */\n tag_247:\n /* \"#utility.yul\":84:89 */\n 0x00\n /* \"#utility.yul\":109:174 */\n tag_249\n /* \"#utility.yul\":125:173 */\n tag_250\n /* \"#utility.yul\":166:172 */\n dup5\n /* \"#utility.yul\":125:173 */\n tag_251\n jump\t// in\n tag_250:\n /* \"#utility.yul\":109:174 */\n tag_252\n jump\t// in\n tag_249:\n /* \"#utility.yul\":100:174 */\n swap1\n pop\n /* \"#utility.yul\":197:203 */\n dup3\n /* \"#utility.yul\":190:195 */\n dup2\n /* \"#utility.yul\":183:204 */\n mstore\n /* \"#utility.yul\":235:239 */\n 0x20\n /* \"#utility.yul\":228:233 */\n dup2\n /* \"#utility.yul\":224:240 */\n add\n /* \"#utility.yul\":273:276 */\n dup5\n /* \"#utility.yul\":264:270 */\n dup5\n /* \"#utility.yul\":259:262 */\n dup5\n /* \"#utility.yul\":255:271 */\n add\n /* \"#utility.yul\":252:277 */\n gt\n /* \"#utility.yul\":249:251 */\n iszero\n tag_253\n jumpi\n /* \"#utility.yul\":290:291 */\n 0x00\n /* \"#utility.yul\":287:288 */\n dup1\n /* \"#utility.yul\":280:292 */\n revert\n /* \"#utility.yul\":249:251 */\n tag_253:\n /* \"#utility.yul\":303:344 */\n tag_254\n /* \"#utility.yul\":337:343 */\n dup5\n /* \"#utility.yul\":332:335 */\n dup3\n /* \"#utility.yul\":327:330 */\n dup6\n /* \"#utility.yul\":303:344 */\n tag_255\n jump\t// in\n tag_254:\n /* \"#utility.yul\":90:350 */\n pop\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":356:495 */\n tag_256:\n /* \"#utility.yul\":402:407 */\n 0x00\n /* \"#utility.yul\":440:446 */\n dup2\n /* \"#utility.yul\":427:447 */\n calldataload\n /* \"#utility.yul\":418:447 */\n swap1\n pop\n /* \"#utility.yul\":456:489 */\n tag_258\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":456:489 */\n tag_259\n jump\t// in\n tag_258:\n /* \"#utility.yul\":408:495 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":501:634 */\n tag_260:\n /* \"#utility.yul\":544:549 */\n 0x00\n /* \"#utility.yul\":582:588 */\n dup2\n /* \"#utility.yul\":569:589 */\n calldataload\n /* \"#utility.yul\":560:589 */\n swap1\n pop\n /* \"#utility.yul\":598:628 */\n tag_262\n /* \"#utility.yul\":622:627 */\n dup2\n /* \"#utility.yul\":598:628 */\n tag_263\n jump\t// in\n tag_262:\n /* \"#utility.yul\":550:634 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":640:777 */\n tag_264:\n /* \"#utility.yul\":685:690 */\n 0x00\n /* \"#utility.yul\":723:729 */\n dup2\n /* \"#utility.yul\":710:730 */\n calldataload\n /* \"#utility.yul\":701:730 */\n swap1\n pop\n /* \"#utility.yul\":739:771 */\n tag_266\n /* \"#utility.yul\":765:770 */\n dup2\n /* \"#utility.yul\":739:771 */\n tag_267\n jump\t// in\n tag_266:\n /* \"#utility.yul\":691:777 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":783:924 */\n tag_268:\n /* \"#utility.yul\":839:844 */\n 0x00\n /* \"#utility.yul\":870:876 */\n dup2\n /* \"#utility.yul\":864:877 */\n mload\n /* \"#utility.yul\":855:877 */\n swap1\n pop\n /* \"#utility.yul\":886:918 */\n tag_270\n /* \"#utility.yul\":912:917 */\n dup2\n /* \"#utility.yul\":886:918 */\n tag_267\n jump\t// in\n tag_270:\n /* \"#utility.yul\":845:924 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":943:1214 */\n tag_271:\n /* \"#utility.yul\":998:1003 */\n 0x00\n /* \"#utility.yul\":1047:1050 */\n dup3\n /* \"#utility.yul\":1040:1044 */\n 0x1f\n /* \"#utility.yul\":1032:1038 */\n dup4\n /* \"#utility.yul\":1028:1045 */\n add\n /* \"#utility.yul\":1024:1051 */\n slt\n /* \"#utility.yul\":1014:1016 */\n tag_273\n jumpi\n /* \"#utility.yul\":1065:1066 */\n 0x00\n /* \"#utility.yul\":1062:1063 */\n dup1\n /* \"#utility.yul\":1055:1067 */\n revert\n /* \"#utility.yul\":1014:1016 */\n tag_273:\n /* \"#utility.yul\":1105:1111 */\n dup2\n /* \"#utility.yul\":1092:1112 */\n calldataload\n /* \"#utility.yul\":1130:1208 */\n tag_274\n /* \"#utility.yul\":1204:1207 */\n dup5\n /* \"#utility.yul\":1196:1202 */\n dup3\n /* \"#utility.yul\":1189:1193 */\n 0x20\n /* \"#utility.yul\":1181:1187 */\n dup7\n /* \"#utility.yul\":1177:1194 */\n add\n /* \"#utility.yul\":1130:1208 */\n tag_247\n jump\t// in\n tag_274:\n /* \"#utility.yul\":1121:1208 */\n swap2\n pop\n /* \"#utility.yul\":1004:1214 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1220:1359 */\n tag_275:\n /* \"#utility.yul\":1266:1271 */\n 0x00\n /* \"#utility.yul\":1304:1310 */\n dup2\n /* \"#utility.yul\":1291:1311 */\n calldataload\n /* \"#utility.yul\":1282:1311 */\n swap1\n pop\n /* \"#utility.yul\":1320:1353 */\n tag_277\n /* \"#utility.yul\":1347:1352 */\n dup2\n /* \"#utility.yul\":1320:1353 */\n tag_278\n jump\t// in\n tag_277:\n /* \"#utility.yul\":1272:1359 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1365:1627 */\n tag_51:\n /* \"#utility.yul\":1424:1430 */\n 0x00\n /* \"#utility.yul\":1473:1475 */\n 0x20\n /* \"#utility.yul\":1461:1470 */\n dup3\n /* \"#utility.yul\":1452:1459 */\n dup5\n /* \"#utility.yul\":1448:1471 */\n sub\n /* \"#utility.yul\":1444:1476 */\n slt\n /* \"#utility.yul\":1441:1443 */\n iszero\n tag_280\n jumpi\n /* \"#utility.yul\":1489:1490 */\n 0x00\n /* \"#utility.yul\":1486:1487 */\n dup1\n /* \"#utility.yul\":1479:1491 */\n revert\n /* \"#utility.yul\":1441:1443 */\n tag_280:\n /* \"#utility.yul\":1532:1533 */\n 0x00\n /* \"#utility.yul\":1557:1610 */\n tag_281\n /* \"#utility.yul\":1602:1609 */\n dup5\n /* \"#utility.yul\":1593:1599 */\n dup3\n /* \"#utility.yul\":1582:1591 */\n dup6\n /* \"#utility.yul\":1578:1600 */\n add\n /* \"#utility.yul\":1557:1610 */\n tag_256\n jump\t// in\n tag_281:\n /* \"#utility.yul\":1547:1610 */\n swap2\n pop\n /* \"#utility.yul\":1503:1620 */\n pop\n /* \"#utility.yul\":1431:1627 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1633:2040 */\n tag_72:\n /* \"#utility.yul\":1701:1707 */\n 0x00\n /* \"#utility.yul\":1709:1715 */\n dup1\n /* \"#utility.yul\":1758:1760 */\n 0x40\n /* \"#utility.yul\":1746:1755 */\n dup4\n /* \"#utility.yul\":1737:1744 */\n dup6\n /* \"#utility.yul\":1733:1756 */\n sub\n /* \"#utility.yul\":1729:1761 */\n slt\n /* \"#utility.yul\":1726:1728 */\n iszero\n tag_283\n jumpi\n /* \"#utility.yul\":1774:1775 */\n 0x00\n /* \"#utility.yul\":1771:1772 */\n dup1\n /* \"#utility.yul\":1764:1776 */\n revert\n /* \"#utility.yul\":1726:1728 */\n tag_283:\n /* \"#utility.yul\":1817:1818 */\n 0x00\n /* \"#utility.yul\":1842:1895 */\n tag_284\n /* \"#utility.yul\":1887:1894 */\n dup6\n /* \"#utility.yul\":1878:1884 */\n dup3\n /* \"#utility.yul\":1867:1876 */\n dup7\n /* \"#utility.yul\":1863:1885 */\n add\n /* \"#utility.yul\":1842:1895 */\n tag_256\n jump\t// in\n tag_284:\n /* \"#utility.yul\":1832:1895 */\n swap3\n pop\n /* \"#utility.yul\":1788:1905 */\n pop\n /* \"#utility.yul\":1944:1946 */\n 0x20\n /* \"#utility.yul\":1970:2023 */\n tag_285\n /* \"#utility.yul\":2015:2022 */\n dup6\n /* \"#utility.yul\":2006:2012 */\n dup3\n /* \"#utility.yul\":1995:2004 */\n dup7\n /* \"#utility.yul\":1991:2013 */\n add\n /* \"#utility.yul\":1970:2023 */\n tag_256\n jump\t// in\n tag_285:\n /* \"#utility.yul\":1960:2023 */\n swap2\n pop\n /* \"#utility.yul\":1915:2033 */\n pop\n /* \"#utility.yul\":1716:2040 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2046:2598 */\n tag_40:\n /* \"#utility.yul\":2123:2129 */\n 0x00\n /* \"#utility.yul\":2131:2137 */\n dup1\n /* \"#utility.yul\":2139:2145 */\n 0x00\n /* \"#utility.yul\":2188:2190 */\n 0x60\n /* \"#utility.yul\":2176:2185 */\n dup5\n /* \"#utility.yul\":2167:2174 */\n dup7\n /* \"#utility.yul\":2163:2186 */\n sub\n /* \"#utility.yul\":2159:2191 */\n slt\n /* \"#utility.yul\":2156:2158 */\n iszero\n tag_287\n jumpi\n /* \"#utility.yul\":2204:2205 */\n 0x00\n /* \"#utility.yul\":2201:2202 */\n dup1\n /* \"#utility.yul\":2194:2206 */\n revert\n /* \"#utility.yul\":2156:2158 */\n tag_287:\n /* \"#utility.yul\":2247:2248 */\n 0x00\n /* \"#utility.yul\":2272:2325 */\n tag_288\n /* \"#utility.yul\":2317:2324 */\n dup7\n /* \"#utility.yul\":2308:2314 */\n dup3\n /* \"#utility.yul\":2297:2306 */\n dup8\n /* \"#utility.yul\":2293:2315 */\n add\n /* \"#utility.yul\":2272:2325 */\n tag_256\n jump\t// in\n tag_288:\n /* \"#utility.yul\":2262:2325 */\n swap4\n pop\n /* \"#utility.yul\":2218:2335 */\n pop\n /* \"#utility.yul\":2374:2376 */\n 0x20\n /* \"#utility.yul\":2400:2453 */\n tag_289\n /* \"#utility.yul\":2445:2452 */\n dup7\n /* \"#utility.yul\":2436:2442 */\n dup3\n /* \"#utility.yul\":2425:2434 */\n dup8\n /* \"#utility.yul\":2421:2443 */\n add\n /* \"#utility.yul\":2400:2453 */\n tag_256\n jump\t// in\n tag_289:\n /* \"#utility.yul\":2390:2453 */\n swap3\n pop\n /* \"#utility.yul\":2345:2463 */\n pop\n /* \"#utility.yul\":2502:2504 */\n 0x40\n /* \"#utility.yul\":2528:2581 */\n tag_290\n /* \"#utility.yul\":2573:2580 */\n dup7\n /* \"#utility.yul\":2564:2570 */\n dup3\n /* \"#utility.yul\":2553:2562 */\n dup8\n /* \"#utility.yul\":2549:2571 */\n add\n /* \"#utility.yul\":2528:2581 */\n tag_275\n jump\t// in\n tag_290:\n /* \"#utility.yul\":2518:2581 */\n swap2\n pop\n /* \"#utility.yul\":2473:2591 */\n pop\n /* \"#utility.yul\":2146:2598 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":2604:3413 */\n tag_64:\n /* \"#utility.yul\":2699:2705 */\n 0x00\n /* \"#utility.yul\":2707:2713 */\n dup1\n /* \"#utility.yul\":2715:2721 */\n 0x00\n /* \"#utility.yul\":2723:2729 */\n dup1\n /* \"#utility.yul\":2772:2775 */\n 0x80\n /* \"#utility.yul\":2760:2769 */\n dup6\n /* \"#utility.yul\":2751:2758 */\n dup8\n /* \"#utility.yul\":2747:2770 */\n sub\n /* \"#utility.yul\":2743:2776 */\n slt\n /* \"#utility.yul\":2740:2742 */\n iszero\n tag_292\n jumpi\n /* \"#utility.yul\":2789:2790 */\n 0x00\n /* \"#utility.yul\":2786:2787 */\n dup1\n /* \"#utility.yul\":2779:2791 */\n revert\n /* \"#utility.yul\":2740:2742 */\n tag_292:\n /* \"#utility.yul\":2832:2833 */\n 0x00\n /* \"#utility.yul\":2857:2910 */\n tag_293\n /* \"#utility.yul\":2902:2909 */\n dup8\n /* \"#utility.yul\":2893:2899 */\n dup3\n /* \"#utility.yul\":2882:2891 */\n dup9\n /* \"#utility.yul\":2878:2900 */\n add\n /* \"#utility.yul\":2857:2910 */\n tag_256\n jump\t// in\n tag_293:\n /* \"#utility.yul\":2847:2910 */\n swap5\n pop\n /* \"#utility.yul\":2803:2920 */\n pop\n /* \"#utility.yul\":2959:2961 */\n 0x20\n /* \"#utility.yul\":2985:3038 */\n tag_294\n /* \"#utility.yul\":3030:3037 */\n dup8\n /* \"#utility.yul\":3021:3027 */\n dup3\n /* \"#utility.yul\":3010:3019 */\n dup9\n /* \"#utility.yul\":3006:3028 */\n add\n /* \"#utility.yul\":2985:3038 */\n tag_256\n jump\t// in\n tag_294:\n /* \"#utility.yul\":2975:3038 */\n swap4\n pop\n /* \"#utility.yul\":2930:3048 */\n pop\n /* \"#utility.yul\":3087:3089 */\n 0x40\n /* \"#utility.yul\":3113:3166 */\n tag_295\n /* \"#utility.yul\":3158:3165 */\n dup8\n /* \"#utility.yul\":3149:3155 */\n dup3\n /* \"#utility.yul\":3138:3147 */\n dup9\n /* \"#utility.yul\":3134:3156 */\n add\n /* \"#utility.yul\":3113:3166 */\n tag_275\n jump\t// in\n tag_295:\n /* \"#utility.yul\":3103:3166 */\n swap3\n pop\n /* \"#utility.yul\":3058:3176 */\n pop\n /* \"#utility.yul\":3243:3245 */\n 0x60\n /* \"#utility.yul\":3232:3241 */\n dup6\n /* \"#utility.yul\":3228:3246 */\n add\n /* \"#utility.yul\":3215:3247 */\n calldataload\n /* \"#utility.yul\":3274:3292 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3266:3272 */\n dup2\n /* \"#utility.yul\":3263:3293 */\n gt\n /* \"#utility.yul\":3260:3262 */\n iszero\n tag_296\n jumpi\n /* \"#utility.yul\":3306:3307 */\n 0x00\n /* \"#utility.yul\":3303:3304 */\n dup1\n /* \"#utility.yul\":3296:3308 */\n revert\n /* \"#utility.yul\":3260:3262 */\n tag_296:\n /* \"#utility.yul\":3334:3396 */\n tag_297\n /* \"#utility.yul\":3388:3395 */\n dup8\n /* \"#utility.yul\":3379:3385 */\n dup3\n /* \"#utility.yul\":3368:3377 */\n dup9\n /* \"#utility.yul\":3364:3386 */\n add\n /* \"#utility.yul\":3334:3396 */\n tag_271\n jump\t// in\n tag_297:\n /* \"#utility.yul\":3324:3396 */\n swap2\n pop\n /* \"#utility.yul\":3186:3406 */\n pop\n /* \"#utility.yul\":2730:3413 */\n swap3\n swap6\n swap2\n swap5\n pop\n swap3\n pop\n jump\t// out\n /* \"#utility.yul\":3419:3820 */\n tag_60:\n /* \"#utility.yul\":3484:3490 */\n 0x00\n /* \"#utility.yul\":3492:3498 */\n dup1\n /* \"#utility.yul\":3541:3543 */\n 0x40\n /* \"#utility.yul\":3529:3538 */\n dup4\n /* \"#utility.yul\":3520:3527 */\n dup6\n /* \"#utility.yul\":3516:3539 */\n sub\n /* \"#utility.yul\":3512:3544 */\n slt\n /* \"#utility.yul\":3509:3511 */\n iszero\n tag_299\n jumpi\n /* \"#utility.yul\":3557:3558 */\n 0x00\n /* \"#utility.yul\":3554:3555 */\n dup1\n /* \"#utility.yul\":3547:3559 */\n revert\n /* \"#utility.yul\":3509:3511 */\n tag_299:\n /* \"#utility.yul\":3600:3601 */\n 0x00\n /* \"#utility.yul\":3625:3678 */\n tag_300\n /* \"#utility.yul\":3670:3677 */\n dup6\n /* \"#utility.yul\":3661:3667 */\n dup3\n /* \"#utility.yul\":3650:3659 */\n dup7\n /* \"#utility.yul\":3646:3668 */\n add\n /* \"#utility.yul\":3625:3678 */\n tag_256\n jump\t// in\n tag_300:\n /* \"#utility.yul\":3615:3678 */\n swap3\n pop\n /* \"#utility.yul\":3571:3688 */\n pop\n /* \"#utility.yul\":3727:3729 */\n 0x20\n /* \"#utility.yul\":3753:3803 */\n tag_301\n /* \"#utility.yul\":3795:3802 */\n dup6\n /* \"#utility.yul\":3786:3792 */\n dup3\n /* \"#utility.yul\":3775:3784 */\n dup7\n /* \"#utility.yul\":3771:3793 */\n add\n /* \"#utility.yul\":3753:3803 */\n tag_260\n jump\t// in\n tag_301:\n /* \"#utility.yul\":3743:3803 */\n swap2\n pop\n /* \"#utility.yul\":3698:3813 */\n pop\n /* \"#utility.yul\":3499:3820 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3826:4233 */\n tag_36:\n /* \"#utility.yul\":3894:3900 */\n 0x00\n /* \"#utility.yul\":3902:3908 */\n dup1\n /* \"#utility.yul\":3951:3953 */\n 0x40\n /* \"#utility.yul\":3939:3948 */\n dup4\n /* \"#utility.yul\":3930:3937 */\n dup6\n /* \"#utility.yul\":3926:3949 */\n sub\n /* \"#utility.yul\":3922:3954 */\n slt\n /* \"#utility.yul\":3919:3921 */\n iszero\n tag_303\n jumpi\n /* \"#utility.yul\":3967:3968 */\n 0x00\n /* \"#utility.yul\":3964:3965 */\n dup1\n /* \"#utility.yul\":3957:3969 */\n revert\n /* \"#utility.yul\":3919:3921 */\n tag_303:\n /* \"#utility.yul\":4010:4011 */\n 0x00\n /* \"#utility.yul\":4035:4088 */\n tag_304\n /* \"#utility.yul\":4080:4087 */\n dup6\n /* \"#utility.yul\":4071:4077 */\n dup3\n /* \"#utility.yul\":4060:4069 */\n dup7\n /* \"#utility.yul\":4056:4078 */\n add\n /* \"#utility.yul\":4035:4088 */\n tag_256\n jump\t// in\n tag_304:\n /* \"#utility.yul\":4025:4088 */\n swap3\n pop\n /* \"#utility.yul\":3981:4098 */\n pop\n /* \"#utility.yul\":4137:4139 */\n 0x20\n /* \"#utility.yul\":4163:4216 */\n tag_305\n /* \"#utility.yul\":4208:4215 */\n dup6\n /* \"#utility.yul\":4199:4205 */\n dup3\n /* \"#utility.yul\":4188:4197 */\n dup7\n /* \"#utility.yul\":4184:4206 */\n add\n /* \"#utility.yul\":4163:4216 */\n tag_275\n jump\t// in\n tag_305:\n /* \"#utility.yul\":4153:4216 */\n swap2\n pop\n /* \"#utility.yul\":4108:4226 */\n pop\n /* \"#utility.yul\":3909:4233 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4239:4499 */\n tag_20:\n /* \"#utility.yul\":4297:4303 */\n 0x00\n /* \"#utility.yul\":4346:4348 */\n 0x20\n /* \"#utility.yul\":4334:4343 */\n dup3\n /* \"#utility.yul\":4325:4332 */\n dup5\n /* \"#utility.yul\":4321:4344 */\n sub\n /* \"#utility.yul\":4317:4349 */\n slt\n /* \"#utility.yul\":4314:4316 */\n iszero\n tag_307\n jumpi\n /* \"#utility.yul\":4362:4363 */\n 0x00\n /* \"#utility.yul\":4359:4360 */\n dup1\n /* \"#utility.yul\":4352:4364 */\n revert\n /* \"#utility.yul\":4314:4316 */\n tag_307:\n /* \"#utility.yul\":4405:4406 */\n 0x00\n /* \"#utility.yul\":4430:4482 */\n tag_308\n /* \"#utility.yul\":4474:4481 */\n dup5\n /* \"#utility.yul\":4465:4471 */\n dup3\n /* \"#utility.yul\":4454:4463 */\n dup6\n /* \"#utility.yul\":4450:4472 */\n add\n /* \"#utility.yul\":4430:4482 */\n tag_264\n jump\t// in\n tag_308:\n /* \"#utility.yul\":4420:4482 */\n swap2\n pop\n /* \"#utility.yul\":4376:4492 */\n pop\n /* \"#utility.yul\":4304:4499 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4505:4787 */\n tag_233:\n /* \"#utility.yul\":4574:4580 */\n 0x00\n /* \"#utility.yul\":4623:4625 */\n 0x20\n /* \"#utility.yul\":4611:4620 */\n dup3\n /* \"#utility.yul\":4602:4609 */\n dup5\n /* \"#utility.yul\":4598:4621 */\n sub\n /* \"#utility.yul\":4594:4626 */\n slt\n /* \"#utility.yul\":4591:4593 */\n iszero\n tag_310\n jumpi\n /* \"#utility.yul\":4639:4640 */\n 0x00\n /* \"#utility.yul\":4636:4637 */\n dup1\n /* \"#utility.yul\":4629:4641 */\n revert\n /* \"#utility.yul\":4591:4593 */\n tag_310:\n /* \"#utility.yul\":4682:4683 */\n 0x00\n /* \"#utility.yul\":4707:4770 */\n tag_311\n /* \"#utility.yul\":4762:4769 */\n dup5\n /* \"#utility.yul\":4753:4759 */\n dup3\n /* \"#utility.yul\":4742:4751 */\n dup6\n /* \"#utility.yul\":4738:4760 */\n add\n /* \"#utility.yul\":4707:4770 */\n tag_268\n jump\t// in\n tag_311:\n /* \"#utility.yul\":4697:4770 */\n swap2\n pop\n /* \"#utility.yul\":4653:4780 */\n pop\n /* \"#utility.yul\":4581:4787 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4793:5055 */\n tag_30:\n /* \"#utility.yul\":4852:4858 */\n 0x00\n /* \"#utility.yul\":4901:4903 */\n 0x20\n /* \"#utility.yul\":4889:4898 */\n dup3\n /* \"#utility.yul\":4880:4887 */\n dup5\n /* \"#utility.yul\":4876:4899 */\n sub\n /* \"#utility.yul\":4872:4904 */\n slt\n /* \"#utility.yul\":4869:4871 */\n iszero\n tag_313\n jumpi\n /* \"#utility.yul\":4917:4918 */\n 0x00\n /* \"#utility.yul\":4914:4915 */\n dup1\n /* \"#utility.yul\":4907:4919 */\n revert\n /* \"#utility.yul\":4869:4871 */\n tag_313:\n /* \"#utility.yul\":4960:4961 */\n 0x00\n /* \"#utility.yul\":4985:5038 */\n tag_314\n /* \"#utility.yul\":5030:5037 */\n dup5\n /* \"#utility.yul\":5021:5027 */\n dup3\n /* \"#utility.yul\":5010:5019 */\n dup6\n /* \"#utility.yul\":5006:5028 */\n add\n /* \"#utility.yul\":4985:5038 */\n tag_275\n jump\t// in\n tag_314:\n /* \"#utility.yul\":4975:5038 */\n swap2\n pop\n /* \"#utility.yul\":4931:5048 */\n pop\n /* \"#utility.yul\":4859:5055 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5061:5179 */\n tag_315:\n /* \"#utility.yul\":5148:5172 */\n tag_317\n /* \"#utility.yul\":5166:5171 */\n dup2\n /* \"#utility.yul\":5148:5172 */\n tag_318\n jump\t// in\n tag_317:\n /* \"#utility.yul\":5143:5146 */\n dup3\n /* \"#utility.yul\":5136:5173 */\n mstore\n /* \"#utility.yul\":5126:5179 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5185:5294 */\n tag_319:\n /* \"#utility.yul\":5266:5287 */\n tag_321\n /* \"#utility.yul\":5281:5286 */\n dup2\n /* \"#utility.yul\":5266:5287 */\n tag_322\n jump\t// in\n tag_321:\n /* \"#utility.yul\":5261:5264 */\n dup3\n /* \"#utility.yul\":5254:5288 */\n mstore\n /* \"#utility.yul\":5244:5294 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5300:5660 */\n tag_323:\n /* \"#utility.yul\":5386:5389 */\n 0x00\n /* \"#utility.yul\":5414:5452 */\n tag_325\n /* \"#utility.yul\":5446:5451 */\n dup3\n /* \"#utility.yul\":5414:5452 */\n tag_326\n jump\t// in\n tag_325:\n /* \"#utility.yul\":5468:5538 */\n tag_327\n /* \"#utility.yul\":5531:5537 */\n dup2\n /* \"#utility.yul\":5526:5529 */\n dup6\n /* \"#utility.yul\":5468:5538 */\n tag_328\n jump\t// in\n tag_327:\n /* \"#utility.yul\":5461:5538 */\n swap4\n pop\n /* \"#utility.yul\":5547:5599 */\n tag_329\n /* \"#utility.yul\":5592:5598 */\n dup2\n /* \"#utility.yul\":5587:5590 */\n dup6\n /* \"#utility.yul\":5580:5584 */\n 0x20\n /* \"#utility.yul\":5573:5578 */\n dup7\n /* \"#utility.yul\":5569:5585 */\n add\n /* \"#utility.yul\":5547:5599 */\n tag_330\n jump\t// in\n tag_329:\n /* \"#utility.yul\":5624:5653 */\n tag_331\n /* \"#utility.yul\":5646:5652 */\n dup2\n /* \"#utility.yul\":5624:5653 */\n tag_332\n jump\t// in\n tag_331:\n /* \"#utility.yul\":5619:5622 */\n dup5\n /* \"#utility.yul\":5615:5654 */\n add\n /* \"#utility.yul\":5608:5654 */\n swap2\n pop\n /* \"#utility.yul\":5390:5660 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5666:6030 */\n tag_333:\n /* \"#utility.yul\":5754:5757 */\n 0x00\n /* \"#utility.yul\":5782:5821 */\n tag_335\n /* \"#utility.yul\":5815:5820 */\n dup3\n /* \"#utility.yul\":5782:5821 */\n tag_336\n jump\t// in\n tag_335:\n /* \"#utility.yul\":5837:5908 */\n tag_337\n /* \"#utility.yul\":5901:5907 */\n dup2\n /* \"#utility.yul\":5896:5899 */\n dup6\n /* \"#utility.yul\":5837:5908 */\n tag_338\n jump\t// in\n tag_337:\n /* \"#utility.yul\":5830:5908 */\n swap4\n pop\n /* \"#utility.yul\":5917:5969 */\n tag_339\n /* \"#utility.yul\":5962:5968 */\n dup2\n /* \"#utility.yul\":5957:5960 */\n dup6\n /* \"#utility.yul\":5950:5954 */\n 0x20\n /* \"#utility.yul\":5943:5948 */\n dup7\n /* \"#utility.yul\":5939:5955 */\n add\n /* \"#utility.yul\":5917:5969 */\n tag_330\n jump\t// in\n tag_339:\n /* \"#utility.yul\":5994:6023 */\n tag_340\n /* \"#utility.yul\":6016:6022 */\n dup2\n /* \"#utility.yul\":5994:6023 */\n tag_332\n jump\t// in\n tag_340:\n /* \"#utility.yul\":5989:5992 */\n dup5\n /* \"#utility.yul\":5985:6024 */\n add\n /* \"#utility.yul\":5978:6024 */\n swap2\n pop\n /* \"#utility.yul\":5758:6030 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6036:6413 */\n tag_341:\n /* \"#utility.yul\":6142:6145 */\n 0x00\n /* \"#utility.yul\":6170:6209 */\n tag_343\n /* \"#utility.yul\":6203:6208 */\n dup3\n /* \"#utility.yul\":6170:6209 */\n tag_336\n jump\t// in\n tag_343:\n /* \"#utility.yul\":6225:6314 */\n tag_344\n /* \"#utility.yul\":6307:6313 */\n dup2\n /* \"#utility.yul\":6302:6305 */\n dup6\n /* \"#utility.yul\":6225:6314 */\n tag_345\n jump\t// in\n tag_344:\n /* \"#utility.yul\":6218:6314 */\n swap4\n pop\n /* \"#utility.yul\":6323:6375 */\n tag_346\n /* \"#utility.yul\":6368:6374 */\n dup2\n /* \"#utility.yul\":6363:6366 */\n dup6\n /* \"#utility.yul\":6356:6360 */\n 0x20\n /* \"#utility.yul\":6349:6354 */\n dup7\n /* \"#utility.yul\":6345:6361 */\n add\n /* \"#utility.yul\":6323:6375 */\n tag_330\n jump\t// in\n tag_346:\n /* \"#utility.yul\":6400:6406 */\n dup1\n /* \"#utility.yul\":6395:6398 */\n dup5\n /* \"#utility.yul\":6391:6407 */\n add\n /* \"#utility.yul\":6384:6407 */\n swap2\n pop\n /* \"#utility.yul\":6146:6413 */\n pop\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6419:6785 */\n tag_347:\n /* \"#utility.yul\":6561:6564 */\n 0x00\n /* \"#utility.yul\":6582:6649 */\n tag_349\n /* \"#utility.yul\":6646:6648 */\n 0x32\n /* \"#utility.yul\":6641:6644 */\n dup4\n /* \"#utility.yul\":6582:6649 */\n tag_338\n jump\t// in\n tag_349:\n /* \"#utility.yul\":6575:6649 */\n swap2\n pop\n /* \"#utility.yul\":6658:6751 */\n tag_350\n /* \"#utility.yul\":6747:6750 */\n dup3\n /* \"#utility.yul\":6658:6751 */\n tag_351\n jump\t// in\n tag_350:\n /* \"#utility.yul\":6776:6778 */\n 0x40\n /* \"#utility.yul\":6771:6774 */\n dup3\n /* \"#utility.yul\":6767:6779 */\n add\n /* \"#utility.yul\":6760:6779 */\n swap1\n pop\n /* \"#utility.yul\":6565:6785 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6791:7157 */\n tag_352:\n /* \"#utility.yul\":6933:6936 */\n 0x00\n /* \"#utility.yul\":6954:7021 */\n tag_354\n /* \"#utility.yul\":7018:7020 */\n 0x25\n /* \"#utility.yul\":7013:7016 */\n dup4\n /* \"#utility.yul\":6954:7021 */\n tag_338\n jump\t// in\n tag_354:\n /* \"#utility.yul\":6947:7021 */\n swap2\n pop\n /* \"#utility.yul\":7030:7123 */\n tag_355\n /* \"#utility.yul\":7119:7122 */\n dup3\n /* \"#utility.yul\":7030:7123 */\n tag_356\n jump\t// in\n tag_355:\n /* \"#utility.yul\":7148:7150 */\n 0x40\n /* \"#utility.yul\":7143:7146 */\n dup3\n /* \"#utility.yul\":7139:7151 */\n add\n /* \"#utility.yul\":7132:7151 */\n swap1\n pop\n /* \"#utility.yul\":6937:7157 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7163:7529 */\n tag_357:\n /* \"#utility.yul\":7305:7308 */\n 0x00\n /* \"#utility.yul\":7326:7393 */\n tag_359\n /* \"#utility.yul\":7390:7392 */\n 0x24\n /* \"#utility.yul\":7385:7388 */\n dup4\n /* \"#utility.yul\":7326:7393 */\n tag_338\n jump\t// in\n tag_359:\n /* \"#utility.yul\":7319:7393 */\n swap2\n pop\n /* \"#utility.yul\":7402:7495 */\n tag_360\n /* \"#utility.yul\":7491:7494 */\n dup3\n /* \"#utility.yul\":7402:7495 */\n tag_361\n jump\t// in\n tag_360:\n /* \"#utility.yul\":7520:7522 */\n 0x40\n /* \"#utility.yul\":7515:7518 */\n dup3\n /* \"#utility.yul\":7511:7523 */\n add\n /* \"#utility.yul\":7504:7523 */\n swap1\n pop\n /* \"#utility.yul\":7309:7529 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7535:7901 */\n tag_362:\n /* \"#utility.yul\":7677:7680 */\n 0x00\n /* \"#utility.yul\":7698:7765 */\n tag_364\n /* \"#utility.yul\":7762:7764 */\n 0x19\n /* \"#utility.yul\":7757:7760 */\n dup4\n /* \"#utility.yul\":7698:7765 */\n tag_338\n jump\t// in\n tag_364:\n /* \"#utility.yul\":7691:7765 */\n swap2\n pop\n /* \"#utility.yul\":7774:7867 */\n tag_365\n /* \"#utility.yul\":7863:7866 */\n dup3\n /* \"#utility.yul\":7774:7867 */\n tag_366\n jump\t// in\n tag_365:\n /* \"#utility.yul\":7892:7894 */\n 0x20\n /* \"#utility.yul\":7887:7890 */\n dup3\n /* \"#utility.yul\":7883:7895 */\n add\n /* \"#utility.yul\":7876:7895 */\n swap1\n pop\n /* \"#utility.yul\":7681:7901 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7907:8273 */\n tag_367:\n /* \"#utility.yul\":8049:8052 */\n 0x00\n /* \"#utility.yul\":8070:8137 */\n tag_369\n /* \"#utility.yul\":8134:8136 */\n 0x2c\n /* \"#utility.yul\":8129:8132 */\n dup4\n /* \"#utility.yul\":8070:8137 */\n tag_338\n jump\t// in\n tag_369:\n /* \"#utility.yul\":8063:8137 */\n swap2\n pop\n /* \"#utility.yul\":8146:8239 */\n tag_370\n /* \"#utility.yul\":8235:8238 */\n dup3\n /* \"#utility.yul\":8146:8239 */\n tag_371\n jump\t// in\n tag_370:\n /* \"#utility.yul\":8264:8266 */\n 0x40\n /* \"#utility.yul\":8259:8262 */\n dup3\n /* \"#utility.yul\":8255:8267 */\n add\n /* \"#utility.yul\":8248:8267 */\n swap1\n pop\n /* \"#utility.yul\":8053:8273 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8279:8645 */\n tag_372:\n /* \"#utility.yul\":8421:8424 */\n 0x00\n /* \"#utility.yul\":8442:8509 */\n tag_374\n /* \"#utility.yul\":8506:8508 */\n 0x38\n /* \"#utility.yul\":8501:8504 */\n dup4\n /* \"#utility.yul\":8442:8509 */\n tag_338\n jump\t// in\n tag_374:\n /* \"#utility.yul\":8435:8509 */\n swap2\n pop\n /* \"#utility.yul\":8518:8611 */\n tag_375\n /* \"#utility.yul\":8607:8610 */\n dup3\n /* \"#utility.yul\":8518:8611 */\n tag_376\n jump\t// in\n tag_375:\n /* \"#utility.yul\":8636:8638 */\n 0x40\n /* \"#utility.yul\":8631:8634 */\n dup3\n /* \"#utility.yul\":8627:8639 */\n add\n /* \"#utility.yul\":8620:8639 */\n swap1\n pop\n /* \"#utility.yul\":8425:8645 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8651:9017 */\n tag_377:\n /* \"#utility.yul\":8793:8796 */\n 0x00\n /* \"#utility.yul\":8814:8881 */\n tag_379\n /* \"#utility.yul\":8878:8880 */\n 0x2a\n /* \"#utility.yul\":8873:8876 */\n dup4\n /* \"#utility.yul\":8814:8881 */\n tag_338\n jump\t// in\n tag_379:\n /* \"#utility.yul\":8807:8881 */\n swap2\n pop\n /* \"#utility.yul\":8890:8983 */\n tag_380\n /* \"#utility.yul\":8979:8982 */\n dup3\n /* \"#utility.yul\":8890:8983 */\n tag_381\n jump\t// in\n tag_380:\n /* \"#utility.yul\":9008:9010 */\n 0x40\n /* \"#utility.yul\":9003:9006 */\n dup3\n /* \"#utility.yul\":8999:9011 */\n add\n /* \"#utility.yul\":8992:9011 */\n swap1\n pop\n /* \"#utility.yul\":8797:9017 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9023:9389 */\n tag_382:\n /* \"#utility.yul\":9165:9168 */\n 0x00\n /* \"#utility.yul\":9186:9253 */\n tag_384\n /* \"#utility.yul\":9250:9252 */\n 0x29\n /* \"#utility.yul\":9245:9248 */\n dup4\n /* \"#utility.yul\":9186:9253 */\n tag_338\n jump\t// in\n tag_384:\n /* \"#utility.yul\":9179:9253 */\n swap2\n pop\n /* \"#utility.yul\":9262:9355 */\n tag_385\n /* \"#utility.yul\":9351:9354 */\n dup3\n /* \"#utility.yul\":9262:9355 */\n tag_386\n jump\t// in\n tag_385:\n /* \"#utility.yul\":9380:9382 */\n 0x40\n /* \"#utility.yul\":9375:9378 */\n dup3\n /* \"#utility.yul\":9371:9383 */\n add\n /* \"#utility.yul\":9364:9383 */\n swap1\n pop\n /* \"#utility.yul\":9169:9389 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9395:9761 */\n tag_387:\n /* \"#utility.yul\":9537:9540 */\n 0x00\n /* \"#utility.yul\":9558:9625 */\n tag_389\n /* \"#utility.yul\":9622:9624 */\n 0x2c\n /* \"#utility.yul\":9617:9620 */\n dup4\n /* \"#utility.yul\":9558:9625 */\n tag_338\n jump\t// in\n tag_389:\n /* \"#utility.yul\":9551:9625 */\n swap2\n pop\n /* \"#utility.yul\":9634:9727 */\n tag_390\n /* \"#utility.yul\":9723:9726 */\n dup3\n /* \"#utility.yul\":9634:9727 */\n tag_391\n jump\t// in\n tag_390:\n /* \"#utility.yul\":9752:9754 */\n 0x40\n /* \"#utility.yul\":9747:9750 */\n dup3\n /* \"#utility.yul\":9743:9755 */\n add\n /* \"#utility.yul\":9736:9755 */\n swap1\n pop\n /* \"#utility.yul\":9541:9761 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9767:10133 */\n tag_392:\n /* \"#utility.yul\":9909:9912 */\n 0x00\n /* \"#utility.yul\":9930:9997 */\n tag_394\n /* \"#utility.yul\":9994:9996 */\n 0x2f\n /* \"#utility.yul\":9989:9992 */
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment