Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save levanthang2332001/f4d11d9be3f1bf9265727a115c73f963 to your computer and use it in GitHub Desktop.
Save levanthang2332001/f4d11d9be3f1bf9265727a115c73f963 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.9+commit.e5eed63a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)
pragma solidity ^0.8.0;
import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
import "./IERC721.sol";
/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
/// @dev This event emits when the metadata of a token is changed.
/// So that the third-party platforms such as NFT market could
/// timely update the images and related attributes of the NFT.
event MetadataUpdate(uint256 _tokenId);
/// @dev This event emits when the metadata of a range of tokens is changed.
/// So that the third-party platforms such as NFT market could
/// timely update the images and related attributes of the NFTs.
event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)
pragma solidity ^0.8.0;
import "../token/ERC721/IERC721.sol";
{
"id": "047edd248986a76ee84f668fa18d65d0",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.9",
"solcLongVersion": "0.8.9+commit.e5eed63a",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts/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"
}
},
"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/token/ERC721/IERC721Receiver.sol": {
"IERC721Receiver": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "onERC721Received",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.",
"kind": "dev",
"methods": {
"onERC721Received(address,address,uint256,bytes)": {
"details": "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`."
}
},
"title": "ERC721 token receiver interface",
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"onERC721Received(address,address,uint256,bytes)": "150b7a02"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.9+commit.e5eed63a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onERC721Received\",\"outputs\":[{\"internalType\":\"bytes4\",\"name\":\"\",\"type\":\"bytes4\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.\",\"kind\":\"dev\",\"methods\":{\"onERC721Received(address,address,uint256,bytes)\":{\"details\":\"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`.\"}},\"title\":\"ERC721 token receiver interface\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":\"IERC721Receiver\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol\":{\"keccak256\":\"0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708\",\"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol",
"exportedSymbols": {
"IERC721Receiver": [
17
]
},
"id": 18,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "116:23:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "IERC721Receiver",
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 2,
"nodeType": "StructuredDocumentation",
"src": "141:152:0",
"text": " @title ERC721 token receiver interface\n @dev Interface for any contract that wants to support safeTransfers\n from ERC721 asset contracts."
},
"fullyImplemented": false,
"id": 17,
"linearizedBaseContracts": [
17
],
"name": "IERC721Receiver",
"nameLocation": "304:15:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "326:493:0",
"text": " @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n by `operator` from `from`, this function is called.\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 The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`."
},
"functionSelector": "150b7a02",
"id": 16,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "onERC721Received",
"nameLocation": "833:16:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 12,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5,
"mutability": "mutable",
"name": "operator",
"nameLocation": "867:8:0",
"nodeType": "VariableDeclaration",
"scope": 16,
"src": "859:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 4,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "859:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "from",
"nameLocation": "893:4:0",
"nodeType": "VariableDeclaration",
"scope": 16,
"src": "885:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 6,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "885:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"mutability": "mutable",
"name": "tokenId",
"nameLocation": "915:7:0",
"nodeType": "VariableDeclaration",
"scope": 16,
"src": "907:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 8,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "907:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 11,
"mutability": "mutable",
"name": "data",
"nameLocation": "947:4:0",
"nodeType": "VariableDeclaration",
"scope": 16,
"src": "932:19:0",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 10,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "932:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "849:108:0"
},
"returnParameters": {
"id": 15,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 14,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 16,
"src": "976:6:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"typeName": {
"id": 13,
"name": "bytes4",
"nodeType": "ElementaryTypeName",
"src": "976:6:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"visibility": "internal"
}
],
"src": "975:8:0"
},
"scope": 17,
"src": "824:160:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
}
],
"scope": 18,
"src": "294:692:0",
"usedErrors": []
}
],
"src": "116:871:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 576,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 651,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 702,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 289,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 468,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 522,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 882,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 383,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 835,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 336,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 309,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 314,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 304,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 299,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 319,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4093:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:11",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:11"
},
"nodeType": "YulFunctionCall",
"src": "67:9:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:11"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:11",
"type": ""
}
],
"src": "7:75:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:11"
},
"nodeType": "YulFunctionCall",
"src": "187:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:11"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:11"
},
"nodeType": "YulFunctionCall",
"src": "310:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:11"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:11"
},
"nodeType": "YulFunctionCall",
"src": "433:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:11"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:11"
},
"nodeType": "YulFunctionCall",
"src": "556:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:11"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:11"
},
"nodeType": "YulFunctionCall",
"src": "652:14:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:11"
},
"nodeType": "YulFunctionCall",
"src": "668:7:11"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:11"
},
"nodeType": "YulFunctionCall",
"src": "648:28:11"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:11"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:11",
"type": ""
}
],
"src": "580:102:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:11"
},
"nodeType": "YulFunctionCall",
"src": "726:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:11",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:11"
},
"nodeType": "YulFunctionCall",
"src": "823:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:11"
},
"nodeType": "YulFunctionCall",
"src": "847:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:11"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:11",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:11"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:11"
},
"nodeType": "YulFunctionCall",
"src": "957:27:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:11"
},
"nodeType": "YulFunctionCall",
"src": "945:40:11"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:11"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:11"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:11"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:11"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:11"
},
"nodeType": "YulIf",
"src": "1030:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:11",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:11"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:11"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:11",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:11",
"type": ""
}
],
"src": "874:281:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:11",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:11"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:11"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:11"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:11"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:11"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:11",
"type": ""
}
],
"src": "1161:129:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:11"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:11"
},
"nodeType": "YulIf",
"src": "1434:56:11"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:11"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:11",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:11"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:11",
"type": ""
}
],
"src": "1296:308:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:258:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1669:10:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1678:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1673:1:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:63:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1763:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1768:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1759:11:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1782:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1787:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1778:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1778:11:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1772:5:11"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1752:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1752:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "1752:39:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1699:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1702:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1696:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1696:13:11"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1710:19:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:15:11",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1721:1:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1724:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1717:10:11"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:11"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1692:3:11",
"statements": []
},
"src": "1688:113:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:76:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1885:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1881:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1881:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1874:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1874:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "1874:27:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1816:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1819:6:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1813:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1813:13:11"
},
"nodeType": "YulIf",
"src": "1810:101:11"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1641:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1646:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1651:6:11",
"type": ""
}
],
"src": "1610:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2018:326:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2028:75:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2095:6:11"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2053:41:11"
},
"nodeType": "YulFunctionCall",
"src": "2053:49:11"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2037:15:11"
},
"nodeType": "YulFunctionCall",
"src": "2037:66:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2028:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2119:5:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2126:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2112:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2112:21:11"
},
"nodeType": "YulExpressionStatement",
"src": "2112:21:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2142:27:11",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2157:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2164:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2153:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2153:16:11"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2146:3:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2209:77:11"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2188:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2193:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2184:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2184:16:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2202:3:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2181:2:11"
},
"nodeType": "YulFunctionCall",
"src": "2181:25:11"
},
"nodeType": "YulIf",
"src": "2178:112:11"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2321:3:11"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2326:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2299:21:11"
},
"nodeType": "YulFunctionCall",
"src": "2299:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "2299:39:11"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1991:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1996:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2004:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2012:5:11",
"type": ""
}
],
"src": "1923:421:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:282:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2486:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2488:77:11"
},
"nodeType": "YulFunctionCall",
"src": "2488:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "2488:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2461:17:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2480:3:11"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2457:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2457:27:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2450:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2450:35:11"
},
"nodeType": "YulIf",
"src": "2447:122:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2578:27:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2598:6:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2592:5:11"
},
"nodeType": "YulFunctionCall",
"src": "2592:13:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2582:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2614:99:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2686:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2694:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2682:17:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2709:3:11"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2623:58:11"
},
"nodeType": "YulFunctionCall",
"src": "2623:90:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2614:5:11"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2415:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2423:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2431:5:11",
"type": ""
}
],
"src": "2364:355:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2839:739:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2885:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2887:77:11"
},
"nodeType": "YulFunctionCall",
"src": "2887:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "2887:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2869:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2856:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2856:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2881:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2852:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2852:32:11"
},
"nodeType": "YulIf",
"src": "2849:119:11"
},
{
"nodeType": "YulBlock",
"src": "2978:291:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2993:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3017:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3028:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3013:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3013:17:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3007:5:11"
},
"nodeType": "YulFunctionCall",
"src": "3007:24:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2997:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3078:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3080:77:11"
},
"nodeType": "YulFunctionCall",
"src": "3080:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "3080:79:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3050:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3047:2:11"
},
"nodeType": "YulFunctionCall",
"src": "3047:30:11"
},
"nodeType": "YulIf",
"src": "3044:117:11"
},
{
"nodeType": "YulAssignment",
"src": "3175:84:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3231:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3242:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3227:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3227:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3251:7:11"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3185:41:11"
},
"nodeType": "YulFunctionCall",
"src": "3185:74:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3175:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3279:292:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3294:39:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3318:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3329:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3314:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3314:18:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3308:5:11"
},
"nodeType": "YulFunctionCall",
"src": "3308:25:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3298:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3380:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3382:77:11"
},
"nodeType": "YulFunctionCall",
"src": "3382:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "3382:79:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3352:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3360:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3349:2:11"
},
"nodeType": "YulFunctionCall",
"src": "3349:30:11"
},
"nodeType": "YulIf",
"src": "3346:117:11"
},
{
"nodeType": "YulAssignment",
"src": "3477:84:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3533:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3544:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3529:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3529:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3553:7:11"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3487:41:11"
},
"nodeType": "YulFunctionCall",
"src": "3487:74:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3477:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2801:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2812:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2824:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2832:6:11",
"type": ""
}
],
"src": "2725:853:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3612:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3629:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3632:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3622:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3622:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "3622:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3729:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3719:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3719:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "3719:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3750:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3753:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3743:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3743:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "3743:15:11"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "3584:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3821:269:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3831:22:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3845:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3851:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3841:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3841:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3831:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3862:38:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3892:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3898:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3888:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3888:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3866:18:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3939:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3953:27:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3967:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3975:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3963:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3963:17:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3953:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3919:18:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3912:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3912:26:11"
},
"nodeType": "YulIf",
"src": "3909:81:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4042:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4056:16:11"
},
"nodeType": "YulFunctionCall",
"src": "4056:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "4056:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4006:18:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4029:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4037:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4026:2:11"
},
"nodeType": "YulFunctionCall",
"src": "4026:14:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4003:2:11"
},
"nodeType": "YulFunctionCall",
"src": "4003:38:11"
},
"nodeType": "YulIf",
"src": "4000:84:11"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3805:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3814:6:11",
"type": ""
}
],
"src": "3770:320:11"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\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 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_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\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_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\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_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\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_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162002501380380620025018339818101604052810190620000379190620002be565b81600090805190602001906200004f92919062000071565b5080600190805190602001906200006892919062000071565b505050620003a8565b8280546200007f9062000372565b90600052602060002090601f016020900481019282620000a35760008555620000ef565b82601f10620000be57805160ff1916838001178555620000ef565b82800160010185558215620000ef579182015b82811115620000ee578251825591602001919060010190620000d1565b5b509050620000fe919062000102565b5090565b5b808211156200011d57600081600090555060010162000103565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200018a826200013f565b810181811067ffffffffffffffff82111715620001ac57620001ab62000150565b5b80604052505050565b6000620001c162000121565b9050620001cf82826200017f565b919050565b600067ffffffffffffffff821115620001f257620001f162000150565b5b620001fd826200013f565b9050602081019050919050565b60005b838110156200022a5780820151818401526020810190506200020d565b838111156200023a576000848401525b50505050565b6000620002576200025184620001d4565b620001b5565b9050828152602081018484840111156200027657620002756200013a565b5b620002838482856200020a565b509392505050565b600082601f830112620002a357620002a262000135565b5b8151620002b584826020860162000240565b91505092915050565b60008060408385031215620002d857620002d76200012b565b5b600083015167ffffffffffffffff811115620002f957620002f862000130565b5b62000307858286016200028b565b925050602083015167ffffffffffffffff8111156200032b576200032a62000130565b5b62000339858286016200028b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200038b57607f821691505b60208210811415620003a257620003a162000343565b5b50919050565b61214980620003b86000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e99190611513565b6102bc565b6040516100fb919061155b565b60405180910390f35b61010c61039e565b604051610119919061160f565b60405180910390f35b61013c60048036038101906101379190611667565b610430565b60405161014991906116d5565b60405180910390f35b61016c6004803603810190610167919061171c565b610476565b005b6101886004803603810190610183919061175c565b61058e565b005b6101a4600480360381019061019f919061175c565b6105ee565b005b6101c060048036038101906101bb9190611667565b61060e565b6040516101cd91906116d5565b60405180910390f35b6101f060048036038101906101eb91906117af565b610695565b6040516101fd91906117eb565b60405180910390f35b61020e61074d565b60405161021b919061160f565b60405180910390f35b61023e60048036038101906102399190611832565b6107df565b005b61025a600480360381019061025591906119a7565b6107f5565b005b61027660048036038101906102719190611667565b610857565b604051610283919061160f565b60405180910390f35b6102a660048036038101906102a19190611a2a565b6108bf565b6040516102b3919061155b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610397575061039682610953565b5b9050919050565b6060600080546103ad90611a99565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611a99565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b826109bd565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104818261060e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e990611b3d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610511610a08565b73ffffffffffffffffffffffffffffffffffffffff161480610540575061053f8161053a610a08565b6108bf565b5b61057f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057690611bcf565b60405180910390fd5b6105898383610a10565b505050565b61059f610599610a08565b82610ac9565b6105de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d590611c61565b60405180910390fd5b6105e9838383610b5e565b505050565b610609838383604051806020016040528060008152506107f5565b505050565b60008061061a83610e58565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561068c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068390611ccd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd90611d5f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606001805461075c90611a99565b80601f016020809104026020016040519081016040528092919081815260200182805461078890611a99565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b6107f16107ea610a08565b8383610e95565b5050565b610806610800610a08565b83610ac9565b610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90611c61565b60405180910390fd5b61085184848484611002565b50505050565b6060610862826109bd565b600061086c61105e565b9050600081511161088c57604051806020016040528060008152506108b7565b8061089684611075565b6040516020016108a7929190611dbb565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6109c68161114d565b610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611ccd565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610a838361060e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ad58361060e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610b175750610b1681856108bf565b5b80610b5557508373ffffffffffffffffffffffffffffffffffffffff16610b3d84610430565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610b7e8261060e565b73ffffffffffffffffffffffffffffffffffffffff1614610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90611e51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90611ee3565b60405180910390fd5b610c51838383600161118e565b8273ffffffffffffffffffffffffffffffffffffffff16610c718261060e565b73ffffffffffffffffffffffffffffffffffffffff1614610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611e51565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e538383836001611194565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611f4f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff5919061155b565b60405180910390a3505050565b61100d848484610b5e565b6110198484848461119a565b611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90611fe1565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000600161108484611331565b01905060008167ffffffffffffffff8111156110a3576110a261187c565b5b6040519080825280601f01601f1916602001820160405280156110d55781602001600182028036833780820191505090505b509050600082602001820190505b600115611142578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161112c5761112b612001565b5b049450600085141561113d57611142565b6110e3565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661116f83610e58565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b60006111bb8473ffffffffffffffffffffffffffffffffffffffff16611484565b15611324578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026111e4610a08565b8786866040518563ffffffff1660e01b81526004016112069493929190612085565b602060405180830381600087803b15801561122057600080fd5b505af192505050801561125157506040513d601f19601f8201168201806040525081019061124e91906120e6565b60015b6112d4573d8060008114611281576040519150601f19603f3d011682016040523d82523d6000602084013e611286565b606091505b506000815114156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390611fe1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611329565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061138f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161138557611384612001565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106113cc576d04ee2d6d415b85acef810000000083816113c2576113c1612001565b5b0492506020810190505b662386f26fc1000083106113fb57662386f26fc1000083816113f1576113f0612001565b5b0492506010810190505b6305f5e1008310611424576305f5e100838161141a57611419612001565b5b0492506008810190505b612710831061144957612710838161143f5761143e612001565b5b0492506004810190505b6064831061146c576064838161146257611461612001565b5b0492506002810190505b600a831061147b576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6114f0816114bb565b81146114fb57600080fd5b50565b60008135905061150d816114e7565b92915050565b600060208284031215611529576115286114b1565b5b6000611537848285016114fe565b91505092915050565b60008115159050919050565b61155581611540565b82525050565b6000602082019050611570600083018461154c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115b0578082015181840152602081019050611595565b838111156115bf576000848401525b50505050565b6000601f19601f8301169050919050565b60006115e182611576565b6115eb8185611581565b93506115fb818560208601611592565b611604816115c5565b840191505092915050565b6000602082019050818103600083015261162981846115d6565b905092915050565b6000819050919050565b61164481611631565b811461164f57600080fd5b50565b6000813590506116618161163b565b92915050565b60006020828403121561167d5761167c6114b1565b5b600061168b84828501611652565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116bf82611694565b9050919050565b6116cf816116b4565b82525050565b60006020820190506116ea60008301846116c6565b92915050565b6116f9816116b4565b811461170457600080fd5b50565b600081359050611716816116f0565b92915050565b60008060408385031215611733576117326114b1565b5b600061174185828601611707565b925050602061175285828601611652565b9150509250929050565b600080600060608486031215611775576117746114b1565b5b600061178386828701611707565b935050602061179486828701611707565b92505060406117a586828701611652565b9150509250925092565b6000602082840312156117c5576117c46114b1565b5b60006117d384828501611707565b91505092915050565b6117e581611631565b82525050565b600060208201905061180060008301846117dc565b92915050565b61180f81611540565b811461181a57600080fd5b50565b60008135905061182c81611806565b92915050565b60008060408385031215611849576118486114b1565b5b600061185785828601611707565b92505060206118688582860161181d565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6118b4826115c5565b810181811067ffffffffffffffff821117156118d3576118d261187c565b5b80604052505050565b60006118e66114a7565b90506118f282826118ab565b919050565b600067ffffffffffffffff8211156119125761191161187c565b5b61191b826115c5565b9050602081019050919050565b82818337600083830152505050565b600061194a611945846118f7565b6118dc565b90508281526020810184848401111561196657611965611877565b5b611971848285611928565b509392505050565b600082601f83011261198e5761198d611872565b5b813561199e848260208601611937565b91505092915050565b600080600080608085870312156119c1576119c06114b1565b5b60006119cf87828801611707565b94505060206119e087828801611707565b93505060406119f187828801611652565b925050606085013567ffffffffffffffff811115611a1257611a116114b6565b5b611a1e87828801611979565b91505092959194509250565b60008060408385031215611a4157611a406114b1565b5b6000611a4f85828601611707565b9250506020611a6085828601611707565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ab157607f821691505b60208210811415611ac557611ac4611a6a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b27602183611581565b9150611b3282611acb565b604082019050919050565b60006020820190508181036000830152611b5681611b1a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000611bb9603d83611581565b9150611bc482611b5d565b604082019050919050565b60006020820190508181036000830152611be881611bac565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000611c4b602d83611581565b9150611c5682611bef565b604082019050919050565b60006020820190508181036000830152611c7a81611c3e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000611cb7601883611581565b9150611cc282611c81565b602082019050919050565b60006020820190508181036000830152611ce681611caa565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000611d49602983611581565b9150611d5482611ced565b604082019050919050565b60006020820190508181036000830152611d7881611d3c565b9050919050565b600081905092915050565b6000611d9582611576565b611d9f8185611d7f565b9350611daf818560208601611592565b80840191505092915050565b6000611dc78285611d8a565b9150611dd38284611d8a565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000611e3b602583611581565b9150611e4682611ddf565b604082019050919050565b60006020820190508181036000830152611e6a81611e2e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ecd602483611581565b9150611ed882611e71565b604082019050919050565b60006020820190508181036000830152611efc81611ec0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000611f39601983611581565b9150611f4482611f03565b602082019050919050565b60006020820190508181036000830152611f6881611f2c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000611fcb603283611581565b9150611fd682611f6f565b604082019050919050565b60006020820190508181036000830152611ffa81611fbe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061205782612030565b612061818561203b565b9350612071818560208601611592565b61207a816115c5565b840191505092915050565b600060808201905061209a60008301876116c6565b6120a760208301866116c6565b6120b460408301856117dc565b81810360608301526120c6818461204c565b905095945050505050565b6000815190506120e0816114e7565b92915050565b6000602082840312156120fc576120fb6114b1565b5b600061210a848285016120d1565b9150509291505056fea264697066735822122007744a118a0f08902e52dc2ef00962c180fac745ff59182486d158d552bc12bc64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x2501 CODESIZE SUB DUP1 PUSH3 0x2501 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x2BE 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 0x3A8 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x7F SWAP1 PUSH3 0x372 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 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0x18A DUP3 PUSH3 0x13F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x1AC JUMPI PUSH3 0x1AB PUSH3 0x150 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C1 PUSH3 0x121 JUMP JUMPDEST SWAP1 POP PUSH3 0x1CF DUP3 DUP3 PUSH3 0x17F JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x1F2 JUMPI PUSH3 0x1F1 PUSH3 0x150 JUMP JUMPDEST JUMPDEST PUSH3 0x1FD DUP3 PUSH3 0x13F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x22A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x20D JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x23A JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x257 PUSH3 0x251 DUP5 PUSH3 0x1D4 JUMP JUMPDEST PUSH3 0x1B5 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x276 JUMPI PUSH3 0x275 PUSH3 0x13A JUMP JUMPDEST JUMPDEST PUSH3 0x283 DUP5 DUP3 DUP6 PUSH3 0x20A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x2A3 JUMPI PUSH3 0x2A2 PUSH3 0x135 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x2B5 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x240 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x2D8 JUMPI PUSH3 0x2D7 PUSH3 0x12B JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2F9 JUMPI PUSH3 0x2F8 PUSH3 0x130 JUMP JUMPDEST JUMPDEST PUSH3 0x307 DUP6 DUP3 DUP7 ADD PUSH3 0x28B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x32B JUMPI PUSH3 0x32A PUSH3 0x130 JUMP JUMPDEST JUMPDEST PUSH3 0x339 DUP6 DUP3 DUP7 ADD PUSH3 0x28B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x38B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x3A2 JUMPI PUSH3 0x3A1 PUSH3 0x343 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2149 DUP1 PUSH3 0x3B8 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 0x1513 JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x155B 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 0x160F 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 0x1667 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x16D5 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 0x171C JUMP JUMPDEST PUSH2 0x476 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x175C JUMP JUMPDEST PUSH2 0x58E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x175C JUMP JUMPDEST PUSH2 0x5EE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x1667 JUMP JUMPDEST PUSH2 0x60E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x16D5 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 0x17AF JUMP JUMPDEST PUSH2 0x695 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x17EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x74D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x160F 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 0x1832 JUMP JUMPDEST PUSH2 0x7DF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x19A7 JUMP JUMPDEST PUSH2 0x7F5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x1667 JUMP JUMPDEST PUSH2 0x857 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x160F 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 0x1A2A JUMP JUMPDEST PUSH2 0x8BF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x155B 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 0x953 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1A99 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 0x1A99 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 0x9BD JUMP 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 0x481 DUP3 PUSH2 0x60E JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x4F2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4E9 SWAP1 PUSH2 0x1B3D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x511 PUSH2 0xA08 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x540 JUMPI POP PUSH2 0x53F DUP2 PUSH2 0x53A PUSH2 0xA08 JUMP JUMPDEST PUSH2 0x8BF JUMP JUMPDEST JUMPDEST PUSH2 0x57F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x576 SWAP1 PUSH2 0x1BCF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x589 DUP4 DUP4 PUSH2 0xA10 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x59F PUSH2 0x599 PUSH2 0xA08 JUMP JUMPDEST DUP3 PUSH2 0xAC9 JUMP JUMPDEST PUSH2 0x5DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D5 SWAP1 PUSH2 0x1C61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5E9 DUP4 DUP4 DUP4 PUSH2 0xB5E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x609 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x7F5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x61A DUP4 PUSH2 0xE58 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x68C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x683 SWAP1 PUSH2 0x1CCD 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 0x706 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6FD SWAP1 PUSH2 0x1D5F 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 0x75C SWAP1 PUSH2 0x1A99 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 0x788 SWAP1 PUSH2 0x1A99 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7D5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7AA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7D5 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 0x7B8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7F1 PUSH2 0x7EA PUSH2 0xA08 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xE95 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x806 PUSH2 0x800 PUSH2 0xA08 JUMP JUMPDEST DUP4 PUSH2 0xAC9 JUMP JUMPDEST PUSH2 0x845 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x83C SWAP1 PUSH2 0x1C61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x851 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1002 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x862 DUP3 PUSH2 0x9BD JUMP JUMPDEST PUSH1 0x0 PUSH2 0x86C PUSH2 0x105E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x88C JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x8B7 JUMP JUMPDEST DUP1 PUSH2 0x896 DUP5 PUSH2 0x1075 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x8A7 SWAP3 SWAP2 SWAP1 PUSH2 0x1DBB 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 PUSH2 0x9C6 DUP2 PUSH2 0x114D JUMP JUMPDEST PUSH2 0xA05 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9FC SWAP1 PUSH2 0x1CCD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 0xA83 DUP4 PUSH2 0x60E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xAD5 DUP4 PUSH2 0x60E JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xB17 JUMPI POP PUSH2 0xB16 DUP2 DUP6 PUSH2 0x8BF JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xB55 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB3D DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB7E DUP3 PUSH2 0x60E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xBD4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBCB SWAP1 PUSH2 0x1E51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC44 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3B SWAP1 PUSH2 0x1EE3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC51 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x118E JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC71 DUP3 PUSH2 0x60E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCC7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCBE SWAP1 PUSH2 0x1E51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE 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 SUB 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 ADD 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 0xE53 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1194 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 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 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEFB SWAP1 PUSH2 0x1F4F 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 0xFF5 SWAP2 SWAP1 PUSH2 0x155B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x100D DUP5 DUP5 DUP5 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x1019 DUP5 DUP5 DUP5 DUP5 PUSH2 0x119A JUMP JUMPDEST PUSH2 0x1058 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x104F SWAP1 PUSH2 0x1FE1 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 PUSH1 0x1 PUSH2 0x1084 DUP5 PUSH2 0x1331 JUMP JUMPDEST ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10A3 JUMPI PUSH2 0x10A2 PUSH2 0x187C JUMP JUMPDEST 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 0x10D5 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 PUSH1 0x0 DUP3 PUSH1 0x20 ADD DUP3 ADD SWAP1 POP JUMPDEST PUSH1 0x1 ISZERO PUSH2 0x1142 JUMPI DUP1 DUP1 PUSH1 0x1 SWAP1 SUB SWAP2 POP POP PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DUP2 PUSH2 0x112C JUMPI PUSH2 0x112B PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP5 POP PUSH1 0x0 DUP6 EQ ISZERO PUSH2 0x113D JUMPI PUSH2 0x1142 JUMP JUMPDEST PUSH2 0x10E3 JUMP JUMPDEST DUP2 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x116F DUP4 PUSH2 0xE58 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11BB DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1484 JUMP JUMPDEST ISZERO PUSH2 0x1324 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x11E4 PUSH2 0xA08 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1206 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1220 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1251 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 0x124E SWAP2 SWAP1 PUSH2 0x20E6 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x12D4 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1281 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 0x1286 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x12CC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12C3 SWAP1 PUSH2 0x1FE1 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 0x1329 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 LT PUSH2 0x138F JUMPI PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 DUP2 PUSH2 0x1385 JUMPI PUSH2 0x1384 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x13CC JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DUP2 PUSH2 0x13C2 JUMPI PUSH2 0x13C1 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x13FB JUMPI PUSH7 0x2386F26FC10000 DUP4 DUP2 PUSH2 0x13F1 JUMPI PUSH2 0x13F0 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x1424 JUMPI PUSH4 0x5F5E100 DUP4 DUP2 PUSH2 0x141A JUMPI PUSH2 0x1419 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x1449 JUMPI PUSH2 0x2710 DUP4 DUP2 PUSH2 0x143F JUMPI PUSH2 0x143E PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x146C JUMPI PUSH1 0x64 DUP4 DUP2 PUSH2 0x1462 JUMPI PUSH2 0x1461 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x147B JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x14F0 DUP2 PUSH2 0x14BB JUMP JUMPDEST DUP2 EQ PUSH2 0x14FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x150D DUP2 PUSH2 0x14E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1529 JUMPI PUSH2 0x1528 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1537 DUP5 DUP3 DUP6 ADD PUSH2 0x14FE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1555 DUP2 PUSH2 0x1540 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1570 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x154C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x15B0 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1595 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x15BF JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15E1 DUP3 PUSH2 0x1576 JUMP JUMPDEST PUSH2 0x15EB DUP2 DUP6 PUSH2 0x1581 JUMP JUMPDEST SWAP4 POP PUSH2 0x15FB DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x1604 DUP2 PUSH2 0x15C5 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1629 DUP2 DUP5 PUSH2 0x15D6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1644 DUP2 PUSH2 0x1631 JUMP JUMPDEST DUP2 EQ PUSH2 0x164F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1661 DUP2 PUSH2 0x163B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x167D JUMPI PUSH2 0x167C PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x168B DUP5 DUP3 DUP6 ADD PUSH2 0x1652 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16BF DUP3 PUSH2 0x1694 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x16CF DUP2 PUSH2 0x16B4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x16EA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x16C6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x16F9 DUP2 PUSH2 0x16B4 JUMP JUMPDEST DUP2 EQ PUSH2 0x1704 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1716 DUP2 PUSH2 0x16F0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1733 JUMPI PUSH2 0x1732 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1741 DUP6 DUP3 DUP7 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1752 DUP6 DUP3 DUP7 ADD PUSH2 0x1652 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 0x1775 JUMPI PUSH2 0x1774 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1783 DUP7 DUP3 DUP8 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1794 DUP7 DUP3 DUP8 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x17A5 DUP7 DUP3 DUP8 ADD PUSH2 0x1652 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x17C5 JUMPI PUSH2 0x17C4 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x17D3 DUP5 DUP3 DUP6 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x17E5 DUP2 PUSH2 0x1631 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1800 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x17DC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x180F DUP2 PUSH2 0x1540 JUMP JUMPDEST DUP2 EQ PUSH2 0x181A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x182C DUP2 PUSH2 0x1806 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1849 JUMPI PUSH2 0x1848 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1857 DUP6 DUP3 DUP7 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1868 DUP6 DUP3 DUP7 ADD PUSH2 0x181D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x18B4 DUP3 PUSH2 0x15C5 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x18D3 JUMPI PUSH2 0x18D2 PUSH2 0x187C JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18E6 PUSH2 0x14A7 JUMP JUMPDEST SWAP1 POP PUSH2 0x18F2 DUP3 DUP3 PUSH2 0x18AB JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1912 JUMPI PUSH2 0x1911 PUSH2 0x187C JUMP JUMPDEST JUMPDEST PUSH2 0x191B DUP3 PUSH2 0x15C5 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x194A PUSH2 0x1945 DUP5 PUSH2 0x18F7 JUMP JUMPDEST PUSH2 0x18DC JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1966 JUMPI PUSH2 0x1965 PUSH2 0x1877 JUMP JUMPDEST JUMPDEST PUSH2 0x1971 DUP5 DUP3 DUP6 PUSH2 0x1928 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x198E JUMPI PUSH2 0x198D PUSH2 0x1872 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x199E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1937 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x19C1 JUMPI PUSH2 0x19C0 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19CF DUP8 DUP3 DUP9 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x19E0 DUP8 DUP3 DUP9 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x19F1 DUP8 DUP3 DUP9 ADD PUSH2 0x1652 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A12 JUMPI PUSH2 0x1A11 PUSH2 0x14B6 JUMP JUMPDEST JUMPDEST PUSH2 0x1A1E DUP8 DUP3 DUP9 ADD PUSH2 0x1979 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 0x1A41 JUMPI PUSH2 0x1A40 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A4F DUP6 DUP3 DUP7 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1A60 DUP6 DUP3 DUP7 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1AB1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1AC5 JUMPI PUSH2 0x1AC4 PUSH2 0x1A6A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B27 PUSH1 0x21 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B32 DUP3 PUSH2 0x1ACB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B56 DUP2 PUSH2 0x1B1A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BB9 PUSH1 0x3D DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1BC4 DUP3 PUSH2 0x1B5D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BE8 DUP2 PUSH2 0x1BAC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72206F7220617070726F76656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C4B PUSH1 0x2D DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C56 DUP3 PUSH2 0x1BEF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C7A DUP2 PUSH2 0x1C3E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CB7 PUSH1 0x18 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CC2 DUP3 PUSH2 0x1C81 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CE6 DUP2 PUSH2 0x1CAA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6964206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D49 PUSH1 0x29 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D54 DUP3 PUSH2 0x1CED JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D78 DUP2 PUSH2 0x1D3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D95 DUP3 PUSH2 0x1576 JUMP JUMPDEST PUSH2 0x1D9F DUP2 DUP6 PUSH2 0x1D7F JUMP JUMPDEST SWAP4 POP PUSH2 0x1DAF DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1592 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DC7 DUP3 DUP6 PUSH2 0x1D8A JUMP JUMPDEST SWAP2 POP PUSH2 0x1DD3 DUP3 DUP5 PUSH2 0x1D8A JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E3B PUSH1 0x25 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E46 DUP3 PUSH2 0x1DDF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1E6A DUP2 PUSH2 0x1E2E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1ECD PUSH1 0x24 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1ED8 DUP3 PUSH2 0x1E71 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1EFC DUP2 PUSH2 0x1EC0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F39 PUSH1 0x19 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F44 DUP3 PUSH2 0x1F03 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1F68 DUP2 PUSH2 0x1F2C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FCB PUSH1 0x32 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1FD6 DUP3 PUSH2 0x1F6F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FFA DUP2 PUSH2 0x1FBE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2057 DUP3 PUSH2 0x2030 JUMP JUMPDEST PUSH2 0x2061 DUP2 DUP6 PUSH2 0x203B JUMP JUMPDEST SWAP4 POP PUSH2 0x2071 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x207A DUP2 PUSH2 0x15C5 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x209A PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x16C6 JUMP JUMPDEST PUSH2 0x20A7 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x16C6 JUMP JUMPDEST PUSH2 0x20B4 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x17DC JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x20C6 DUP2 DUP5 PUSH2 0x204C JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x20E0 DUP2 PUSH2 0x14E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x20FC JUMPI PUSH2 0x20FB PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x210A DUP5 DUP3 DUP6 ADD PUSH2 0x20D1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SMOD PUSH21 0x4A118A0F08902E52DC2EF00962C180FAC745FF5918 0x24 DUP7 0xD1 PC 0xD5 MSTORE 0xBC SLT 0xBC PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "628:16377:0:-:0;;;1390:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1464:5;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;628:16377;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:11:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:307::-;1678:1;1688:113;1702:6;1699:1;1696:13;1688:113;;;1787:1;1782:3;1778:11;1772:18;1768:1;1763:3;1759:11;1752:39;1724:2;1721:1;1717:10;1712:15;;1688:113;;;1819:6;1816:1;1813:13;1810:101;;;1899:1;1890:6;1885:3;1881:16;1874:27;1810:101;1659:258;1610:307;;;:::o;1923:421::-;2012:5;2037:66;2053:49;2095:6;2053:49;:::i;:::-;2037:66;:::i;:::-;2028:75;;2126:6;2119:5;2112:21;2164:4;2157:5;2153:16;2202:3;2193:6;2188:3;2184:16;2181:25;2178:112;;;2209:79;;:::i;:::-;2178:112;2299:39;2331:6;2326:3;2321;2299:39;:::i;:::-;2018:326;1923:421;;;;;:::o;2364:355::-;2431:5;2480:3;2473:4;2465:6;2461:17;2457:27;2447:122;;2488:79;;:::i;:::-;2447:122;2598:6;2592:13;2623:90;2709:3;2701:6;2694:4;2686:6;2682:17;2623:90;:::i;:::-;2614:99;;2437:282;2364:355;;;;:::o;2725:853::-;2824:6;2832;2881:2;2869:9;2860:7;2856:23;2852:32;2849:119;;;2887:79;;:::i;:::-;2849:119;3028:1;3017:9;3013:17;3007:24;3058:18;3050:6;3047:30;3044:117;;;3080:79;;:::i;:::-;3044:117;3185:74;3251:7;3242:6;3231:9;3227:22;3185:74;:::i;:::-;3175:84;;2978:291;3329:2;3318:9;3314:18;3308:25;3360:18;3352:6;3349:30;3346:117;;;3382:79;;:::i;:::-;3346:117;3487:74;3553:7;3544:6;3533:9;3529:22;3487:74;:::i;:::-;3477:84;;3279:292;2725:853;;;;;:::o;3584:180::-;3632:77;3629:1;3622:88;3729:4;3726:1;3719:15;3753:4;3750:1;3743:15;3770:320;3814:6;3851:1;3845:4;3841:12;3831:22;;3898:1;3892:4;3888:12;3919:18;3909:81;;3975:4;3967:6;3963:17;3953:27;;3909:81;4037:2;4029:6;4026:14;4006:18;4003:38;4000:84;;;4056:18;;:::i;:::-;4000:84;3821:269;3770:320;;;:::o;628:16377:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_910": {
"entryPoint": 4500,
"id": 910,
"parameterSlots": 4,
"returnSlots": 0
},
"@_approve_776": {
"entryPoint": 2576,
"id": 776,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_213": {
"entryPoint": 4190,
"id": 213,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_897": {
"entryPoint": 4494,
"id": 897,
"parameterSlots": 4,
"returnSlots": 0
},
"@_checkOnERC721Received_884": {
"entryPoint": 4506,
"id": 884,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_445": {
"entryPoint": 4429,
"id": 445,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_479": {
"entryPoint": 2761,
"id": 479,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_1429": {
"entryPoint": 2568,
"id": 1429,
"parameterSlots": 0,
"returnSlots": 1
},
"@_ownerOf_427": {
"entryPoint": 3672,
"id": 427,
"parameterSlots": 1,
"returnSlots": 1
},
"@_requireMinted_822": {
"entryPoint": 2493,
"id": 822,
"parameterSlots": 1,
"returnSlots": 0
},
"@_safeTransfer_414": {
"entryPoint": 4098,
"id": 414,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_808": {
"entryPoint": 3733,
"id": 808,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_752": {
"entryPoint": 2910,
"id": 752,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_256": {
"entryPoint": 1142,
"id": 256,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_117": {
"entryPoint": 1685,
"id": 117,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_274": {
"entryPoint": 1072,
"id": 274,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_309": {
"entryPoint": 2239,
"id": 309,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1105": {
"entryPoint": 5252,
"id": 1105,
"parameterSlots": 1,
"returnSlots": 1
},
"@log10_2407": {
"entryPoint": 4913,
"id": 2407,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_155": {
"entryPoint": 926,
"id": 155,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_145": {
"entryPoint": 1550,
"id": 145,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_355": {
"entryPoint": 1518,
"id": 355,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_385": {
"entryPoint": 2037,
"id": 385,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_291": {
"entryPoint": 2015,
"id": 291,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1691": {
"entryPoint": 2387,
"id": 1691,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_93": {
"entryPoint": 700,
"id": 93,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_165": {
"entryPoint": 1869,
"id": 165,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1498": {
"entryPoint": 4213,
"id": 1498,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_204": {
"entryPoint": 2135,
"id": 204,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_336": {
"entryPoint": 1422,
"id": 336,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 6455,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 5895,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 6173,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5374,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 8401,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 6521,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 5714,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 6063,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 6698,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 5980,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 6567,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 6194,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 5916,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 5395,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 8422,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 5735,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 5830,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5452,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 8268,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5590,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7562,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7230,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8126,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7726,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7872,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7980,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7484,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7338,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6938,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7084,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6108,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"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": {
"entryPoint": 7611,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 5845,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"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": {
"entryPoint": 8325,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 5467,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5647,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7265,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8161,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7761,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7907,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8015,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7519,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7373,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6973,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7119,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 6123,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 6364,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 5287,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 6391,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 8240,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 5494,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 8251,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 5505,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7551,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 5812,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 5440,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 5307,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 5780,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 5681,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 6440,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 5522,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 6809,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 6315,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 8193,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 6762,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 6268,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 6258,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 6263,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 5302,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 5297,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 5573,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af": {
"entryPoint": 7151,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 8047,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 7647,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 7793,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 7939,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159": {
"entryPoint": 7405,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f": {
"entryPoint": 7297,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 6859,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83": {
"entryPoint": 7005,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 5872,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 6150,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 5351,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 5691,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:23167:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:11",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:11"
},
"nodeType": "YulFunctionCall",
"src": "67:9:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:11"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:11",
"type": ""
}
],
"src": "7:75:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:11"
},
"nodeType": "YulFunctionCall",
"src": "187:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:11"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:11"
},
"nodeType": "YulFunctionCall",
"src": "310:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:11"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:11",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:11"
},
"nodeType": "YulFunctionCall",
"src": "399:78:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:11"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:11",
"type": ""
}
],
"src": "334:149:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:11"
},
"nodeType": "YulFunctionCall",
"src": "589:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:11"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:11"
},
"nodeType": "YulFunctionCall",
"src": "561:23:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:11"
},
"nodeType": "YulFunctionCall",
"src": "551:34:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:11"
},
"nodeType": "YulFunctionCall",
"src": "544:42:11"
},
"nodeType": "YulIf",
"src": "541:62:11"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:11",
"type": ""
}
],
"src": "489:120:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:11"
},
"nodeType": "YulFunctionCall",
"src": "685:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:11"
},
"nodeType": "YulFunctionCall",
"src": "714:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:11"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:11",
"type": ""
}
],
"src": "615:137:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:11"
},
"nodeType": "YulFunctionCall",
"src": "871:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:11"
},
"nodeType": "YulFunctionCall",
"src": "840:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:11"
},
"nodeType": "YulFunctionCall",
"src": "836:32:11"
},
"nodeType": "YulIf",
"src": "833:119:11"
},
{
"nodeType": "YulBlock",
"src": "962:116:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:11"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:11",
"type": ""
}
],
"src": "758:327:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:11"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:11",
"type": ""
}
],
"src": "1091:90:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:11"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:11"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:11"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:11",
"type": ""
}
],
"src": "1187:109:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:11"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:11"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:11"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:11"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:11",
"type": ""
}
],
"src": "1302:210:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1588:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1604:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1598:5:11"
},
"nodeType": "YulFunctionCall",
"src": "1598:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1588:6:11"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1560:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1570:6:11",
"type": ""
}
],
"src": "1518:99:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1736:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1741:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1729:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1729:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "1729:19:11"
},
{
"nodeType": "YulAssignment",
"src": "1757:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1776:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1781:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1772:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1757:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1691:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1696:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1707:11:11",
"type": ""
}
],
"src": "1623:169:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1847:258:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1857:10:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1866:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1861:1:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1926:63:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1951:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1956:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1947:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1947:11:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1970:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1975:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1966:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1966:11:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1960:5:11"
},
"nodeType": "YulFunctionCall",
"src": "1960:18:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1940:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1940:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "1940:39:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1887:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1884:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1884:13:11"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1898:19:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1900:15:11",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1909:1:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1912:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1905:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1905:10:11"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1900:1:11"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1880:3:11",
"statements": []
},
"src": "1876:113:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2023:76:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2073:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2078:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2069:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2069:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2087:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2062:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2062:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "2062:27:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2004:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2007:6:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2001:2:11"
},
"nodeType": "YulFunctionCall",
"src": "2001:13:11"
},
"nodeType": "YulIf",
"src": "1998:101:11"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1829:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1834:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1839:6:11",
"type": ""
}
],
"src": "1798:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2159:54:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2169:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2187:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2194:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2183:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2183:14:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2199:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2199:7:11"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2179:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2179:28:11"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2169:6:11"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2142:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2152:6:11",
"type": ""
}
],
"src": "2111:102:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2311:272:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2321:53:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2368:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2335:32:11"
},
"nodeType": "YulFunctionCall",
"src": "2335:39:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2325:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2383:78:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2449:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2454:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2390:58:11"
},
"nodeType": "YulFunctionCall",
"src": "2390:71:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2383:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2496:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2503:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2492:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2492:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2510:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2515:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2470:21:11"
},
"nodeType": "YulFunctionCall",
"src": "2470:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "2470:52:11"
},
{
"nodeType": "YulAssignment",
"src": "2531:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2542:3:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2569:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2547:21:11"
},
"nodeType": "YulFunctionCall",
"src": "2547:29:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2538:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2538:39:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2531:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2292:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2299:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2307:3:11",
"type": ""
}
],
"src": "2219:364:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2707:195:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2717:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2729:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2740:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2725:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2725:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2717:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2764:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2775:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2760:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2760:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2783:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2789:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2779:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2779:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2753:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2753:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "2753:47:11"
},
{
"nodeType": "YulAssignment",
"src": "2809:86:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2881:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2890:4:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2817:63:11"
},
"nodeType": "YulFunctionCall",
"src": "2817:78:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2809:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2679:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2691:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2702:4:11",
"type": ""
}
],
"src": "2589:313:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2953:32:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2963:16:11",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2974:5:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2963:7:11"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2935:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2945:7:11",
"type": ""
}
],
"src": "2908:77:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3034:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3091:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3100:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3103:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3093:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3093:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "3093:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3057:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3082:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3064:17:11"
},
"nodeType": "YulFunctionCall",
"src": "3064:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3054:2:11"
},
"nodeType": "YulFunctionCall",
"src": "3054:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3047:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3047:43:11"
},
"nodeType": "YulIf",
"src": "3044:63:11"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3027:5:11",
"type": ""
}
],
"src": "2991:122:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3171:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3181:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3203:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3190:12:11"
},
"nodeType": "YulFunctionCall",
"src": "3190:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3181:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3246:5:11"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3219:26:11"
},
"nodeType": "YulFunctionCall",
"src": "3219:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "3219:33:11"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3149:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3157:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3165:5:11",
"type": ""
}
],
"src": "3119:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3330:263:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3376:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3378:77:11"
},
"nodeType": "YulFunctionCall",
"src": "3378:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "3378:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3351:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3360:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3347:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3347:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3372:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3343:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3343:32:11"
},
"nodeType": "YulIf",
"src": "3340:119:11"
},
{
"nodeType": "YulBlock",
"src": "3469:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3484:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3498:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3488:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3513:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3548:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3559:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3544:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3544:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3568:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3523:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3523:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3513:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3300:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3311:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3323:6:11",
"type": ""
}
],
"src": "3264:329:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3644:81:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3654:65:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3669:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3676:42:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3665:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3665:54:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3654:7:11"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3626:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3636:7:11",
"type": ""
}
],
"src": "3599:126:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3776:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3786:35:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3815:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3797:17:11"
},
"nodeType": "YulFunctionCall",
"src": "3797:24:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3786:7:11"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3758:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3768:7:11",
"type": ""
}
],
"src": "3731:96:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3898:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3915:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3938:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3920:17:11"
},
"nodeType": "YulFunctionCall",
"src": "3920:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3908:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3908:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "3908:37:11"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3886:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3893:3:11",
"type": ""
}
],
"src": "3833:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4055:124:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4065:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4077:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4088:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4073:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4073:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4065:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4145:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4158:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4169:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4154:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4154:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4101:43:11"
},
"nodeType": "YulFunctionCall",
"src": "4101:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "4101:71:11"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4027:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4039:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4050:4:11",
"type": ""
}
],
"src": "3957:222:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4228:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4285:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4294:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4287:6:11"
},
"nodeType": "YulFunctionCall",
"src": "4287:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "4287:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4251:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4276:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4258:17:11"
},
"nodeType": "YulFunctionCall",
"src": "4258:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4248:2:11"
},
"nodeType": "YulFunctionCall",
"src": "4248:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4241:6:11"
},
"nodeType": "YulFunctionCall",
"src": "4241:43:11"
},
"nodeType": "YulIf",
"src": "4238:63:11"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4221:5:11",
"type": ""
}
],
"src": "4185:122:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4365:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4375:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4397:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4384:12:11"
},
"nodeType": "YulFunctionCall",
"src": "4384:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4375:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4440:5:11"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "4413:26:11"
},
"nodeType": "YulFunctionCall",
"src": "4413:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "4413:33:11"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4343:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4351:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4359:5:11",
"type": ""
}
],
"src": "4313:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4541:391:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4587:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4589:77:11"
},
"nodeType": "YulFunctionCall",
"src": "4589:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "4589:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4562:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4571:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4558:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4558:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4583:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4554:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4554:32:11"
},
"nodeType": "YulIf",
"src": "4551:119:11"
},
{
"nodeType": "YulBlock",
"src": "4680:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4695:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4709:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4699:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4724:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4759:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4770:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4755:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4755:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4779:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4734:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4734:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4724:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4807:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4822:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4836:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4826:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4852:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4887:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4898:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4883:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4883:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4907:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4862:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4862:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4852:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4503:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4514:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4526:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4534:6:11",
"type": ""
}
],
"src": "4458:474:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5038:519:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5084:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5086:77:11"
},
"nodeType": "YulFunctionCall",
"src": "5086:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "5086:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5059:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5068:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5055:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5055:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5080:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5051:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5051:32:11"
},
"nodeType": "YulIf",
"src": "5048:119:11"
},
{
"nodeType": "YulBlock",
"src": "5177:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5192:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5206:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5196:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5221:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5256:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5267:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5252:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5252:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5276:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5231:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5231:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5221:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5304:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5319:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5333:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5323:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5349:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5384:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5395:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5380:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5380:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5404:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5359:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5359:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5349:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5432:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5447:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5461:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5451:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5477:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5512:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5523:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5508:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5508:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5532:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5487:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5487:53:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5477:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4992:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5003:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5015:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5023:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5031:6:11",
"type": ""
}
],
"src": "4938:619:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5629:263:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5675:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5677:77:11"
},
"nodeType": "YulFunctionCall",
"src": "5677:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "5677:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5650:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5659:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5646:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5646:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5671:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5642:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5642:32:11"
},
"nodeType": "YulIf",
"src": "5639:119:11"
},
{
"nodeType": "YulBlock",
"src": "5768:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5783:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5797:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5787:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5812:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5847:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5858:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5843:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5843:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5867:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5822:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5822:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5812:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5599:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5610:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5622:6:11",
"type": ""
}
],
"src": "5563:329:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5963:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5980:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6003:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5985:17:11"
},
"nodeType": "YulFunctionCall",
"src": "5985:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5973:6:11"
},
"nodeType": "YulFunctionCall",
"src": "5973:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "5973:37:11"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5951:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5958:3:11",
"type": ""
}
],
"src": "5898:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6120:124:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6130:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6142:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6153:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6138:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6138:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6130:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6210:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6223:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6234:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6219:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6219:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "6166:43:11"
},
"nodeType": "YulFunctionCall",
"src": "6166:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "6166:71:11"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6092:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6104:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6115:4:11",
"type": ""
}
],
"src": "6022:222:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6290:76:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6344:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6353:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6356:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6346:6:11"
},
"nodeType": "YulFunctionCall",
"src": "6346:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "6346:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6313:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6335:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6320:14:11"
},
"nodeType": "YulFunctionCall",
"src": "6320:21:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6310:2:11"
},
"nodeType": "YulFunctionCall",
"src": "6310:32:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6303:6:11"
},
"nodeType": "YulFunctionCall",
"src": "6303:40:11"
},
"nodeType": "YulIf",
"src": "6300:60:11"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6283:5:11",
"type": ""
}
],
"src": "6250:116:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6421:84:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6431:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6453:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6440:12:11"
},
"nodeType": "YulFunctionCall",
"src": "6440:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6431:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6493:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "6469:23:11"
},
"nodeType": "YulFunctionCall",
"src": "6469:30:11"
},
"nodeType": "YulExpressionStatement",
"src": "6469:30:11"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6399:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6407:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6415:5:11",
"type": ""
}
],
"src": "6372:133:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6591:388:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6637:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6639:77:11"
},
"nodeType": "YulFunctionCall",
"src": "6639:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "6639:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6612:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6621:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6608:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6608:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6633:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6604:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6604:32:11"
},
"nodeType": "YulIf",
"src": "6601:119:11"
},
{
"nodeType": "YulBlock",
"src": "6730:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6745:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6759:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6749:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6774:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6809:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6820:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6805:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6805:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6829:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6784:20:11"
},
"nodeType": "YulFunctionCall",
"src": "6784:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6774:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6857:115:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6872:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6886:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6876:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6902:60:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6934:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6945:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6930:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6930:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6954:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6912:17:11"
},
"nodeType": "YulFunctionCall",
"src": "6912:50:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6902:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6553:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6564:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6576:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6584:6:11",
"type": ""
}
],
"src": "6511:468:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7074:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7091:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7094:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7084:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7084:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "7084:12:11"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6985:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7197:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7214:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7217:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7207:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7207:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "7207:12:11"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7108:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7259:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7276:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7279:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7269:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7269:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "7269:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7373:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7376:4:11",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7366:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7366:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "7366:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7397:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7400:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7390:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7390:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "7390:15:11"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7231:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7460:238:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7470:58:11",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7492:6:11"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7522:4:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7500:21:11"
},
"nodeType": "YulFunctionCall",
"src": "7500:27:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7488:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7488:40:11"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7474:10:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7639:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7641:16:11"
},
"nodeType": "YulFunctionCall",
"src": "7641:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "7641:18:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7582:10:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7594:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7579:2:11"
},
"nodeType": "YulFunctionCall",
"src": "7579:34:11"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7618:10:11"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7630:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7615:2:11"
},
"nodeType": "YulFunctionCall",
"src": "7615:22:11"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7576:2:11"
},
"nodeType": "YulFunctionCall",
"src": "7576:62:11"
},
"nodeType": "YulIf",
"src": "7573:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7677:2:11",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7681:10:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7670:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7670:22:11"
},
"nodeType": "YulExpressionStatement",
"src": "7670:22:11"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7446:6:11",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7454:4:11",
"type": ""
}
],
"src": "7417:281:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7745:88:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7755:30:11",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "7765:18:11"
},
"nodeType": "YulFunctionCall",
"src": "7765:20:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7755:6:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7814:6:11"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7822:4:11"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "7794:19:11"
},
"nodeType": "YulFunctionCall",
"src": "7794:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "7794:33:11"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7729:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7738:6:11",
"type": ""
}
],
"src": "7704:129:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7905:241:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8010:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "8012:16:11"
},
"nodeType": "YulFunctionCall",
"src": "8012:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "8012:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7982:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7990:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7979:2:11"
},
"nodeType": "YulFunctionCall",
"src": "7979:30:11"
},
"nodeType": "YulIf",
"src": "7976:56:11"
},
{
"nodeType": "YulAssignment",
"src": "8042:37:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8072:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8050:21:11"
},
"nodeType": "YulFunctionCall",
"src": "8050:29:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8042:4:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8116:23:11",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8128:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8134:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8124:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8124:15:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8116:4:11"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7889:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7900:4:11",
"type": ""
}
],
"src": "7839:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8203:103:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8226:3:11"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8231:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8236:6:11"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "8213:12:11"
},
"nodeType": "YulFunctionCall",
"src": "8213:30:11"
},
"nodeType": "YulExpressionStatement",
"src": "8213:30:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8284:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8289:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8280:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8280:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8298:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8273:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8273:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "8273:27:11"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8185:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8190:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8195:6:11",
"type": ""
}
],
"src": "8152:154:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8395:327:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8405:74:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8471:6:11"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8430:40:11"
},
"nodeType": "YulFunctionCall",
"src": "8430:48:11"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "8414:15:11"
},
"nodeType": "YulFunctionCall",
"src": "8414:65:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8405:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8495:5:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8502:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8488:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8488:21:11"
},
"nodeType": "YulExpressionStatement",
"src": "8488:21:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8518:27:11",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8533:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8540:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8529:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8529:16:11"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8522:3:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8583:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "8585:77:11"
},
"nodeType": "YulFunctionCall",
"src": "8585:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "8585:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8564:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8569:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8560:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8560:16:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8578:3:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8557:2:11"
},
"nodeType": "YulFunctionCall",
"src": "8557:25:11"
},
"nodeType": "YulIf",
"src": "8554:112:11"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8699:3:11"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8704:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8709:6:11"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "8675:23:11"
},
"nodeType": "YulFunctionCall",
"src": "8675:41:11"
},
"nodeType": "YulExpressionStatement",
"src": "8675:41:11"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8368:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8373:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8381:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8389:5:11",
"type": ""
}
],
"src": "8312:410:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8802:277:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8851:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "8853:77:11"
},
"nodeType": "YulFunctionCall",
"src": "8853:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "8853:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8830:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8838:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8826:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8826:17:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8845:3:11"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8822:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8822:27:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8815:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8815:35:11"
},
"nodeType": "YulIf",
"src": "8812:122:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8943:34:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8970:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8957:12:11"
},
"nodeType": "YulFunctionCall",
"src": "8957:20:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8947:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8986:87:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9046:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9054:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9042:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9042:17:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9061:6:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9069:3:11"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8995:46:11"
},
"nodeType": "YulFunctionCall",
"src": "8995:78:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8986:5:11"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8780:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8788:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8796:5:11",
"type": ""
}
],
"src": "8741:338:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9211:817:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9258:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9260:77:11"
},
"nodeType": "YulFunctionCall",
"src": "9260:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "9260:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9232:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9241:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9228:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9228:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9253:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9224:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9224:33:11"
},
"nodeType": "YulIf",
"src": "9221:120:11"
},
{
"nodeType": "YulBlock",
"src": "9351:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9366:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9380:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9370:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9395:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9430:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9441:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9426:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9426:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9450:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9405:20:11"
},
"nodeType": "YulFunctionCall",
"src": "9405:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9395:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9478:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9493:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9507:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9497:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9523:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9558:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9569:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9554:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9554:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9578:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9533:20:11"
},
"nodeType": "YulFunctionCall",
"src": "9533:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9523:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9606:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9621:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9635:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9625:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9651:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9686:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9697:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9682:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9682:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9706:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9661:20:11"
},
"nodeType": "YulFunctionCall",
"src": "9661:53:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9651:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9734:287:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9749:46:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9780:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9791:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9776:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9776:18:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9763:12:11"
},
"nodeType": "YulFunctionCall",
"src": "9763:32:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9753:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9842:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "9844:77:11"
},
"nodeType": "YulFunctionCall",
"src": "9844:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "9844:79:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9814:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9822:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9811:2:11"
},
"nodeType": "YulFunctionCall",
"src": "9811:30:11"
},
"nodeType": "YulIf",
"src": "9808:117:11"
},
{
"nodeType": "YulAssignment",
"src": "9939:72:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9983:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9994:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9979:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9979:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10003:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9949:29:11"
},
"nodeType": "YulFunctionCall",
"src": "9949:62:11"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "9939:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9157:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9168:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9180:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9188:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9196:6:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "9204:6:11",
"type": ""
}
],
"src": "9085:943:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10117:391:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10163:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "10165:77:11"
},
"nodeType": "YulFunctionCall",
"src": "10165:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "10165:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10138:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10147:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10134:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10134:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10159:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10130:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10130:32:11"
},
"nodeType": "YulIf",
"src": "10127:119:11"
},
{
"nodeType": "YulBlock",
"src": "10256:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10271:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10285:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10275:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10300:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10335:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10346:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10331:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10331:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10355:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10310:20:11"
},
"nodeType": "YulFunctionCall",
"src": "10310:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10300:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "10383:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10398:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10412:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10402:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10428:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10463:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10474:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10459:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10459:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10483:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10438:20:11"
},
"nodeType": "YulFunctionCall",
"src": "10438:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10428:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10079:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10090:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10102:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10110:6:11",
"type": ""
}
],
"src": "10034:474:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10542:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10559:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10562:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10552:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10552:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "10552:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10656:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10659:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10649:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10649:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "10649:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10680:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10683:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10673:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10673:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "10673:15:11"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "10514:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10751:269:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10761:22:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10775:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10781:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10771:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10771:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10761:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10792:38:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10822:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10828:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10818:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10818:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10796:18:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10869:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10883:27:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10897:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10905:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10893:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10893:17:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10883:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10849:18:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10842:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10842:26:11"
},
"nodeType": "YulIf",
"src": "10839:81:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10972:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10986:16:11"
},
"nodeType": "YulFunctionCall",
"src": "10986:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "10986:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10936:18:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10959:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10967:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10956:2:11"
},
"nodeType": "YulFunctionCall",
"src": "10956:14:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10933:2:11"
},
"nodeType": "YulFunctionCall",
"src": "10933:38:11"
},
"nodeType": "YulIf",
"src": "10930:84:11"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10735:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10744:6:11",
"type": ""
}
],
"src": "10700:320:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11132:114:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11154:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11162:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11150:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11150:14:11"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11166:34:11",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11143:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11143:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "11143:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11222:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11230:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11218:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11218:15:11"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11235:3:11",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11211:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11211:28:11"
},
"nodeType": "YulExpressionStatement",
"src": "11211:28:11"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11124:6:11",
"type": ""
}
],
"src": "11026:220:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11398:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11408:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11474:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11479:2:11",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11415:58:11"
},
"nodeType": "YulFunctionCall",
"src": "11415:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11408:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11580:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "11491:88:11"
},
"nodeType": "YulFunctionCall",
"src": "11491:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "11491:93:11"
},
{
"nodeType": "YulAssignment",
"src": "11593:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11604:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11609:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11600:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11600:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11593:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11386:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11394:3:11",
"type": ""
}
],
"src": "11252:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11795:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11805:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11817:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11828:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11813:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11813:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11805:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11852:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11863:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11848:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11848:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11871:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11877:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11867:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11867:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11841:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11841:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "11841:47:11"
},
{
"nodeType": "YulAssignment",
"src": "11897:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12031:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11905:124:11"
},
"nodeType": "YulFunctionCall",
"src": "11905:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11897:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11775:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11790:4:11",
"type": ""
}
],
"src": "11624:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12155:142:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12177:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12185:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12173:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12173:14:11"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12189:34:11",
"type": "",
"value": "ERC721: approve caller is not to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12166:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12166:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "12166:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12245:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12253:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12241:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12241:15:11"
},
{
"hexValue": "6b656e206f776e6572206f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12258:31:11",
"type": "",
"value": "ken owner or approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12234:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12234:56:11"
},
"nodeType": "YulExpressionStatement",
"src": "12234:56:11"
}
]
},
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12147:6:11",
"type": ""
}
],
"src": "12049:248:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12449:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12459:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12525:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12530:2:11",
"type": "",
"value": "61"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12466:58:11"
},
"nodeType": "YulFunctionCall",
"src": "12466:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12459:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12631:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulIdentifier",
"src": "12542:88:11"
},
"nodeType": "YulFunctionCall",
"src": "12542:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "12542:93:11"
},
{
"nodeType": "YulAssignment",
"src": "12644:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12655:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12660:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12651:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12651:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12644:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12437:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12445:3:11",
"type": ""
}
],
"src": "12303:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12846:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12856:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12868:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12879:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12864:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12864:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12856:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12903:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12914:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12899:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12899:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12922:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12928:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12918:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12918:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12892:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12892:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "12892:47:11"
},
{
"nodeType": "YulAssignment",
"src": "12948:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13082:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12956:124:11"
},
"nodeType": "YulFunctionCall",
"src": "12956:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12948:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12826:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12841:4:11",
"type": ""
}
],
"src": "12675:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13206:126:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13228:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13236:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13224:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13224:14:11"
},
{
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13240:34:11",
"type": "",
"value": "ERC721: caller is not token owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13217:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13217:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "13217:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13296:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13304:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13292:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13292:15:11"
},
{
"hexValue": "72206f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13309:15:11",
"type": "",
"value": "r or approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13285:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13285:40:11"
},
"nodeType": "YulExpressionStatement",
"src": "13285:40:11"
}
]
},
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13198:6:11",
"type": ""
}
],
"src": "13100:232:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13484:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13494:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13560:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13565:2:11",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13501:58:11"
},
"nodeType": "YulFunctionCall",
"src": "13501:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13494:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13666:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulIdentifier",
"src": "13577:88:11"
},
"nodeType": "YulFunctionCall",
"src": "13577:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "13577:93:11"
},
{
"nodeType": "YulAssignment",
"src": "13679:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13690:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13695:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13686:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13686:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13679:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13472:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13480:3:11",
"type": ""
}
],
"src": "13338:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13881:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13891:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13903:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13914:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13899:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13899:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13891:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13938:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13949:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13934:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13934:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13957:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13963:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13953:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13953:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13927:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13927:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "13927:47:11"
},
{
"nodeType": "YulAssignment",
"src": "13983:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14117:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13991:124:11"
},
"nodeType": "YulFunctionCall",
"src": "13991:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13983:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13861:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13876:4:11",
"type": ""
}
],
"src": "13710:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14241:68:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14263:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14271:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14259:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14259:14:11"
},
{
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14275:26:11",
"type": "",
"value": "ERC721: invalid token ID"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14252:6:11"
},
"nodeType": "YulFunctionCall",
"src": "14252:50:11"
},
"nodeType": "YulExpressionStatement",
"src": "14252:50:11"
}
]
},
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14233:6:11",
"type": ""
}
],
"src": "14135:174:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14461:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14471:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14537:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14542:2:11",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14478:58:11"
},
"nodeType": "YulFunctionCall",
"src": "14478:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14471:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14643:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulIdentifier",
"src": "14554:88:11"
},
"nodeType": "YulFunctionCall",
"src": "14554:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "14554:93:11"
},
{
"nodeType": "YulAssignment",
"src": "14656:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14667:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14672:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14663:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14663:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14656:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14449:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14457:3:11",
"type": ""
}
],
"src": "14315:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14858:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14868:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14880:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14891:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14876:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14876:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14868:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14915:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14926:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14911:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14911:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14934:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14940:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14930:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14930:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14904:6:11"
},
"nodeType": "YulFunctionCall",
"src": "14904:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "14904:47:11"
},
{
"nodeType": "YulAssignment",
"src": "14960:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15094:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14968:124:11"
},
"nodeType": "YulFunctionCall",
"src": "14968:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14960:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14838:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14853:4:11",
"type": ""
}
],
"src": "14687:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15218:122:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15240:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15248:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15236:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15236:14:11"
},
{
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15252:34:11",
"type": "",
"value": "ERC721: address zero is not a va"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15229:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15229:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "15229:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15308:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15316:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15304:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15304:15:11"
},
{
"hexValue": "6c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15321:11:11",
"type": "",
"value": "lid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15297:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15297:36:11"
},
"nodeType": "YulExpressionStatement",
"src": "15297:36:11"
}
]
},
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15210:6:11",
"type": ""
}
],
"src": "15112:228:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15492:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15502:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15568:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15573:2:11",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15509:58:11"
},
"nodeType": "YulFunctionCall",
"src": "15509:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15502:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15674:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulIdentifier",
"src": "15585:88:11"
},
"nodeType": "YulFunctionCall",
"src": "15585:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "15585:93:11"
},
{
"nodeType": "YulAssignment",
"src": "15687:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15698:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15703:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15694:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15694:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15687:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15480:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15488:3:11",
"type": ""
}
],
"src": "15346:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15889:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15899:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15911:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15922:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15907:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15907:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15899:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15946:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15957:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15942:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15942:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15965:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15971:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15961:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15961:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15935:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15935:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "15935:47:11"
},
{
"nodeType": "YulAssignment",
"src": "15991:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16125:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15999:124:11"
},
"nodeType": "YulFunctionCall",
"src": "15999:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15991:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15869:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15884:4:11",
"type": ""
}
],
"src": "15718:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16257:34:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16267:18:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16282:3:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "16267:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16229:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16234:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "16245:11:11",
"type": ""
}
],
"src": "16143:148:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16407:267:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16417:53:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16464:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "16431:32:11"
},
"nodeType": "YulFunctionCall",
"src": "16431:39:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16421:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "16479:96:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16563:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16568:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16486:76:11"
},
"nodeType": "YulFunctionCall",
"src": "16486:89:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16479:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16610:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16617:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16606:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16606:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16624:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16629:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "16584:21:11"
},
"nodeType": "YulFunctionCall",
"src": "16584:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "16584:52:11"
},
{
"nodeType": "YulAssignment",
"src": "16645:23:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16656:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16661:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16652:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16652:16:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16645:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16388:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16395:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16403:3:11",
"type": ""
}
],
"src": "16297:377:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16864:251:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16875:102:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16964:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16973:3:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16882:81:11"
},
"nodeType": "YulFunctionCall",
"src": "16882:95:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16875:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16987:102:11",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "17076:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17085:3:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16994:81:11"
},
"nodeType": "YulFunctionCall",
"src": "16994:95:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16987:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "17099:10:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17106:3:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17099:3:11"
}
]
}
]
},
"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": "16835:3:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "16841:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16849:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16860:3:11",
"type": ""
}
],
"src": "16680:435:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17227:118:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17249:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17257:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17245:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17245:14:11"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17261:34:11",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17238:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17238:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "17238:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17317:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17325:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17313:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17313:15:11"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17330:7:11",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17306:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17306:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "17306:32:11"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17219:6:11",
"type": ""
}
],
"src": "17121:224:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17497:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17507:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17573:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17578:2:11",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17514:58:11"
},
"nodeType": "YulFunctionCall",
"src": "17514:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17507:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17679:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "17590:88:11"
},
"nodeType": "YulFunctionCall",
"src": "17590:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "17590:93:11"
},
{
"nodeType": "YulAssignment",
"src": "17692:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17703:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17708:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17699:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17699:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17692:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17485:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17493:3:11",
"type": ""
}
],
"src": "17351:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17894:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17904:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17916:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17927:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17912:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17912:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17904:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17951:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17962:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17947:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17947:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17970:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17976:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17966:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17966:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17940:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17940:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "17940:47:11"
},
{
"nodeType": "YulAssignment",
"src": "17996:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18130:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18004:124:11"
},
"nodeType": "YulFunctionCall",
"src": "18004:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17996:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17874:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17889:4:11",
"type": ""
}
],
"src": "17723:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18254:117:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18276:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18284:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18272:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18272:14:11"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18288:34:11",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18265:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18265:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "18265:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18344:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18352:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18340:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18340:15:11"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18357:6:11",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18333:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18333:31:11"
},
"nodeType": "YulExpressionStatement",
"src": "18333:31:11"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18246:6:11",
"type": ""
}
],
"src": "18148:223:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18523:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18533:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18599:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18604:2:11",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18540:58:11"
},
"nodeType": "YulFunctionCall",
"src": "18540:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18533:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18705:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "18616:88:11"
},
"nodeType": "YulFunctionCall",
"src": "18616:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "18616:93:11"
},
{
"nodeType": "YulAssignment",
"src": "18718:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18729:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18734:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18725:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18725:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18718:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18511:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18519:3:11",
"type": ""
}
],
"src": "18377:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18920:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18930:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18942:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18953:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18938:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18938:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18930:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18977:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18988:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18973:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18973:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18996:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19002:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18992:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18992:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18966:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18966:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "18966:47:11"
},
{
"nodeType": "YulAssignment",
"src": "19022:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19156:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19030:124:11"
},
"nodeType": "YulFunctionCall",
"src": "19030:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19022:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18900:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18915:4:11",
"type": ""
}
],
"src": "18749:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19280:69:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19302:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19310:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19298:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19298:14:11"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19314:27:11",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19291:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19291:51:11"
},
"nodeType": "YulExpressionStatement",
"src": "19291:51:11"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19272:6:11",
"type": ""
}
],
"src": "19174:175:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19501:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19511:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19577:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19582:2:11",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19518:58:11"
},
"nodeType": "YulFunctionCall",
"src": "19518:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19511:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19683:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "19594:88:11"
},
"nodeType": "YulFunctionCall",
"src": "19594:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "19594:93:11"
},
{
"nodeType": "YulAssignment",
"src": "19696:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19707:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19712:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19703:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19703:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19696:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19489:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19497:3:11",
"type": ""
}
],
"src": "19355:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19898:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19908:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19920:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19931:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19916:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19916:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19908:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19955:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19966:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19951:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19951:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19974:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19980:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19970:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19970:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19944:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19944:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "19944:47:11"
},
{
"nodeType": "YulAssignment",
"src": "20000:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20134:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20008:124:11"
},
"nodeType": "YulFunctionCall",
"src": "20008:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20000:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19878:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19893:4:11",
"type": ""
}
],
"src": "19727:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20258:131:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20280:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20288:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20276:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20276:14:11"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20292:34:11",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20269:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20269:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "20269:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20348:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20356:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20344:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20344:15:11"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20361:20:11",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20337:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20337:45:11"
},
"nodeType": "YulExpressionStatement",
"src": "20337:45:11"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20250:6:11",
"type": ""
}
],
"src": "20152:237:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20541:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20551:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20617:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20622:2:11",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20558:58:11"
},
"nodeType": "YulFunctionCall",
"src": "20558:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20551:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20723:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "20634:88:11"
},
"nodeType": "YulFunctionCall",
"src": "20634:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "20634:93:11"
},
{
"nodeType": "YulAssignment",
"src": "20736:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20747:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20752:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20743:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20743:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20736:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20529:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20537:3:11",
"type": ""
}
],
"src": "20395:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20938:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20948:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20960:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20971:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20956:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20956:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20948:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20995:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21006:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20991:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20991:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21014:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21020:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21010:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21010:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20984:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20984:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "20984:47:11"
},
{
"nodeType": "YulAssignment",
"src": "21040:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21174:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21048:124:11"
},
"nodeType": "YulFunctionCall",
"src": "21048:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21040:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20918:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20933:4:11",
"type": ""
}
],
"src": "20767:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21220:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21237:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21240:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21230:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21230:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "21230:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21334:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21337:4:11",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21327:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21327:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "21327:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21358:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21361:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "21351:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21351:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "21351:15:11"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "21192:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21436:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21447:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21463:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "21457:5:11"
},
"nodeType": "YulFunctionCall",
"src": "21457:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21447:6:11"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21419:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21429:6:11",
"type": ""
}
],
"src": "21378:98:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21577:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21594:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21599:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21587:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21587:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "21587:19:11"
},
{
"nodeType": "YulAssignment",
"src": "21615:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21634:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21639:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21630:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21630:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "21615:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21549:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21554:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "21565:11:11",
"type": ""
}
],
"src": "21482:168:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21746:270:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "21756:52:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21802:5:11"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "21770:31:11"
},
"nodeType": "YulFunctionCall",
"src": "21770:38:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21760:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "21817:77:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21882:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21887:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21824:57:11"
},
"nodeType": "YulFunctionCall",
"src": "21824:70:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21817:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21929:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21936:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21925:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21925:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21943:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21948:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "21903:21:11"
},
"nodeType": "YulFunctionCall",
"src": "21903:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "21903:52:11"
},
{
"nodeType": "YulAssignment",
"src": "21964:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21975:3:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22002:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "21980:21:11"
},
"nodeType": "YulFunctionCall",
"src": "21980:29:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21971:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21971:39:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21964:3:11"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21727:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21734:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21742:3:11",
"type": ""
}
],
"src": "21656:360:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22222:440:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22232:27:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22244:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22255:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22240:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22240:19:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22232:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22313:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22326:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22337:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22322:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22322:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "22269:43:11"
},
"nodeType": "YulFunctionCall",
"src": "22269:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "22269:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "22394:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22407:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22418:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22403:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22403:18:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "22350:43:11"
},
"nodeType": "YulFunctionCall",
"src": "22350:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "22350:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "22476:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22489:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22500:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22485:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22485:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22432:43:11"
},
"nodeType": "YulFunctionCall",
"src": "22432:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "22432:72:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22525:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22536:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22521:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22521:18:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22545:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22551:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22541:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22541:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22514:6:11"
},
"nodeType": "YulFunctionCall",
"src": "22514:48:11"
},
"nodeType": "YulExpressionStatement",
"src": "22514:48:11"
},
{
"nodeType": "YulAssignment",
"src": "22571:84:11",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "22641:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22650:4:11"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22579:61:11"
},
"nodeType": "YulFunctionCall",
"src": "22579:76:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22571:4:11"
}
]
}
]
},
"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": "22170:9:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "22182:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "22190:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "22198:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22206:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22217:4:11",
"type": ""
}
],
"src": "22022:640:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22730:79:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22740:22:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "22755:6:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22749:5:11"
},
"nodeType": "YulFunctionCall",
"src": "22749:13:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22740:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22797:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "22771:25:11"
},
"nodeType": "YulFunctionCall",
"src": "22771:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "22771:32:11"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "22708:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22716:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22724:5:11",
"type": ""
}
],
"src": "22668:141:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22891:273:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "22937:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "22939:77:11"
},
"nodeType": "YulFunctionCall",
"src": "22939:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "22939:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "22912:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22921:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22908:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22908:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22933:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "22904:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22904:32:11"
},
"nodeType": "YulIf",
"src": "22901:119:11"
},
{
"nodeType": "YulBlock",
"src": "23030:127:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "23045:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "23059:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "23049:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "23074:73:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23119:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "23130:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23115:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23115:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "23139:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "23084:30:11"
},
"nodeType": "YulFunctionCall",
"src": "23084:63:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23074:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22861:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "22872:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22884:6:11",
"type": ""
}
],
"src": "22815:349:11"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\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 abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\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 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 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_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\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_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function 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 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_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 store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not to\")\n\n mstore(add(memPtr, 32), \"ken owner or approved for all\")\n\n }\n\n function abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 61)\n store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__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_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: caller is not token owne\")\n\n mstore(add(memPtr, 32), \"r or approved\")\n\n }\n\n function abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 45)\n store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__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_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: invalid token ID\")\n\n }\n\n function abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__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_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: address zero is not a va\")\n\n mstore(add(memPtr, 32), \"lid owner\")\n\n }\n\n function abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__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_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack( tail)\n\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 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_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 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 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_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 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 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_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 store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\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_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 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 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_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 panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function array_length_t_bytes_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 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_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_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e99190611513565b6102bc565b6040516100fb919061155b565b60405180910390f35b61010c61039e565b604051610119919061160f565b60405180910390f35b61013c60048036038101906101379190611667565b610430565b60405161014991906116d5565b60405180910390f35b61016c6004803603810190610167919061171c565b610476565b005b6101886004803603810190610183919061175c565b61058e565b005b6101a4600480360381019061019f919061175c565b6105ee565b005b6101c060048036038101906101bb9190611667565b61060e565b6040516101cd91906116d5565b60405180910390f35b6101f060048036038101906101eb91906117af565b610695565b6040516101fd91906117eb565b60405180910390f35b61020e61074d565b60405161021b919061160f565b60405180910390f35b61023e60048036038101906102399190611832565b6107df565b005b61025a600480360381019061025591906119a7565b6107f5565b005b61027660048036038101906102719190611667565b610857565b604051610283919061160f565b60405180910390f35b6102a660048036038101906102a19190611a2a565b6108bf565b6040516102b3919061155b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610397575061039682610953565b5b9050919050565b6060600080546103ad90611a99565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611a99565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b826109bd565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104818261060e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104e990611b3d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610511610a08565b73ffffffffffffffffffffffffffffffffffffffff161480610540575061053f8161053a610a08565b6108bf565b5b61057f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057690611bcf565b60405180910390fd5b6105898383610a10565b505050565b61059f610599610a08565b82610ac9565b6105de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d590611c61565b60405180910390fd5b6105e9838383610b5e565b505050565b610609838383604051806020016040528060008152506107f5565b505050565b60008061061a83610e58565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561068c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068390611ccd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610706576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fd90611d5f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606001805461075c90611a99565b80601f016020809104026020016040519081016040528092919081815260200182805461078890611a99565b80156107d55780601f106107aa576101008083540402835291602001916107d5565b820191906000526020600020905b8154815290600101906020018083116107b857829003601f168201915b5050505050905090565b6107f16107ea610a08565b8383610e95565b5050565b610806610800610a08565b83610ac9565b610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90611c61565b60405180910390fd5b61085184848484611002565b50505050565b6060610862826109bd565b600061086c61105e565b9050600081511161088c57604051806020016040528060008152506108b7565b8061089684611075565b6040516020016108a7929190611dbb565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6109c68161114d565b610a05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fc90611ccd565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610a838361060e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ad58361060e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610b175750610b1681856108bf565b5b80610b5557508373ffffffffffffffffffffffffffffffffffffffff16610b3d84610430565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610b7e8261060e565b73ffffffffffffffffffffffffffffffffffffffff1614610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb90611e51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90611ee3565b60405180910390fd5b610c51838383600161118e565b8273ffffffffffffffffffffffffffffffffffffffff16610c718261060e565b73ffffffffffffffffffffffffffffffffffffffff1614610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611e51565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e538383836001611194565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611f4f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff5919061155b565b60405180910390a3505050565b61100d848484610b5e565b6110198484848461119a565b611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f90611fe1565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000600161108484611331565b01905060008167ffffffffffffffff8111156110a3576110a261187c565b5b6040519080825280601f01601f1916602001820160405280156110d55781602001600182028036833780820191505090505b509050600082602001820190505b600115611142578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161112c5761112b612001565b5b049450600085141561113d57611142565b6110e3565b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661116f83610e58565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b60006111bb8473ffffffffffffffffffffffffffffffffffffffff16611484565b15611324578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026111e4610a08565b8786866040518563ffffffff1660e01b81526004016112069493929190612085565b602060405180830381600087803b15801561122057600080fd5b505af192505050801561125157506040513d601f19601f8201168201806040525081019061124e91906120e6565b60015b6112d4573d8060008114611281576040519150601f19603f3d011682016040523d82523d6000602084013e611286565b606091505b506000815114156112cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c390611fe1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611329565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061138f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161138557611384612001565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106113cc576d04ee2d6d415b85acef810000000083816113c2576113c1612001565b5b0492506020810190505b662386f26fc1000083106113fb57662386f26fc1000083816113f1576113f0612001565b5b0492506010810190505b6305f5e1008310611424576305f5e100838161141a57611419612001565b5b0492506008810190505b612710831061144957612710838161143f5761143e612001565b5b0492506004810190505b6064831061146c576064838161146257611461612001565b5b0492506002810190505b600a831061147b576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6114f0816114bb565b81146114fb57600080fd5b50565b60008135905061150d816114e7565b92915050565b600060208284031215611529576115286114b1565b5b6000611537848285016114fe565b91505092915050565b60008115159050919050565b61155581611540565b82525050565b6000602082019050611570600083018461154c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156115b0578082015181840152602081019050611595565b838111156115bf576000848401525b50505050565b6000601f19601f8301169050919050565b60006115e182611576565b6115eb8185611581565b93506115fb818560208601611592565b611604816115c5565b840191505092915050565b6000602082019050818103600083015261162981846115d6565b905092915050565b6000819050919050565b61164481611631565b811461164f57600080fd5b50565b6000813590506116618161163b565b92915050565b60006020828403121561167d5761167c6114b1565b5b600061168b84828501611652565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116bf82611694565b9050919050565b6116cf816116b4565b82525050565b60006020820190506116ea60008301846116c6565b92915050565b6116f9816116b4565b811461170457600080fd5b50565b600081359050611716816116f0565b92915050565b60008060408385031215611733576117326114b1565b5b600061174185828601611707565b925050602061175285828601611652565b9150509250929050565b600080600060608486031215611775576117746114b1565b5b600061178386828701611707565b935050602061179486828701611707565b92505060406117a586828701611652565b9150509250925092565b6000602082840312156117c5576117c46114b1565b5b60006117d384828501611707565b91505092915050565b6117e581611631565b82525050565b600060208201905061180060008301846117dc565b92915050565b61180f81611540565b811461181a57600080fd5b50565b60008135905061182c81611806565b92915050565b60008060408385031215611849576118486114b1565b5b600061185785828601611707565b92505060206118688582860161181d565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6118b4826115c5565b810181811067ffffffffffffffff821117156118d3576118d261187c565b5b80604052505050565b60006118e66114a7565b90506118f282826118ab565b919050565b600067ffffffffffffffff8211156119125761191161187c565b5b61191b826115c5565b9050602081019050919050565b82818337600083830152505050565b600061194a611945846118f7565b6118dc565b90508281526020810184848401111561196657611965611877565b5b611971848285611928565b509392505050565b600082601f83011261198e5761198d611872565b5b813561199e848260208601611937565b91505092915050565b600080600080608085870312156119c1576119c06114b1565b5b60006119cf87828801611707565b94505060206119e087828801611707565b93505060406119f187828801611652565b925050606085013567ffffffffffffffff811115611a1257611a116114b6565b5b611a1e87828801611979565b91505092959194509250565b60008060408385031215611a4157611a406114b1565b5b6000611a4f85828601611707565b9250506020611a6085828601611707565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ab157607f821691505b60208210811415611ac557611ac4611a6a565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b27602183611581565b9150611b3282611acb565b604082019050919050565b60006020820190508181036000830152611b5681611b1a565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000611bb9603d83611581565b9150611bc482611b5d565b604082019050919050565b60006020820190508181036000830152611be881611bac565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000611c4b602d83611581565b9150611c5682611bef565b604082019050919050565b60006020820190508181036000830152611c7a81611c3e565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000611cb7601883611581565b9150611cc282611c81565b602082019050919050565b60006020820190508181036000830152611ce681611caa565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000611d49602983611581565b9150611d5482611ced565b604082019050919050565b60006020820190508181036000830152611d7881611d3c565b9050919050565b600081905092915050565b6000611d9582611576565b611d9f8185611d7f565b9350611daf818560208601611592565b80840191505092915050565b6000611dc78285611d8a565b9150611dd38284611d8a565b91508190509392505050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000611e3b602583611581565b9150611e4682611ddf565b604082019050919050565b60006020820190508181036000830152611e6a81611e2e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ecd602483611581565b9150611ed882611e71565b604082019050919050565b60006020820190508181036000830152611efc81611ec0565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000611f39601983611581565b9150611f4482611f03565b602082019050919050565b60006020820190508181036000830152611f6881611f2c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000611fcb603283611581565b9150611fd682611f6f565b604082019050919050565b60006020820190508181036000830152611ffa81611fbe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061205782612030565b612061818561203b565b9350612071818560208601611592565b61207a816115c5565b840191505092915050565b600060808201905061209a60008301876116c6565b6120a760208301866116c6565b6120b460408301856117dc565b81810360608301526120c6818461204c565b905095945050505050565b6000815190506120e0816114e7565b92915050565b6000602082840312156120fc576120fb6114b1565b5b600061210a848285016120d1565b9150509291505056fea264697066735822122007744a118a0f08902e52dc2ef00962c180fac745ff59182486d158d552bc12bc64736f6c63430008090033",
"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 0x1513 JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x155B 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 0x160F 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 0x1667 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x16D5 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 0x171C JUMP JUMPDEST PUSH2 0x476 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x175C JUMP JUMPDEST PUSH2 0x58E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x175C JUMP JUMPDEST PUSH2 0x5EE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x1667 JUMP JUMPDEST PUSH2 0x60E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x16D5 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 0x17AF JUMP JUMPDEST PUSH2 0x695 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x17EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x74D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x160F 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 0x1832 JUMP JUMPDEST PUSH2 0x7DF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x19A7 JUMP JUMPDEST PUSH2 0x7F5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x1667 JUMP JUMPDEST PUSH2 0x857 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x160F 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 0x1A2A JUMP JUMPDEST PUSH2 0x8BF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x155B 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 0x953 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1A99 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 0x1A99 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 0x9BD JUMP 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 0x481 DUP3 PUSH2 0x60E JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x4F2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4E9 SWAP1 PUSH2 0x1B3D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x511 PUSH2 0xA08 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x540 JUMPI POP PUSH2 0x53F DUP2 PUSH2 0x53A PUSH2 0xA08 JUMP JUMPDEST PUSH2 0x8BF JUMP JUMPDEST JUMPDEST PUSH2 0x57F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x576 SWAP1 PUSH2 0x1BCF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x589 DUP4 DUP4 PUSH2 0xA10 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x59F PUSH2 0x599 PUSH2 0xA08 JUMP JUMPDEST DUP3 PUSH2 0xAC9 JUMP JUMPDEST PUSH2 0x5DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5D5 SWAP1 PUSH2 0x1C61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5E9 DUP4 DUP4 DUP4 PUSH2 0xB5E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x609 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x7F5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x61A DUP4 PUSH2 0xE58 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x68C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x683 SWAP1 PUSH2 0x1CCD 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 0x706 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6FD SWAP1 PUSH2 0x1D5F 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 0x75C SWAP1 PUSH2 0x1A99 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 0x788 SWAP1 PUSH2 0x1A99 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7D5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x7AA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7D5 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 0x7B8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x7F1 PUSH2 0x7EA PUSH2 0xA08 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xE95 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x806 PUSH2 0x800 PUSH2 0xA08 JUMP JUMPDEST DUP4 PUSH2 0xAC9 JUMP JUMPDEST PUSH2 0x845 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x83C SWAP1 PUSH2 0x1C61 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x851 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1002 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x862 DUP3 PUSH2 0x9BD JUMP JUMPDEST PUSH1 0x0 PUSH2 0x86C PUSH2 0x105E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x88C JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x8B7 JUMP JUMPDEST DUP1 PUSH2 0x896 DUP5 PUSH2 0x1075 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x8A7 SWAP3 SWAP2 SWAP1 PUSH2 0x1DBB 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 PUSH2 0x9C6 DUP2 PUSH2 0x114D JUMP JUMPDEST PUSH2 0xA05 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9FC SWAP1 PUSH2 0x1CCD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 0xA83 DUP4 PUSH2 0x60E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xAD5 DUP4 PUSH2 0x60E JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xB17 JUMPI POP PUSH2 0xB16 DUP2 DUP6 PUSH2 0x8BF JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xB55 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB3D DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB7E DUP3 PUSH2 0x60E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xBD4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBCB SWAP1 PUSH2 0x1E51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xC44 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3B SWAP1 PUSH2 0x1EE3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC51 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x118E JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC71 DUP3 PUSH2 0x60E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xCC7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCBE SWAP1 PUSH2 0x1E51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE 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 SUB 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 ADD 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 0xE53 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1194 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 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 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEFB SWAP1 PUSH2 0x1F4F 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 0xFF5 SWAP2 SWAP1 PUSH2 0x155B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x100D DUP5 DUP5 DUP5 PUSH2 0xB5E JUMP JUMPDEST PUSH2 0x1019 DUP5 DUP5 DUP5 DUP5 PUSH2 0x119A JUMP JUMPDEST PUSH2 0x1058 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x104F SWAP1 PUSH2 0x1FE1 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 PUSH1 0x1 PUSH2 0x1084 DUP5 PUSH2 0x1331 JUMP JUMPDEST ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x10A3 JUMPI PUSH2 0x10A2 PUSH2 0x187C JUMP JUMPDEST 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 0x10D5 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 PUSH1 0x0 DUP3 PUSH1 0x20 ADD DUP3 ADD SWAP1 POP JUMPDEST PUSH1 0x1 ISZERO PUSH2 0x1142 JUMPI DUP1 DUP1 PUSH1 0x1 SWAP1 SUB SWAP2 POP POP PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DUP2 PUSH2 0x112C JUMPI PUSH2 0x112B PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP5 POP PUSH1 0x0 DUP6 EQ ISZERO PUSH2 0x113D JUMPI PUSH2 0x1142 JUMP JUMPDEST PUSH2 0x10E3 JUMP JUMPDEST DUP2 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x116F DUP4 PUSH2 0xE58 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11BB DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1484 JUMP JUMPDEST ISZERO PUSH2 0x1324 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x11E4 PUSH2 0xA08 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1206 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2085 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1220 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1251 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 0x124E SWAP2 SWAP1 PUSH2 0x20E6 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x12D4 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1281 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 0x1286 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x12CC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12C3 SWAP1 PUSH2 0x1FE1 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 0x1329 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 LT PUSH2 0x138F JUMPI PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 DUP2 PUSH2 0x1385 JUMPI PUSH2 0x1384 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x13CC JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DUP2 PUSH2 0x13C2 JUMPI PUSH2 0x13C1 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x13FB JUMPI PUSH7 0x2386F26FC10000 DUP4 DUP2 PUSH2 0x13F1 JUMPI PUSH2 0x13F0 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x1424 JUMPI PUSH4 0x5F5E100 DUP4 DUP2 PUSH2 0x141A JUMPI PUSH2 0x1419 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x1449 JUMPI PUSH2 0x2710 DUP4 DUP2 PUSH2 0x143F JUMPI PUSH2 0x143E PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x146C JUMPI PUSH1 0x64 DUP4 DUP2 PUSH2 0x1462 JUMPI PUSH2 0x1461 PUSH2 0x2001 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x147B JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x14F0 DUP2 PUSH2 0x14BB JUMP JUMPDEST DUP2 EQ PUSH2 0x14FB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x150D DUP2 PUSH2 0x14E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1529 JUMPI PUSH2 0x1528 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1537 DUP5 DUP3 DUP6 ADD PUSH2 0x14FE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1555 DUP2 PUSH2 0x1540 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1570 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x154C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x15B0 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1595 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x15BF JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15E1 DUP3 PUSH2 0x1576 JUMP JUMPDEST PUSH2 0x15EB DUP2 DUP6 PUSH2 0x1581 JUMP JUMPDEST SWAP4 POP PUSH2 0x15FB DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x1604 DUP2 PUSH2 0x15C5 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1629 DUP2 DUP5 PUSH2 0x15D6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1644 DUP2 PUSH2 0x1631 JUMP JUMPDEST DUP2 EQ PUSH2 0x164F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1661 DUP2 PUSH2 0x163B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x167D JUMPI PUSH2 0x167C PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x168B DUP5 DUP3 DUP6 ADD PUSH2 0x1652 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16BF DUP3 PUSH2 0x1694 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x16CF DUP2 PUSH2 0x16B4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x16EA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x16C6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x16F9 DUP2 PUSH2 0x16B4 JUMP JUMPDEST DUP2 EQ PUSH2 0x1704 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1716 DUP2 PUSH2 0x16F0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1733 JUMPI PUSH2 0x1732 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1741 DUP6 DUP3 DUP7 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1752 DUP6 DUP3 DUP7 ADD PUSH2 0x1652 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 0x1775 JUMPI PUSH2 0x1774 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1783 DUP7 DUP3 DUP8 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1794 DUP7 DUP3 DUP8 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x17A5 DUP7 DUP3 DUP8 ADD PUSH2 0x1652 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x17C5 JUMPI PUSH2 0x17C4 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x17D3 DUP5 DUP3 DUP6 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x17E5 DUP2 PUSH2 0x1631 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1800 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x17DC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x180F DUP2 PUSH2 0x1540 JUMP JUMPDEST DUP2 EQ PUSH2 0x181A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x182C DUP2 PUSH2 0x1806 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1849 JUMPI PUSH2 0x1848 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1857 DUP6 DUP3 DUP7 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1868 DUP6 DUP3 DUP7 ADD PUSH2 0x181D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x18B4 DUP3 PUSH2 0x15C5 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x18D3 JUMPI PUSH2 0x18D2 PUSH2 0x187C JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18E6 PUSH2 0x14A7 JUMP JUMPDEST SWAP1 POP PUSH2 0x18F2 DUP3 DUP3 PUSH2 0x18AB JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1912 JUMPI PUSH2 0x1911 PUSH2 0x187C JUMP JUMPDEST JUMPDEST PUSH2 0x191B DUP3 PUSH2 0x15C5 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x194A PUSH2 0x1945 DUP5 PUSH2 0x18F7 JUMP JUMPDEST PUSH2 0x18DC JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1966 JUMPI PUSH2 0x1965 PUSH2 0x1877 JUMP JUMPDEST JUMPDEST PUSH2 0x1971 DUP5 DUP3 DUP6 PUSH2 0x1928 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x198E JUMPI PUSH2 0x198D PUSH2 0x1872 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x199E DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1937 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x19C1 JUMPI PUSH2 0x19C0 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x19CF DUP8 DUP3 DUP9 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x19E0 DUP8 DUP3 DUP9 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x19F1 DUP8 DUP3 DUP9 ADD PUSH2 0x1652 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1A12 JUMPI PUSH2 0x1A11 PUSH2 0x14B6 JUMP JUMPDEST JUMPDEST PUSH2 0x1A1E DUP8 DUP3 DUP9 ADD PUSH2 0x1979 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 0x1A41 JUMPI PUSH2 0x1A40 PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1A4F DUP6 DUP3 DUP7 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1A60 DUP6 DUP3 DUP7 ADD PUSH2 0x1707 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1AB1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1AC5 JUMPI PUSH2 0x1AC4 PUSH2 0x1A6A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B27 PUSH1 0x21 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B32 DUP3 PUSH2 0x1ACB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1B56 DUP2 PUSH2 0x1B1A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BB9 PUSH1 0x3D DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1BC4 DUP3 PUSH2 0x1B5D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BE8 DUP2 PUSH2 0x1BAC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72206F7220617070726F76656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C4B PUSH1 0x2D DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C56 DUP3 PUSH2 0x1BEF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1C7A DUP2 PUSH2 0x1C3E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CB7 PUSH1 0x18 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CC2 DUP3 PUSH2 0x1C81 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1CE6 DUP2 PUSH2 0x1CAA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6964206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D49 PUSH1 0x29 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D54 DUP3 PUSH2 0x1CED JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1D78 DUP2 PUSH2 0x1D3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D95 DUP3 PUSH2 0x1576 JUMP JUMPDEST PUSH2 0x1D9F DUP2 DUP6 PUSH2 0x1D7F JUMP JUMPDEST SWAP4 POP PUSH2 0x1DAF DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1592 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1DC7 DUP3 DUP6 PUSH2 0x1D8A JUMP JUMPDEST SWAP2 POP PUSH2 0x1DD3 DUP3 DUP5 PUSH2 0x1D8A JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E3B PUSH1 0x25 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E46 DUP3 PUSH2 0x1DDF JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1E6A DUP2 PUSH2 0x1E2E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1ECD PUSH1 0x24 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1ED8 DUP3 PUSH2 0x1E71 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1EFC DUP2 PUSH2 0x1EC0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F39 PUSH1 0x19 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F44 DUP3 PUSH2 0x1F03 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1F68 DUP2 PUSH2 0x1F2C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FCB PUSH1 0x32 DUP4 PUSH2 0x1581 JUMP JUMPDEST SWAP2 POP PUSH2 0x1FD6 DUP3 PUSH2 0x1F6F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1FFA DUP2 PUSH2 0x1FBE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2057 DUP3 PUSH2 0x2030 JUMP JUMPDEST PUSH2 0x2061 DUP2 DUP6 PUSH2 0x203B JUMP JUMPDEST SWAP4 POP PUSH2 0x2071 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1592 JUMP JUMPDEST PUSH2 0x207A DUP2 PUSH2 0x15C5 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x209A PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x16C6 JUMP JUMPDEST PUSH2 0x20A7 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x16C6 JUMP JUMPDEST PUSH2 0x20B4 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x17DC JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x20C6 DUP2 DUP5 PUSH2 0x204C JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x20E0 DUP2 PUSH2 0x14E7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x20FC JUMPI PUSH2 0x20FB PUSH2 0x14B1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x210A DUP5 DUP3 DUP6 ADD PUSH2 0x20D1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SMOD PUSH21 0x4A118A0F08902E52DC2EF00962C180FAC745FF5918 0x24 DUP7 0xD1 PC 0xD5 MSTORE 0xBC SLT 0xBC PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ",
"sourceMap": "628:16377:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2471:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3468:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4612:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4974:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2190:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2633:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4169:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5189:276;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2801;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388: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;2471:98::-;2525:13;2557:5;2550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;3605:11;;:2;:11;;;;3597:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3702:5;3686:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3711:37;3728:5;3735:12;:10;:12::i;:::-;3711:16;:37::i;:::-;3686:62;3665:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;4612:296::-;4771:41;4790:12;:10;:12::i;:::-;4804:7;4771:18;:41::i;:::-;4763:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;4873:28;4883:4;4889:2;4893:7;4873:9;:28::i;:::-;4612:296;;;:::o;4974:149::-;5077:39;5094:4;5100:2;5104:7;5077:39;;;;;;;;;;;;:16;:39::i;:::-;4974:149;;;:::o;2190:219::-;2262:7;2281:13;2297:17;2306:7;2297:8;:17::i;:::-;2281:33;;2349:1;2332:19;;:5;:19;;;;2324:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2397:5;2390:12;;;2190:219;;;:::o;1929:204::-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;2633:102::-;2689:13;2721:7;2714:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2633:102;:::o;4169:153::-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;5189:276::-;5319:41;5338:12;:10;:12::i;:::-;5352:7;5319:18;:41::i;:::-;5311:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;5420:38;5434:4;5440:2;5444:7;5453:4;5420:13;:38::i;:::-;5189:276;;;;:::o;2801:::-;2874:13;2899:23;2914:7;2899:14;:23::i;:::-;2933:21;2957:10;:8;:10::i;:::-;2933:34;;3008:1;2990:7;2984:21;:25;:86;;;;;;;;;;;;;;;;;3036:7;3045:18;:7;:16;:18::i;:::-;3019:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2984:86;2977:93;;;2801:276;;;:::o;4388:162::-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;829:155:7:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;13240:133:0:-;13321:16;13329:7;13321;:16::i;:::-;13313:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;13240:133;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;12572:171:0:-;12673:2;12646:15;:24;12662:7;12646:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12728:7;12724:2;12690:46;;12699:23;12714:7;12699:14;:23::i;:::-;12690:46;;;;;;;;;;;;12572:171;;:::o;7404:261::-;7497:4;7513:13;7529:23;7544:7;7529:14;:23::i;:::-;7513:39;;7581:5;7570:16;;:7;:16;;;:52;;;;7590:32;7607:5;7614:7;7590:16;:32::i;:::-;7570:52;:87;;;;7650:7;7626:31;;:20;7638:7;7626:11;:20::i;:::-;:31;;;7570:87;7562:96;;;7404:261;;;;:::o;11257:1203::-;11381:4;11354:31;;:23;11369:7;11354:14;:23::i;:::-;:31;;;11346:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11459:1;11445:16;;:2;:16;;;;11437:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;11513:42;11534:4;11540:2;11544:7;11553:1;11513:20;:42::i;:::-;11682:4;11655:31;;:23;11670:7;11655:14;:23::i;:::-;:31;;;11647:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;11797:15;:24;11813:7;11797:24;;;;;;;;;;;;11790:31;;;;;;;;;;;12284:1;12265:9;:15;12275:4;12265:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;12316:1;12299:9;:13;12309:2;12299:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;12356:2;12337:7;:16;12345:7;12337:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;12393:7;12389:2;12374:27;;12383:4;12374:27;;;;;;;;;;;;12412:41;12432:4;12438:2;12442:7;12451:1;12412:19;:41::i;:::-;11257:1203;;;:::o;6702:115::-;6768:7;6794;:16;6802:7;6794:16;;;;;;;;;;;;;;;;;;;;;6787:23;;6702:115;;;:::o;12879:277::-;12999:8;12990:17;;:5;:17;;;;12982:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;13085:8;13047:18;:25;13066:5;13047:25;;;;;;;;;;;;;;;:35;13073:8;13047:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;13130:8;13108:41;;13123:5;13108:41;;;13140:8;13108:41;;;;;;:::i;:::-;;;;;;;;12879:277;;;:::o;6326:267::-;6438:28;6448:4;6454:2;6458:7;6438:9;:28::i;:::-;6484:47;6507:4;6513:2;6517:7;6526:4;6484:22;:47::i;:::-;6476:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6326:267;;;;:::o;3319:92::-;3370:13;3395:9;;;;;;;;;;;;;;3319:92;:::o;447:696:6:-;503:13;552:14;589:1;569:17;580:5;569:10;:17::i;:::-;:21;552:38;;604:20;638:6;627:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;604:41;;659:11;785:6;781:2;777:15;769:6;765:28;758:35;;820:280;827:4;820:280;;;851:5;;;;;;;;990:8;985:2;978:5;974:14;969:30;964:3;956:44;1044:2;1035:11;;;;;;:::i;:::-;;;;;1077:1;1068:5;:10;1064:21;;;1080:5;;1064:21;820:280;;;1120:6;1113:13;;;;;447:696;;;:::o;7120:126:0:-;7185:4;7237:1;7208:31;;:17;7217:7;7208:8;:17::i;:::-;:31;;;;7201:38;;7120:126;;;:::o;15472:116::-;;;;;:::o;16294:115::-;;;;;:::o;13925:831::-;14074:4;14094:15;:2;:13;;;:15::i;:::-;14090:660;;;14145:2;14129:36;;;14166:12;:10;:12::i;:::-;14180:4;14186:7;14195:4;14129:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14125:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14384:1;14367:6;:13;:18;14363:321;;;14409:60;;;;;;;;;;:::i;:::-;;;;;;;;14363:321;14636:6;14630:13;14621:6;14617:2;14613:15;14606:38;14125:573;14260:41;;;14250:51;;;:6;:51;;;;14243:58;;;;;14090:660;14735:4;14728:11;;13925:831;;;;;;;:::o;10139:916:9:-;10192:7;10211:14;10228:1;10211:18;;10276:8;10267:5;:17;10263:103;;10313:8;10304:17;;;;;;:::i;:::-;;;;;10349:2;10339:12;;;;10263:103;10392:8;10383:5;:17;10379:103;;10429:8;10420:17;;;;;;:::i;:::-;;;;;10465:2;10455:12;;;;10379:103;10508:8;10499:5;:17;10495:103;;10545:8;10536:17;;;;;;:::i;:::-;;;;;10581:2;10571:12;;;;10495:103;10624:7;10615:5;:16;10611:100;;10660:7;10651:16;;;;;;:::i;:::-;;;;;10695:1;10685:11;;;;10611:100;10737:7;10728:5;:16;10724:100;;10773:7;10764:16;;;;;;:::i;:::-;;;;;10808:1;10798:11;;;;10724:100;10850:7;10841:5;:16;10837:100;;10886:7;10877:16;;;;;;:::i;:::-;;;;;10921:1;10911:11;;;;10837:100;10963:7;10954:5;:16;10950:66;;11000:1;10990:11;;;;10950:66;11042:6;11035:13;;;10139:916;;;:::o;1412:320:4:-;1472:4;1724:1;1702:7;:19;;;:23;1695:30;;1412:320;;;:::o;7:75:11:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:329::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:53;5867:7;5858:6;5847:9;5843:22;5822:53;:::i;:::-;5812:63;;5768:117;5563:329;;;;:::o;5898:118::-;5985:24;6003:5;5985:24;:::i;:::-;5980:3;5973:37;5898:118;;:::o;6022:222::-;6115:4;6153:2;6142:9;6138:18;6130:26;;6166:71;6234:1;6223:9;6219:17;6210:6;6166:71;:::i;:::-;6022:222;;;;:::o;6250:116::-;6320:21;6335:5;6320:21;:::i;:::-;6313:5;6310:32;6300:60;;6356:1;6353;6346:12;6300:60;6250:116;:::o;6372:133::-;6415:5;6453:6;6440:20;6431:29;;6469:30;6493:5;6469:30;:::i;:::-;6372:133;;;;:::o;6511:468::-;6576:6;6584;6633:2;6621:9;6612:7;6608:23;6604:32;6601:119;;;6639:79;;:::i;:::-;6601:119;6759:1;6784:53;6829:7;6820:6;6809:9;6805:22;6784:53;:::i;:::-;6774:63;;6730:117;6886:2;6912:50;6954:7;6945:6;6934:9;6930:22;6912:50;:::i;:::-;6902:60;;6857:115;6511:468;;;;;:::o;6985:117::-;7094:1;7091;7084:12;7108:117;7217:1;7214;7207:12;7231:180;7279:77;7276:1;7269:88;7376:4;7373:1;7366:15;7400:4;7397:1;7390:15;7417:281;7500:27;7522:4;7500:27;:::i;:::-;7492:6;7488:40;7630:6;7618:10;7615:22;7594:18;7582:10;7579:34;7576:62;7573:88;;;7641:18;;:::i;:::-;7573:88;7681:10;7677:2;7670:22;7460:238;7417:281;;:::o;7704:129::-;7738:6;7765:20;;:::i;:::-;7755:30;;7794:33;7822:4;7814:6;7794:33;:::i;:::-;7704:129;;;:::o;7839:307::-;7900:4;7990:18;7982:6;7979:30;7976:56;;;8012:18;;:::i;:::-;7976:56;8050:29;8072:6;8050:29;:::i;:::-;8042:37;;8134:4;8128;8124:15;8116:23;;7839:307;;;:::o;8152:154::-;8236:6;8231:3;8226;8213:30;8298:1;8289:6;8284:3;8280:16;8273:27;8152:154;;;:::o;8312:410::-;8389:5;8414:65;8430:48;8471:6;8430:48;:::i;:::-;8414:65;:::i;:::-;8405:74;;8502:6;8495:5;8488:21;8540:4;8533:5;8529:16;8578:3;8569:6;8564:3;8560:16;8557:25;8554:112;;;8585:79;;:::i;:::-;8554:112;8675:41;8709:6;8704:3;8699;8675:41;:::i;:::-;8395:327;8312:410;;;;;:::o;8741:338::-;8796:5;8845:3;8838:4;8830:6;8826:17;8822:27;8812:122;;8853:79;;:::i;:::-;8812:122;8970:6;8957:20;8995:78;9069:3;9061:6;9054:4;9046:6;9042:17;8995:78;:::i;:::-;8986:87;;8802:277;8741:338;;;;:::o;9085:943::-;9180:6;9188;9196;9204;9253:3;9241:9;9232:7;9228:23;9224:33;9221:120;;;9260:79;;:::i;:::-;9221:120;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9478:118;9635:2;9661:53;9706:7;9697:6;9686:9;9682:22;9661:53;:::i;:::-;9651:63;;9606:118;9791:2;9780:9;9776:18;9763:32;9822:18;9814:6;9811:30;9808:117;;;9844:79;;:::i;:::-;9808:117;9949:62;10003:7;9994:6;9983:9;9979:22;9949:62;:::i;:::-;9939:72;;9734:287;9085:943;;;;;;;:::o;10034:474::-;10102:6;10110;10159:2;10147:9;10138:7;10134:23;10130:32;10127:119;;;10165:79;;:::i;:::-;10127:119;10285:1;10310:53;10355:7;10346:6;10335:9;10331:22;10310:53;:::i;:::-;10300:63;;10256:117;10412:2;10438:53;10483:7;10474:6;10463:9;10459:22;10438:53;:::i;:::-;10428:63;;10383:118;10034:474;;;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:320;10744:6;10781:1;10775:4;10771:12;10761:22;;10828:1;10822:4;10818:12;10849:18;10839:81;;10905:4;10897:6;10893:17;10883:27;;10839:81;10967:2;10959:6;10956:14;10936:18;10933:38;10930:84;;;10986:18;;:::i;:::-;10930:84;10751:269;10700:320;;;:::o;11026:220::-;11166:34;11162:1;11154:6;11150:14;11143:58;11235:3;11230:2;11222:6;11218:15;11211:28;11026:220;:::o;11252:366::-;11394:3;11415:67;11479:2;11474:3;11415:67;:::i;:::-;11408:74;;11491:93;11580:3;11491:93;:::i;:::-;11609:2;11604:3;11600:12;11593:19;;11252:366;;;:::o;11624:419::-;11790:4;11828:2;11817:9;11813:18;11805:26;;11877:9;11871:4;11867:20;11863:1;11852:9;11848:17;11841:47;11905:131;12031:4;11905:131;:::i;:::-;11897:139;;11624:419;;;:::o;12049:248::-;12189:34;12185:1;12177:6;12173:14;12166:58;12258:31;12253:2;12245:6;12241:15;12234:56;12049:248;:::o;12303:366::-;12445:3;12466:67;12530:2;12525:3;12466:67;:::i;:::-;12459:74;;12542:93;12631:3;12542:93;:::i;:::-;12660:2;12655:3;12651:12;12644:19;;12303:366;;;:::o;12675:419::-;12841:4;12879:2;12868:9;12864:18;12856:26;;12928:9;12922:4;12918:20;12914:1;12903:9;12899:17;12892:47;12956:131;13082:4;12956:131;:::i;:::-;12948:139;;12675:419;;;:::o;13100:232::-;13240:34;13236:1;13228:6;13224:14;13217:58;13309:15;13304:2;13296:6;13292:15;13285:40;13100:232;:::o;13338:366::-;13480:3;13501:67;13565:2;13560:3;13501:67;:::i;:::-;13494:74;;13577:93;13666:3;13577:93;:::i;:::-;13695:2;13690:3;13686:12;13679:19;;13338:366;;;:::o;13710:419::-;13876:4;13914:2;13903:9;13899:18;13891:26;;13963:9;13957:4;13953:20;13949:1;13938:9;13934:17;13927:47;13991:131;14117:4;13991:131;:::i;:::-;13983:139;;13710:419;;;:::o;14135:174::-;14275:26;14271:1;14263:6;14259:14;14252:50;14135:174;:::o;14315:366::-;14457:3;14478:67;14542:2;14537:3;14478:67;:::i;:::-;14471:74;;14554:93;14643:3;14554:93;:::i;:::-;14672:2;14667:3;14663:12;14656:19;;14315:366;;;:::o;14687:419::-;14853:4;14891:2;14880:9;14876:18;14868:26;;14940:9;14934:4;14930:20;14926:1;14915:9;14911:17;14904:47;14968:131;15094:4;14968:131;:::i;:::-;14960:139;;14687:419;;;:::o;15112:228::-;15252:34;15248:1;15240:6;15236:14;15229:58;15321:11;15316:2;15308:6;15304:15;15297:36;15112:228;:::o;15346:366::-;15488:3;15509:67;15573:2;15568:3;15509:67;:::i;:::-;15502:74;;15585:93;15674:3;15585:93;:::i;:::-;15703:2;15698:3;15694:12;15687:19;;15346:366;;;:::o;15718:419::-;15884:4;15922:2;15911:9;15907:18;15899:26;;15971:9;15965:4;15961:20;15957:1;15946:9;15942:17;15935:47;15999:131;16125:4;15999:131;:::i;:::-;15991:139;;15718:419;;;:::o;16143:148::-;16245:11;16282:3;16267:18;;16143:148;;;;:::o;16297:377::-;16403:3;16431:39;16464:5;16431:39;:::i;:::-;16486:89;16568:6;16563:3;16486:89;:::i;:::-;16479:96;;16584:52;16629:6;16624:3;16617:4;16610:5;16606:16;16584:52;:::i;:::-;16661:6;16656:3;16652:16;16645:23;;16407:267;16297:377;;;;:::o;16680:435::-;16860:3;16882:95;16973:3;16964:6;16882:95;:::i;:::-;16875:102;;16994:95;17085:3;17076:6;16994:95;:::i;:::-;16987:102;;17106:3;17099:10;;16680:435;;;;;:::o;17121:224::-;17261:34;17257:1;17249:6;17245:14;17238:58;17330:7;17325:2;17317:6;17313:15;17306:32;17121:224;:::o;17351:366::-;17493:3;17514:67;17578:2;17573:3;17514:67;:::i;:::-;17507:74;;17590:93;17679:3;17590:93;:::i;:::-;17708:2;17703:3;17699:12;17692:19;;17351:366;;;:::o;17723:419::-;17889:4;17927:2;17916:9;17912:18;17904:26;;17976:9;17970:4;17966:20;17962:1;17951:9;17947:17;17940:47;18004:131;18130:4;18004:131;:::i;:::-;17996:139;;17723:419;;;:::o;18148:223::-;18288:34;18284:1;18276:6;18272:14;18265:58;18357:6;18352:2;18344:6;18340:15;18333:31;18148:223;:::o;18377:366::-;18519:3;18540:67;18604:2;18599:3;18540:67;:::i;:::-;18533:74;;18616:93;18705:3;18616:93;:::i;:::-;18734:2;18729:3;18725:12;18718:19;;18377:366;;;:::o;18749:419::-;18915:4;18953:2;18942:9;18938:18;18930:26;;19002:9;18996:4;18992:20;18988:1;18977:9;18973:17;18966:47;19030:131;19156:4;19030:131;:::i;:::-;19022:139;;18749:419;;;:::o;19174:175::-;19314:27;19310:1;19302:6;19298:14;19291:51;19174:175;:::o;19355:366::-;19497:3;19518:67;19582:2;19577:3;19518:67;:::i;:::-;19511:74;;19594:93;19683:3;19594:93;:::i;:::-;19712:2;19707:3;19703:12;19696:19;;19355:366;;;:::o;19727:419::-;19893:4;19931:2;19920:9;19916:18;19908:26;;19980:9;19974:4;19970:20;19966:1;19955:9;19951:17;19944:47;20008:131;20134:4;20008:131;:::i;:::-;20000:139;;19727:419;;;:::o;20152:237::-;20292:34;20288:1;20280:6;20276:14;20269:58;20361:20;20356:2;20348:6;20344:15;20337:45;20152:237;:::o;20395:366::-;20537:3;20558:67;20622:2;20617:3;20558:67;:::i;:::-;20551:74;;20634:93;20723:3;20634:93;:::i;:::-;20752:2;20747:3;20743:12;20736:19;;20395:366;;;:::o;20767:419::-;20933:4;20971:2;20960:9;20956:18;20948:26;;21020:9;21014:4;21010:20;21006:1;20995:9;20991:17;20984:47;21048:131;21174:4;21048:131;:::i;:::-;21040:139;;20767:419;;;:::o;21192:180::-;21240:77;21237:1;21230:88;21337:4;21334:1;21327:15;21361:4;21358:1;21351:15;21378:98;21429:6;21463:5;21457:12;21447:22;;21378:98;;;:::o;21482:168::-;21565:11;21599:6;21594:3;21587:19;21639:4;21634:3;21630:14;21615:29;;21482:168;;;;:::o;21656:360::-;21742:3;21770:38;21802:5;21770:38;:::i;:::-;21824:70;21887:6;21882:3;21824:70;:::i;:::-;21817:77;;21903:52;21948:6;21943:3;21936:4;21929:5;21925:16;21903:52;:::i;:::-;21980:29;22002:6;21980:29;:::i;:::-;21975:3;21971:39;21964:46;;21746:270;21656:360;;;;:::o;22022:640::-;22217:4;22255:3;22244:9;22240:19;22232:27;;22269:71;22337:1;22326:9;22322:17;22313:6;22269:71;:::i;:::-;22350:72;22418:2;22407:9;22403:18;22394:6;22350:72;:::i;:::-;22432;22500:2;22489:9;22485:18;22476:6;22432:72;:::i;:::-;22551:9;22545:4;22541:20;22536:2;22525:9;22521:18;22514:48;22579:76;22650:4;22641:6;22579:76;:::i;:::-;22571:84;;22022:640;;;;;;;:::o;22668:141::-;22724:5;22755:6;22749:13;22740:22;;22771:32;22797:5;22771:32;:::i;:::-;22668:141;;;;:::o;22815:349::-;22884:6;22933:2;22921:9;22912:7;22908:23;22904:32;22901:119;;;22939:79;;:::i;:::-;22901:119;23059:1;23084:63;23139:7;23130:6;23119:9;23115:22;23084:63;:::i;:::-;23074:73;;23030:127;22815:349;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1704200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2924",
"getApproved(uint256)": "5277",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "3025",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "774",
"symbol()": "infinite",
"tokenURI(uint256)": "3467",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"__unsafe_increaseBalance(address,uint256)": "infinite",
"_afterTokenTransfer(address,address,uint256,uint256)": "17",
"_approve(address,uint256)": "infinite",
"_baseURI()": "infinite",
"_beforeTokenTransfer(address,address,uint256,uint256)": "17",
"_burn(uint256)": "infinite",
"_checkOnERC721Received(address,address,uint256,bytes memory)": "infinite",
"_exists(uint256)": "2312",
"_isApprovedOrOwner(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_ownerOf(uint256)": "2248",
"_requireMinted(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.9+commit.e5eed63a"
},
"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/token/ERC721/ERC721.sol": "ERC721"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x2c309e7df9e05e6ce15bedfe74f3c61b467fc37e0fae9eab496acf5ea0bbd7ff",
"license": "MIT",
"urls": [
"bzz-raw://7063b5c98711a98018ba4635ac74cee1c1cfa2ea01099498e062699ed9530005",
"dweb:/ipfs/QmeJ8rGXkcv7RrqLdAW8PCXPAykxVsddfYY6g5NaTwmRFE"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x5bce51e11f7d194b79ea59fe00c9e8de9fa2c5530124960f29a24d4c740a3266",
"license": "MIT",
"urls": [
"bzz-raw://7e66dfde185df46104c11bc89d08fa0760737aa59a2b8546a656473d810a8ea4",
"dweb:/ipfs/QmXvyqtXPaPss2PD7eqPoSao5Szm2n6UMoiG8TZZDjmChR"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da",
"license": "MIT",
"urls": [
"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708",
"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
".deps/npm/@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa",
"license": "MIT",
"urls": [
"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931",
"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
".deps/npm/@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0",
"license": "MIT",
"urls": [
"bzz-raw://b81d9ff6559ea5c47fc573e17ece6d9ba5d6839e213e6ebc3b4c5c8fe4199d7f",
"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
".deps/npm/@openzeppelin/contracts/utils/math/Math.sol": {
"keccak256": "0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3",
"license": "MIT",
"urls": [
"bzz-raw://cc8841b3cd48ad125e2f46323c8bad3aa0e88e399ec62acb9e57efa7e7c8058c",
"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS"
]
},
".deps/npm/@openzeppelin/contracts/utils/math/SignedMath.sol": {
"keccak256": "0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc",
"license": "MIT",
"urls": [
"bzz-raw://c50fcc459e49a9858b6d8ad5f911295cb7c9ab57567845a250bf0153f84a95c7",
"dweb:/ipfs/QmcEW85JRzvDkQggxiBBLVAasXWdkhEysqypj9EaB6H2g6"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"onERC721Received(address,address,uint256,bytes)": "150b7a02"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "onERC721Received",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "onERC721Received",
"outputs": [
{
"internalType": "bytes4",
"name": "",
"type": "bytes4"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface for any contract that wants to support safeTransfers from ERC721 asset contracts.",
"kind": "dev",
"methods": {
"onERC721Received(address,address,uint256,bytes)": {
"details": "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`."
}
},
"title": "ERC721 token receiver interface",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": "IERC721Receiver"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da",
"license": "MIT",
"urls": [
"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708",
"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
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) {
_requireMinted(tokenId);
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 token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @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 _ownerOf(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) {
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, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @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, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @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 {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* 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": "90dbdc782e3122231bf83f046964372b",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.9",
"solcLongVersion": "0.8.9+commit.e5eed63a",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.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: address zero is not a valid owner\");\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 = _ownerOf(tokenId);\n require(owner != address(0), \"ERC721: invalid token ID\");\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 _requireMinted(tokenId);\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 token owner or 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 _requireMinted(tokenId);\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(address from, address to, uint256 tokenId) public virtual override {\n //solhint-disable-next-line max-line-length\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\");\n\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {\n safeTransferFrom(from, to, tokenId, \"\");\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or 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(address from, address to, uint256 tokenId, bytes memory data) 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist\n */\n function _ownerOf(uint256 tokenId) internal view virtual returns (address) {\n return _owners[tokenId];\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 _ownerOf(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 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(address to, uint256 tokenId, bytes memory data) 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, 1);\n\n // Check that tokenId was not minted by `_beforeTokenTransfer` hook\n require(!_exists(tokenId), \"ERC721: token already minted\");\n\n unchecked {\n // Will not overflow unless all 2**256 token ids are minted to the same owner.\n // Given that tokens are minted one by one, it is impossible in practice that\n // this ever happens. Might change if we allow batch minting.\n // The ERC fails to describe this case.\n _balances[to] += 1;\n }\n\n _owners[tokenId] = to;\n\n emit Transfer(address(0), to, tokenId);\n\n _afterTokenTransfer(address(0), to, tokenId, 1);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n * This is an internal function that does not check if the sender is authorized to operate on the token.\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, 1);\n\n // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook\n owner = ERC721.ownerOf(tokenId);\n\n // Clear approvals\n delete _tokenApprovals[tokenId];\n\n unchecked {\n // Cannot overflow, as that would require more tokens to be burned/transferred\n // out than the owner initially received through minting and transferring in.\n _balances[owner] -= 1;\n }\n delete _owners[tokenId];\n\n emit Transfer(owner, address(0), tokenId);\n\n _afterTokenTransfer(owner, address(0), tokenId, 1);\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(address from, address to, uint256 tokenId) 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, 1);\n\n // Check that tokenId was not transferred by `_beforeTokenTransfer` hook\n require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n\n // Clear approvals from the previous owner\n delete _tokenApprovals[tokenId];\n\n unchecked {\n // `_balances[from]` cannot overflow for the same reason as described in `_burn`:\n // `from`'s balance is the number of token held, which is at least one before the current\n // transfer.\n // `_balances[to]` could overflow in the conditions described in `_mint`. That would require\n // all 2**256 token ids to be minted, which in practice is impossible.\n _balances[from] -= 1;\n _balances[to] += 1;\n }\n _owners[tokenId] = to;\n\n emit Transfer(from, to, tokenId);\n\n _afterTokenTransfer(from, to, tokenId, 1);\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits an {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 an {ApprovalForAll} event.\n */\n function _setApprovalForAll(address owner, address operator, bool approved) 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 Reverts if the `tokenId` has not been minted yet.\n */\n function _requireMinted(uint256 tokenId) internal view virtual {\n require(_exists(tokenId), \"ERC721: invalid token ID\");\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 /// @solidity memory-safe-assembly\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 and burning. If {ERC721Consecutive} is\n * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.\n * - When `from` is zero, the tokens will be minted for `to`.\n * - When `to` is zero, ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n * - `batchSize` is non-zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}\n\n /**\n * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is\n * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.\n * - When `from` is zero, the tokens were minted for `to`.\n * - When `to` is zero, ``from``'s tokens were burned.\n * - `from` and `to` are never both zero.\n * - `batchSize` is non-zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}\n\n /**\n * @dev Unsafe write access to the balances, used by extensions that \"mint\" tokens using an {ownerOf} override.\n *\n * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant\n * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such\n * that `ownerOf(tokenId)` is `a`.\n */\n // solhint-disable-next-line func-name-mixedcase\n function __unsafe_increaseBalance(address account, uint256 amount) internal {\n _balances[account] += amount;\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts/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/utils/Strings.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/Math.sol\";\nimport \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\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 unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n /// @solidity memory-safe-assembly\n assembly {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n /// @solidity memory-safe-assembly\n assembly {\n mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `int256` to its ASCII `string` decimal representation.\n */\n function toString(int256 value) internal pure returns (string memory) {\n return string(abi.encodePacked(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value))));\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 unchecked {\n return toHexString(value, Math.log256(value) + 1);\n }\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] = _SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return keccak256(bytes(a)) == keccak256(bytes(b));\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.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 * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, \"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(address target, bytes memory data, uint256 value) 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 (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, 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 (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, 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 (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or 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 _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\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 /// @solidity memory-safe-assembly\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"
},
".deps/npm/@openzeppelin/contracts/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/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/token/ERC721/IERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.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(address from, address to, uint256 tokenId, bytes calldata data) 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 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(address from, address to, uint256 tokenId) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721\n * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n * understand this adds an external call which potentially creates a reentrancy vulnerability.\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(address from, address to, uint256 tokenId) 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/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"
},
".deps/npm/@openzeppelin/contracts/utils/math/SignedMath.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // must be unchecked in order to support `n = type(int256).min`\n return uint256(n >= 0 ? n : -n);\n }\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts/utils/math/Math.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1, \"Math: mulDiv overflow\");\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n //\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n //\n // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n //\n // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1 << (log2(a) >> 1);\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 2, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 128;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 64;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 32;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 16;\n }\n if (value >> 8 > 0) {\n value >>= 8;\n result += 8;\n }\n if (value >> 4 > 0) {\n value >>= 4;\n result += 4;\n }\n if (value >> 2 > 0) {\n value >>= 2;\n result += 2;\n }\n if (value >> 1 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 10, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10 ** 64) {\n value /= 10 ** 64;\n result += 64;\n }\n if (value >= 10 ** 32) {\n value /= 10 ** 32;\n result += 32;\n }\n if (value >= 10 ** 16) {\n value /= 10 ** 16;\n result += 16;\n }\n if (value >= 10 ** 8) {\n value /= 10 ** 8;\n result += 8;\n }\n if (value >= 10 ** 4) {\n value /= 10 ** 4;\n result += 4;\n }\n if (value >= 10 ** 2) {\n value /= 10 ** 2;\n result += 2;\n }\n if (value >= 10 ** 1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 256, rounded down, of a positive value.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 16;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 8;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 4;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 2;\n }\n if (value >> 8 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n }\n }\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/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/token/ERC721/ERC721.sol\":628:17005 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \".deps/npm/@openzeppelin/contracts/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/token/ERC721/ERC721.sol\":1464:1469 name_ */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1461 _name */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/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/token/ERC721/ERC721.sol\":1489:1496 symbol_ */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1486 _symbol */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/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/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:17005 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:82 */\ntag_21:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\ntag_22:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\ntag_23:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\ntag_24:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\ntag_25:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\ntag_26:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\ntag_27:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\ntag_28:\n /* \"#utility.yul\":957:984 */\n tag_44\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_26\n jump\t// in\ntag_44:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_45\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_46\n tag_27\n jump\t// in\ntag_46:\n /* \"#utility.yul\":1030:1118 */\ntag_45:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\ntag_29:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_48\n tag_21\n jump\t// in\ntag_48:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_49\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_28\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\ntag_30:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_51\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_52\n tag_27\n jump\t// in\ntag_52:\n /* \"#utility.yul\":1434:1490 */\ntag_51:\n /* \"#utility.yul\":1508:1537 */\n tag_53\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_26\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1917 */\ntag_31:\n /* \"#utility.yul\":1678:1679 */\n 0x00\n /* \"#utility.yul\":1688:1801 */\ntag_55:\n /* \"#utility.yul\":1702:1708 */\n dup4\n /* \"#utility.yul\":1699:1700 */\n dup2\n /* \"#utility.yul\":1696:1709 */\n lt\n /* \"#utility.yul\":1688:1801 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":1787:1788 */\n dup1\n /* \"#utility.yul\":1782:1785 */\n dup3\n /* \"#utility.yul\":1778:1789 */\n add\n /* \"#utility.yul\":1772:1790 */\n mload\n /* \"#utility.yul\":1768:1769 */\n dup2\n /* \"#utility.yul\":1763:1766 */\n dup5\n /* \"#utility.yul\":1759:1770 */\n add\n /* \"#utility.yul\":1752:1791 */\n mstore\n /* \"#utility.yul\":1724:1726 */\n 0x20\n /* \"#utility.yul\":1721:1722 */\n dup2\n /* \"#utility.yul\":1717:1727 */\n add\n /* \"#utility.yul\":1712:1727 */\n swap1\n pop\n /* \"#utility.yul\":1688:1801 */\n jump(tag_55)\ntag_57:\n /* \"#utility.yul\":1819:1825 */\n dup4\n /* \"#utility.yul\":1816:1817 */\n dup2\n /* \"#utility.yul\":1813:1826 */\n gt\n /* \"#utility.yul\":1810:1911 */\n iszero\n tag_58\n jumpi\n /* \"#utility.yul\":1899:1900 */\n 0x00\n /* \"#utility.yul\":1890:1896 */\n dup5\n /* \"#utility.yul\":1885:1888 */\n dup5\n /* \"#utility.yul\":1881:1897 */\n add\n /* \"#utility.yul\":1874:1901 */\n mstore\n /* \"#utility.yul\":1810:1911 */\ntag_58:\n /* \"#utility.yul\":1659:1917 */\n pop\n /* \"#utility.yul\":1610:1917 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1923:2344 */\ntag_32:\n /* \"#utility.yul\":2012:2017 */\n 0x00\n /* \"#utility.yul\":2037:2103 */\n tag_60\n /* \"#utility.yul\":2053:2102 */\n tag_61\n /* \"#utility.yul\":2095:2101 */\n dup5\n /* \"#utility.yul\":2053:2102 */\n tag_30\n jump\t// in\ntag_61:\n /* \"#utility.yul\":2037:2103 */\n tag_29\n jump\t// in\ntag_60:\n /* \"#utility.yul\":2028:2103 */\n swap1\n pop\n /* \"#utility.yul\":2126:2132 */\n dup3\n /* \"#utility.yul\":2119:2124 */\n dup2\n /* \"#utility.yul\":2112:2133 */\n mstore\n /* \"#utility.yul\":2164:2168 */\n 0x20\n /* \"#utility.yul\":2157:2162 */\n dup2\n /* \"#utility.yul\":2153:2169 */\n add\n /* \"#utility.yul\":2202:2205 */\n dup5\n /* \"#utility.yul\":2193:2199 */\n dup5\n /* \"#utility.yul\":2188:2191 */\n dup5\n /* \"#utility.yul\":2184:2200 */\n add\n /* \"#utility.yul\":2181:2206 */\n gt\n /* \"#utility.yul\":2178:2290 */\n iszero\n tag_62\n jumpi\n /* \"#utility.yul\":2209:2288 */\n tag_63\n tag_25\n jump\t// in\ntag_63:\n /* \"#utility.yul\":2178:2290 */\ntag_62:\n /* \"#utility.yul\":2299:2338 */\n tag_64\n /* \"#utility.yul\":2331:2337 */\n dup5\n /* \"#utility.yul\":2326:2329 */\n dup3\n /* \"#utility.yul\":2321:2324 */\n dup6\n /* \"#utility.yul\":2299:2338 */\n tag_31\n jump\t// in\ntag_64:\n /* \"#utility.yul\":2018:2344 */\n pop\n /* \"#utility.yul\":1923:2344 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2364:2719 */\ntag_33:\n /* \"#utility.yul\":2431:2436 */\n 0x00\n /* \"#utility.yul\":2480:2483 */\n dup3\n /* \"#utility.yul\":2473:2477 */\n 0x1f\n /* \"#utility.yul\":2465:2471 */\n dup4\n /* \"#utility.yul\":2461:2478 */\n add\n /* \"#utility.yul\":2457:2484 */\n slt\n /* \"#utility.yul\":2447:2569 */\n tag_66\n jumpi\n /* \"#utility.yul\":2488:2567 */\n tag_67\n tag_24\n jump\t// in\ntag_67:\n /* \"#utility.yul\":2447:2569 */\ntag_66:\n /* \"#utility.yul\":2598:2604 */\n dup2\n /* \"#utility.yul\":2592:2605 */\n mload\n /* \"#utility.yul\":2623:2713 */\n tag_68\n /* \"#utility.yul\":2709:2712 */\n dup5\n /* \"#utility.yul\":2701:2707 */\n dup3\n /* \"#utility.yul\":2694:2698 */\n 0x20\n /* \"#utility.yul\":2686:2692 */\n dup7\n /* \"#utility.yul\":2682:2699 */\n add\n /* \"#utility.yul\":2623:2713 */\n tag_32\n jump\t// in\ntag_68:\n /* \"#utility.yul\":2614:2713 */\n swap2\n pop\n /* \"#utility.yul\":2437:2719 */\n pop\n /* \"#utility.yul\":2364:2719 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2725:3578 */\ntag_3:\n /* \"#utility.yul\":2824:2830 */\n 0x00\n /* \"#utility.yul\":2832:2838 */\n dup1\n /* \"#utility.yul\":2881:2883 */\n 0x40\n /* \"#utility.yul\":2869:2878 */\n dup4\n /* \"#utility.yul\":2860:2867 */\n dup6\n /* \"#utility.yul\":2856:2879 */\n sub\n /* \"#utility.yul\":2852:2884 */\n slt\n /* \"#utility.yul\":2849:2968 */\n iszero\n tag_70\n jumpi\n /* \"#utility.yul\":2887:2966 */\n tag_71\n tag_22\n jump\t// in\ntag_71:\n /* \"#utility.yul\":2849:2968 */\ntag_70:\n /* \"#utility.yul\":3028:3029 */\n 0x00\n /* \"#utility.yul\":3017:3026 */\n dup4\n /* \"#utility.yul\":3013:3030 */\n add\n /* \"#utility.yul\":3007:3031 */\n mload\n /* \"#utility.yul\":3058:3076 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3050:3056 */\n dup2\n /* \"#utility.yul\":3047:3077 */\n gt\n /* \"#utility.yul\":3044:3161 */\n iszero\n tag_72\n jumpi\n /* \"#utility.yul\":3080:3159 */\n tag_73\n tag_23\n jump\t// in\ntag_73:\n /* \"#utility.yul\":3044:3161 */\ntag_72:\n /* \"#utility.yul\":3185:3259 */\n tag_74\n /* \"#utility.yul\":3251:3258 */\n dup6\n /* \"#utility.yul\":3242:3248 */\n dup3\n /* \"#utility.yul\":3231:3240 */\n dup7\n /* \"#utility.yul\":3227:3249 */\n add\n /* \"#utility.yul\":3185:3259 */\n tag_33\n jump\t// in\ntag_74:\n /* \"#utility.yul\":3175:3259 */\n swap3\n pop\n /* \"#utility.yul\":2978:3269 */\n pop\n /* \"#utility.yul\":3329:3331 */\n 0x20\n /* \"#utility.yul\":3318:3327 */\n dup4\n /* \"#utility.yul\":3314:3332 */\n add\n /* \"#utility.yul\":3308:3333 */\n mload\n /* \"#utility.yul\":3360:3378 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3352:3358 */\n dup2\n /* \"#utility.yul\":3349:3379 */\n gt\n /* \"#utility.yul\":3346:3463 */\n iszero\n tag_75\n jumpi\n /* \"#utility.yul\":3382:3461 */\n tag_76\n tag_23\n jump\t// in\ntag_76:\n /* \"#utility.yul\":3346:3463 */\ntag_75:\n /* \"#utility.yul\":3487:3561 */\n tag_77\n /* \"#utility.yul\":3553:3560 */\n dup6\n /* \"#utility.yul\":3544:3550 */\n dup3\n /* \"#utility.yul\":3533:3542 */\n dup7\n /* \"#utility.yul\":3529:3551 */\n add\n /* \"#utility.yul\":3487:3561 */\n tag_33\n jump\t// in\ntag_77:\n /* \"#utility.yul\":3477:3561 */\n swap2\n pop\n /* \"#utility.yul\":3279:3571 */\n pop\n /* \"#utility.yul\":2725:3578 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3584:3764 */\ntag_34:\n /* \"#utility.yul\":3632:3709 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3629:3630 */\n 0x00\n /* \"#utility.yul\":3622:3710 */\n mstore\n /* \"#utility.yul\":3729:3733 */\n 0x22\n /* \"#utility.yul\":3726:3727 */\n 0x04\n /* \"#utility.yul\":3719:3734 */\n mstore\n /* \"#utility.yul\":3753:3757 */\n 0x24\n /* \"#utility.yul\":3750:3751 */\n 0x00\n /* \"#utility.yul\":3743:3758 */\n revert\n /* \"#utility.yul\":3770:4090 */\ntag_11:\n /* \"#utility.yul\":3814:3820 */\n 0x00\n /* \"#utility.yul\":3851:3852 */\n 0x02\n /* \"#utility.yul\":3845:3849 */\n dup3\n /* \"#utility.yul\":3841:3853 */\n div\n /* \"#utility.yul\":3831:3853 */\n swap1\n pop\n /* \"#utility.yul\":3898:3899 */\n 0x01\n /* \"#utility.yul\":3892:3896 */\n dup3\n /* \"#utility.yul\":3888:3900 */\n and\n /* \"#utility.yul\":3919:3937 */\n dup1\n /* \"#utility.yul\":3909:3990 */\n tag_80\n jumpi\n /* \"#utility.yul\":3975:3979 */\n 0x7f\n /* \"#utility.yul\":3967:3973 */\n dup3\n /* \"#utility.yul\":3963:3980 */\n and\n /* \"#utility.yul\":3953:3980 */\n swap2\n pop\n /* \"#utility.yul\":3909:3990 */\ntag_80:\n /* \"#utility.yul\":4037:4039 */\n 0x20\n /* \"#utility.yul\":4029:4035 */\n dup3\n /* \"#utility.yul\":4026:4040 */\n lt\n /* \"#utility.yul\":4006:4024 */\n dup2\n /* \"#utility.yul\":4003:4041 */\n eq\n /* \"#utility.yul\":4000:4084 */\n iszero\n tag_81\n jumpi\n /* \"#utility.yul\":4056:4074 */\n tag_82\n tag_34\n jump\t// in\ntag_82:\n /* \"#utility.yul\":4000:4084 */\ntag_81:\n /* \"#utility.yul\":3821:4090 */\n pop\n /* \"#utility.yul\":3770:4090 */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:17005 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/token/ERC721/ERC721.sol\":628:17005 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/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/token/ERC721/ERC721.sol\":2471:2569 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/token/ERC721/ERC721.sol\":3935:4102 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/token/ERC721/ERC721.sol\":3468:3874 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/token/ERC721/ERC721.sol\":4612:4908 function transferFrom(address from, address to, uint256 tokenId) public virtual override {... */\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/token/ERC721/ERC721.sol\":4974:5123 function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {... */\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/token/ERC721/ERC721.sol\":2190:2409 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/token/ERC721/ERC721.sol\":1929:2133 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/token/ERC721/ERC721.sol\":2633:2735 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/token/ERC721/ERC721.sol\":4169:4322 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/token/ERC721/ERC721.sol\":5189:5465 function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {... */\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/token/ERC721/ERC721.sol\":2801:3077 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/token/ERC721/ERC721.sol\":4388:4550 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/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/token/ERC721/ERC721.sol\":1672:1676 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1722:1747 type(IERC721).interfaceId */\n 0x80ac58cd00000000000000000000000000000000000000000000000000000000\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1718 interfaceId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_76\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1778:1811 type(IERC721Metadata).interfaceId */\n 0x5b5e139f00000000000000000000000000000000000000000000000000000000\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1774 interfaceId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n tag_76:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_77\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n tag_78\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1851:1862 interfaceId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1850 super.supportsInterface */\n tag_79\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n jump\t// in\n tag_78:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n tag_77:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1688:1863 return... */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/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/token/ERC721/ERC721.sol\":2471:2569 function name() public view virtual override returns (string memory) {... */\n tag_25:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2525:2538 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2557:2562 _name */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2550:2562 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/token/ERC721/ERC721.sol\":2471:2569 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_31:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4011:4018 address */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4053 _requireMinted(tokenId) */\n tag_88\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4045:4052 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4044 _requireMinted */\n tag_89\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4053 _requireMinted(tokenId) */\n jump\t// in\n tag_88:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4086 _tokenApprovals */\n 0x04\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4095 _tokenApprovals[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4087:4094 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4095 _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/token/ERC721/ERC721.sol\":4064:4095 return _tokenApprovals[tokenId] */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 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/token/ERC721/ERC721.sol\":3468:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_37:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3548:3561 address owner */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3564:3587 ERC721.ownerOf(tokenId) */\n tag_91\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3579:3586 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3564:3578 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3564:3587 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_91:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3548:3587 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3611:3616 owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3605:3616 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3605:3607 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3605:3616 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3597:3654 require(to != owner, \"ERC721: approval to current owner\") */\n tag_92\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_94\n jump\t// in\n tag_93:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_92:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3702:3707 owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3707 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3698 _msgSender() */\n tag_95\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3696 _msgSender */\n tag_96\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3698 _msgSender() */\n jump\t// in\n tag_95:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3707 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3748 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n dup1\n tag_97\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3711:3748 isApprovedForAll(owner, _msgSender()) */\n tag_98\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3728:3733 owner */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3735:3747 _msgSender() */\n tag_99\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3735:3745 _msgSender */\n tag_96\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3735:3747 _msgSender() */\n jump\t// in\n tag_99:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3711:3727 isApprovedForAll */\n tag_73\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3711:3748 isApprovedForAll(owner, _msgSender()) */\n jump\t// in\n tag_98:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3748 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n tag_97:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3665:3835 require(... */\n tag_100\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_101\n swap1\n tag_102\n jump\t// in\n tag_101:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_100:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3867 _approve(to, tokenId) */\n tag_103\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3855:3857 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3859:3866 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3854 _approve */\n tag_104\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3867 _approve(to, tokenId) */\n jump\t// in\n tag_103:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3538:3874 {... */\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3468:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4908 function transferFrom(address from, address to, uint256 tokenId) public virtual override {... */\n tag_41:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4771:4812 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_106\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4790:4802 _msgSender() */\n tag_107\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4790:4800 _msgSender */\n tag_96\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4790:4802 _msgSender() */\n jump\t// in\n tag_107:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4804:4811 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4771:4789 _isApprovedOrOwner */\n tag_108\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4771:4812 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_106:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4763:4862 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\") */\n tag_109\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_110\n swap1\n tag_111\n jump\t// in\n tag_110:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_109:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4873:4901 _transfer(from, to, tokenId) */\n tag_112\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4883:4887 from */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4889:4891 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4893:4900 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4873:4882 _transfer */\n tag_113\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4873:4901 _transfer(from, to, tokenId) */\n jump\t// in\n tag_112:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4908 function transferFrom(address from, address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4974:5123 function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {... */\n tag_44:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5077:5116 safeTransferFrom(from, to, tokenId, \"\") */\n tag_115\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5094:5098 from */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5100:5102 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5104:5111 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5077:5116 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/token/ERC721/ERC721.sol\":5077:5093 safeTransferFrom */\n tag_65\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5077:5116 safeTransferFrom(from, to, tokenId, \"\") */\n jump\t// in\n tag_115:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4974:5123 function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2409 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_47:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2262:2269 address */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2281:2294 address owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2314 _ownerOf(tokenId) */\n tag_117\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2306:2313 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2305 _ownerOf */\n tag_118\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2314 _ownerOf(tokenId) */\n jump\t// in\n tag_117:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2281:2314 address owner = _ownerOf(tokenId) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2349:2350 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2351 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2337 owner */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2351 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2324:2380 require(owner != address(0), \"ERC721: invalid token ID\") */\n tag_119\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_120\n swap1\n tag_121\n jump\t// in\n tag_120:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_119:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2397:2402 owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2390:2402 return owner */\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2409 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/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_52:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2001:2008 uint256 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2045:2046 0 */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2033 owner */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2093 require(owner != address(0), \"ERC721: address zero is not a valid owner\") */\n tag_123\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_124\n swap1\n tag_125\n jump\t// in\n tag_124:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_123:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2119 _balances */\n 0x03\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2126 _balances[owner] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2120:2125 owner */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2126 _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/token/ERC721/ERC721.sol\":2103:2126 return _balances[owner] */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 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/token/ERC721/ERC721.sol\":2633:2735 function symbol() public view virtual override returns (string memory) {... */\n tag_56:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2689:2702 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2721:2728 _symbol */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2714:2728 return _symbol */\n dup1\n sload\n tag_127\n swap1\n tag_82\n jump\t// in\n tag_127:\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_128\n swap1\n tag_82\n jump\t// in\n tag_128:\n dup1\n iszero\n tag_129\n jumpi\n dup1\n 0x1f\n lt\n tag_130\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_129)\n tag_130:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_131:\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_131\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_129:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2633:2735 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_61:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4315 _setApprovalForAll(_msgSender(), operator, approved) */\n tag_133\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4294 _msgSender() */\n tag_134\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4292 _msgSender */\n tag_96\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4294 _msgSender() */\n jump\t// in\n tag_134:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4296:4304 operator */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4306:4314 approved */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4281 _setApprovalForAll */\n tag_135\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4315 _setApprovalForAll(_msgSender(), operator, approved) */\n jump\t// in\n tag_133:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5189:5465 function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {... */\n tag_65:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5319:5360 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_137\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5338:5350 _msgSender() */\n tag_138\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5338:5348 _msgSender */\n tag_96\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5338:5350 _msgSender() */\n jump\t// in\n tag_138:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5352:5359 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5319:5337 _isApprovedOrOwner */\n tag_108\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5319:5360 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_137:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5311:5410 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\") */\n tag_139\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_140\n swap1\n tag_111\n jump\t// in\n tag_140:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_139:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5420:5458 _safeTransfer(from, to, tokenId, data) */\n tag_141\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5434:5438 from */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5440:5442 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5444:5451 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5453:5457 data */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5420:5433 _safeTransfer */\n tag_142\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5420:5458 _safeTransfer(from, to, tokenId, data) */\n jump\t// in\n tag_141:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":5189:5465 function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2801:3077 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_68:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2874:2887 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2899:2922 _requireMinted(tokenId) */\n tag_144\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2914:2921 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2899:2913 _requireMinted */\n tag_89\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2899:2922 _requireMinted(tokenId) */\n jump\t// in\n tag_144:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2933:2954 string memory baseURI */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2957:2967 _baseURI() */\n tag_145\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2957:2965 _baseURI */\n tag_146\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2957:2967 _baseURI() */\n jump\t// in\n tag_145:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2933:2967 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3008:3009 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2990:2997 baseURI */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2984:3005 bytes(baseURI).length */\n mload\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2984:3009 bytes(baseURI).length > 0 */\n gt\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2984:3070 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_147\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_148)\n tag_147:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3036:3043 baseURI */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3045:3063 tokenId.toString() */\n tag_149\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3045:3052 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3045:3061 tokenId.toString */\n tag_150\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3045:3063 tokenId.toString() */\n jump\t// in\n tag_149:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3019:3064 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_151\n swap3\n swap2\n swap1\n tag_152\n jump\t// in\n tag_151:\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/token/ERC721/ERC721.sol\":2984:3070 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_148:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2977:3070 return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":2801:3077 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/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_73:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4485:4489 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4526 _operatorApprovals */\n 0x05\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _operatorApprovals[owner] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4527:4532 owner */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _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/token/ERC721/ERC721.sol\":4508:4543 _operatorApprovals[owner][operator] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4534:4542 operator */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4543 _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/token/ERC721/ERC721.sol\":4501:4543 return _operatorApprovals[owner][operator] */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 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/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n tag_79:\n /* \".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":914:918 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":952:977 type(IERC165).interfaceId */\n 0x01ffc9a700000000000000000000000000000000000000000000000000000000\n /* \".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:948 interfaceId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":930:977 return interfaceId == type(IERC165).interfaceId */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/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/token/ERC721/ERC721.sol\":13240:13373 function _requireMinted(uint256 tokenId) internal view virtual {... */\n tag_89:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13321:13337 _exists(tokenId) */\n tag_156\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13329:13336 tokenId */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13321:13328 _exists */\n tag_157\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13321:13337 _exists(tokenId) */\n jump\t// in\n tag_156:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13313:13366 require(_exists(tokenId), \"ERC721: invalid token ID\") */\n tag_158\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_159\n swap1\n tag_121\n jump\t// in\n tag_159:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_158:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13240:13373 function _requireMinted(uint256 tokenId) internal view virtual {... */\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_96:\n /* \".deps/npm/@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \".deps/npm/@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12572:12743 function _approve(address to, uint256 tokenId) internal virtual {... */\n tag_104:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12673:12675 to */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12646:12661 _tokenApprovals */\n 0x04\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12646:12670 _tokenApprovals[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12662:12669 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12646:12670 _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/token/ERC721/ERC721.sol\":12646:12675 _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/token/ERC721/ERC721.sol\":12728:12735 tokenId */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12724:12726 to */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12690:12736 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12699:12722 ERC721.ownerOf(tokenId) */\n tag_162\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12714:12721 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12699:12713 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12699:12722 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_162:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12690:12736 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/token/ERC721/ERC721.sol\":12572:12743 function _approve(address to, uint256 tokenId) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7404:7665 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n tag_108:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7497:7501 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7513:7526 address owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7529:7552 ERC721.ownerOf(tokenId) */\n tag_164\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7544:7551 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7529:7543 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7529:7552 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_164:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7513:7552 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7581:7586 owner */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7570:7586 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7570:7577 spender */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7570:7586 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7570:7622 spender == owner || isApprovedForAll(owner, spender) */\n dup1\n tag_165\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7590:7622 isApprovedForAll(owner, spender) */\n tag_166\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7607:7612 owner */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7614:7621 spender */\n dup6\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7590:7606 isApprovedForAll */\n tag_73\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7590:7622 isApprovedForAll(owner, spender) */\n jump\t// in\n tag_166:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7570:7622 spender == owner || isApprovedForAll(owner, spender) */\n tag_165:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7570:7657 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n dup1\n tag_167\n jumpi\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7650:7657 spender */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7626:7657 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7626:7646 getApproved(tokenId) */\n tag_168\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7638:7645 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7626:7637 getApproved */\n tag_31\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7626:7646 getApproved(tokenId) */\n jump\t// in\n tag_168:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7626:7657 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7570:7657 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n tag_167:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7562:7658 return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender) */\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7404:7665 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/token/ERC721/ERC721.sol\":11257:12460 function _transfer(address from, address to, uint256 tokenId) internal virtual {... */\n tag_113:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11381:11385 from */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11354:11385 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11354:11377 ERC721.ownerOf(tokenId) */\n tag_170\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11369:11376 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11354:11368 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11354:11377 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_170:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11354:11385 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11346:11427 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_171\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_172\n swap1\n tag_173\n jump\t// in\n tag_172:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_171:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11459:11460 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11445:11461 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11445:11447 to */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11445:11461 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11437:11502 require(to != address(0), \"ERC721: transfer to the zero address\") */\n tag_174\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_175\n swap1\n tag_176\n jump\t// in\n tag_175:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_174:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11513:11555 _beforeTokenTransfer(from, to, tokenId, 1) */\n tag_177\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11534:11538 from */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11540:11542 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11544:11551 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11553:11554 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11513:11533 _beforeTokenTransfer */\n tag_178\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11513:11555 _beforeTokenTransfer(from, to, tokenId, 1) */\n jump\t// in\n tag_177:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11682:11686 from */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11655:11686 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11655:11678 ERC721.ownerOf(tokenId) */\n tag_179\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11670:11677 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11655:11669 ERC721.ownerOf */\n tag_47\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11655:11678 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_179:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11655:11686 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11647:11728 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_180\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_181\n swap1\n tag_173\n jump\t// in\n tag_181:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_180:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11797:11812 _tokenApprovals */\n 0x04\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11797:11821 _tokenApprovals[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11813:11820 tokenId */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11797:11821 _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/token/ERC721/ERC721.sol\":11790:11821 delete _tokenApprovals[tokenId] */\n 0x0100\n exp\n dup2\n sload\n swap1\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n sstore\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12284:12285 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12265:12274 _balances */\n 0x03\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12265:12280 _balances[from] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12275:12279 from */\n dup6\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12265:12280 _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/token/ERC721/ERC721.sol\":12265:12285 _balances[from] -= 1 */\n dup3\n dup3\n sload\n sub\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12316:12317 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12299:12308 _balances */\n 0x03\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12299:12312 _balances[to] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12309:12311 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12299:12312 _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/token/ERC721/ERC721.sol\":12299:12317 _balances[to] += 1 */\n dup3\n dup3\n sload\n add\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12356:12358 to */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12337:12344 _owners */\n 0x02\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12337:12353 _owners[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12345:12352 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12337:12353 _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/token/ERC721/ERC721.sol\":12337:12358 _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/token/ERC721/ERC721.sol\":12393:12400 tokenId */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12389:12391 to */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12374:12401 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12383:12387 from */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12374:12401 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/token/ERC721/ERC721.sol\":12412:12453 _afterTokenTransfer(from, to, tokenId, 1) */\n tag_182\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12432:12436 from */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12438:12440 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12442:12449 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12451:12452 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12412:12431 _afterTokenTransfer */\n tag_183\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12412:12453 _afterTokenTransfer(from, to, tokenId, 1) */\n jump\t// in\n tag_182:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":11257:12460 function _transfer(address from, address to, uint256 tokenId) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6702:6817 function _ownerOf(uint256 tokenId) internal view virtual returns (address) {... */\n tag_118:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6768:6775 address */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6794:6801 _owners */\n 0x02\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6794:6810 _owners[tokenId] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6802:6809 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6794:6810 _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/token/ERC721/ERC721.sol\":6787:6810 return _owners[tokenId] */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6702:6817 function _ownerOf(uint256 tokenId) internal view virtual returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12879:13156 function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {... */\n tag_135:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12999:13007 operator */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12990:13007 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12990:12995 owner */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12990:13007 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12982:13037 require(owner != operator, \"ERC721: approve to caller\") */\n tag_186\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_187\n swap1\n tag_188\n jump\t// in\n tag_187:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_186:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13085:13093 approved */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13047:13065 _operatorApprovals */\n 0x05\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13047:13072 _operatorApprovals[owner] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13066:13071 owner */\n dup6\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13047:13072 _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/token/ERC721/ERC721.sol\":13047:13082 _operatorApprovals[owner][operator] */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13073:13081 operator */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13047:13082 _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/token/ERC721/ERC721.sol\":13047:13093 _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/token/ERC721/ERC721.sol\":13130:13138 operator */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13108:13149 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13123:13128 owner */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13108:13149 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13140:13148 approved */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13108:13149 ApprovalForAll(owner, operator, approved) */\n mload(0x40)\n tag_189\n swap2\n swap1\n tag_23\n jump\t// in\n tag_189:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":12879:13156 function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6326:6593 function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {... */\n tag_142:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6438:6466 _transfer(from, to, tokenId) */\n tag_191\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6448:6452 from */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6454:6456 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6458:6465 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6438:6447 _transfer */\n tag_113\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6438:6466 _transfer(from, to, tokenId) */\n jump\t// in\n tag_191:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6484:6531 _checkOnERC721Received(from, to, tokenId, data) */\n tag_192\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6507:6511 from */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6513:6515 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6517:6524 tokenId */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6526:6530 data */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6484:6506 _checkOnERC721Received */\n tag_193\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6484:6531 _checkOnERC721Received(from, to, tokenId, data) */\n jump\t// in\n tag_192:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6476:6586 require(_checkOnERC721Received(from, to, tokenId, data), \"ERC721: transfer to non ERC721Receiver implementer\") */\n tag_194\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_195\n swap1\n tag_196\n jump\t// in\n tag_195:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_194:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":6326:6593 function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3319:3411 function _baseURI() internal view virtual returns (string memory) {... */\n tag_146:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3370:3383 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":3395:3404 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/token/ERC721/ERC721.sol\":3319:3411 function _baseURI() internal view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":447:1143 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_150:\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":503:516 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":552:566 uint256 length */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":589:590 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":569:586 Math.log10(value) */\n tag_199\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":580:585 value */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":569:579 Math.log10 */\n tag_200\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":569:586 Math.log10(value) */\n jump\t// in\n tag_199:\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":569:590 Math.log10(value) + 1 */\n add\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":552:590 uint256 length = Math.log10(value) + 1 */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":604:624 string memory buffer */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":638:644 length */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":627:645 new string(length) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_201\n jumpi\n tag_202\n tag_203\n jump\t// in\n tag_202:\n tag_201:\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_204\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_204:\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":604:645 string memory buffer = new string(length) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":659:670 uint256 ptr */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":785:791 length */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":781:783 32 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":777:792 add(32, length) */\n add\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":769:775 buffer */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":765:793 add(buffer, add(32, length)) */\n add\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":758:793 ptr := add(buffer, add(32, length)) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":820:1100 while (true) {... */\n tag_205:\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":827:831 true */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":820:1100 while (true) {... */\n iszero\n tag_206\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":851:856 ptr-- */\n dup1\n dup1\n 0x01\n swap1\n sub\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":990:998 _SYMBOLS */\n 0x3031323334353637383961626364656600000000000000000000000000000000\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":985:987 10 */\n 0x0a\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":978:983 value */\n dup7\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":974:988 mod(value, 10) */\n mod\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":969:999 byte(mod(value, 10), _SYMBOLS) */\n byte\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":964:967 ptr */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":956:1000 mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) */\n mstore8\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1044:1046 10 */\n 0x0a\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1035:1046 value /= 10 */\n dup6\n dup2\n tag_207\n jumpi\n tag_208\n tag_209\n jump\t// in\n tag_208:\n tag_207:\n div\n swap5\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1077:1078 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1068:1073 value */\n dup6\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1068:1078 value == 0 */\n eq\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1064:1085 if (value == 0) break */\n iszero\n tag_210\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1080:1085 break */\n jump(tag_206)\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1064:1085 if (value == 0) break */\n tag_210:\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":820:1100 while (true) {... */\n jump(tag_205)\n tag_206:\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1120:1126 buffer */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":1113:1126 return buffer */\n swap4\n pop\n pop\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Strings.sol\":447:1143 function toString(uint256 value) internal pure returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7120:7246 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n tag_157:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7185:7189 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7237:7238 0 */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7208:7239 _ownerOf(tokenId) != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7208:7225 _ownerOf(tokenId) */\n tag_212\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7217:7224 tokenId */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7208:7216 _ownerOf */\n tag_118\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7208:7225 _ownerOf(tokenId) */\n jump\t// in\n tag_212:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7208:7239 _ownerOf(tokenId) != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7201:7239 return _ownerOf(tokenId) != address(0) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":7120:7246 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":15472:15588 function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} */\n tag_178:\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":16294:16409 function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} */\n tag_183:\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13925:14756 function _checkOnERC721Received(... */\n tag_193:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14074:14078 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14094:14109 to.isContract() */\n tag_216\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14094:14096 to */\n dup5\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14094:14107 to.isContract */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n tag_217\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14094:14109 to.isContract() */\n jump\t// in\n tag_216:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14090:14750 if (to.isContract()) {... */\n iszero\n tag_218\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14145:14147 to */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14129:14165 IERC721Receiver(to).onERC721Received */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x150b7a02\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14166:14178 _msgSender() */\n tag_219\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14166:14176 _msgSender */\n tag_96\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14166:14178 _msgSender() */\n jump\t// in\n tag_219:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14180:14184 from */\n dup8\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14186:14193 tokenId */\n dup7\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14195:14199 data */\n dup7\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14129:14200 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_220\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_221\n jump\t// in\n tag_220:\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_222\n jumpi\n 0x00\n dup1\n revert\n tag_222:\n pop\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_223\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_224\n swap2\n swap1\n tag_225\n jump\t// in\n tag_224:\n 0x01\n tag_223:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14125:14698 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {... */\n tag_226\n jumpi\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_231\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_230)\n tag_231:\n 0x60\n swap2\n pop\n tag_230:\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14384:14385 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14367:14373 reason */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14367:14380 reason.length */\n mload\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14367:14385 reason.length == 0 */\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14363:14684 if (reason.length == 0) {... */\n iszero\n tag_232\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14409:14469 revert(\"ERC721: transfer to non ERC721Receiver implementer\") */\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_233\n swap1\n tag_196\n jump\t// in\n tag_233:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14363:14684 if (reason.length == 0) {... */\n tag_232:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14636:14642 reason */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14630:14643 mload(reason) */\n mload\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14621:14627 reason */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14617:14619 32 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14613:14628 add(32, reason) */\n add\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14606:14644 revert(add(32, reason), mload(reason)) */\n revert\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14125:14698 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {... */\n tag_226:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14260:14301 IERC721Receiver.onERC721Received.selector */\n shl(0xe0, 0x150b7a02)\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14250:14301 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14250:14256 retval */\n dup2\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14250:14301 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14243:14301 return retval == IERC721Receiver.onERC721Received.selector */\n swap2\n pop\n pop\n jump(tag_215)\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14090:14750 if (to.isContract()) {... */\n tag_218:\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14735:14739 true */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":14728:14739 return true */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol\":13925:14756 function _checkOnERC721Received(... */\n tag_215:\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10139:11055 function log10(uint256 value) internal pure returns (uint256) {... */\n tag_200:\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10192:10199 uint256 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10211:10225 uint256 result */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10228:10229 0 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10211:10229 uint256 result = 0 */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10276:10284 10 ** 64 */\n 0x184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10267:10272 value */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10267:10284 value >= 10 ** 64 */\n lt\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10263:10366 if (value >= 10 ** 64) {... */\n tag_238\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10313:10321 10 ** 64 */\n 0x184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10304:10321 value /= 10 ** 64 */\n dup4\n dup2\n tag_239\n jumpi\n tag_240\n tag_209\n jump\t// in\n tag_240:\n tag_239:\n div\n swap3\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10349:10351 64 */\n 0x40\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10339:10351 result += 64 */\n dup2\n add\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10263:10366 if (value >= 10 ** 64) {... */\n tag_238:\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10392:10400 10 ** 32 */\n 0x04ee2d6d415b85acef8100000000\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10383:10388 value */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10383:10400 value >= 10 ** 32 */\n lt\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10379:10482 if (value >= 10 ** 32) {... */\n tag_241\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10429:10437 10 ** 32 */\n 0x04ee2d6d415b85acef8100000000\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10420:10437 value /= 10 ** 32 */\n dup4\n dup2\n tag_242\n jumpi\n tag_243\n tag_209\n jump\t// in\n tag_243:\n tag_242:\n div\n swap3\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10465:10467 32 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10455:10467 result += 32 */\n dup2\n add\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10379:10482 if (value >= 10 ** 32) {... */\n tag_241:\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10508:10516 10 ** 16 */\n 0x2386f26fc10000\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10499:10504 value */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10499:10516 value >= 10 ** 16 */\n lt\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10495:10598 if (value >= 10 ** 16) {... */\n tag_244\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10545:10553 10 ** 16 */\n 0x2386f26fc10000\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10536:10553 value /= 10 ** 16 */\n dup4\n dup2\n tag_245\n jumpi\n tag_246\n tag_209\n jump\t// in\n tag_246:\n tag_245:\n div\n swap3\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10581:10583 16 */\n 0x10\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10571:10583 result += 16 */\n dup2\n add\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10495:10598 if (value >= 10 ** 16) {... */\n tag_244:\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10624:10631 10 ** 8 */\n 0x05f5e100\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10615:10620 value */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10615:10631 value >= 10 ** 8 */\n lt\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10611:10711 if (value >= 10 ** 8) {... */\n tag_247\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10660:10667 10 ** 8 */\n 0x05f5e100\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10651:10667 value /= 10 ** 8 */\n dup4\n dup2\n tag_248\n jumpi\n tag_249\n tag_209\n jump\t// in\n tag_249:\n tag_248:\n div\n swap3\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10695:10696 8 */\n 0x08\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10685:10696 result += 8 */\n dup2\n add\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10611:10711 if (value >= 10 ** 8) {... */\n tag_247:\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10737:10744 10 ** 4 */\n 0x2710\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10728:10733 value */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10728:10744 value >= 10 ** 4 */\n lt\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10724:10824 if (value >= 10 ** 4) {... */\n tag_250\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10773:10780 10 ** 4 */\n 0x2710\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10764:10780 value /= 10 ** 4 */\n dup4\n dup2\n tag_251\n jumpi\n tag_252\n tag_209\n jump\t// in\n tag_252:\n tag_251:\n div\n swap3\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10808:10809 4 */\n 0x04\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10798:10809 result += 4 */\n dup2\n add\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10724:10824 if (value >= 10 ** 4) {... */\n tag_250:\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10850:10857 10 ** 2 */\n 0x64\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10841:10846 value */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10841:10857 value >= 10 ** 2 */\n lt\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10837:10937 if (value >= 10 ** 2) {... */\n tag_253\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10886:10893 10 ** 2 */\n 0x64\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10877:10893 value /= 10 ** 2 */\n dup4\n dup2\n tag_254\n jumpi\n tag_255\n tag_209\n jump\t// in\n tag_255:\n tag_254:\n div\n swap3\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10921:10922 2 */\n 0x02\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10911:10922 result += 2 */\n dup2\n add\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10837:10937 if (value >= 10 ** 2) {... */\n tag_253:\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10963:10970 10 ** 1 */\n 0x0a\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10954:10959 value */\n dup4\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10954:10970 value >= 10 ** 1 */\n lt\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10950:11016 if (value >= 10 ** 1) {... */\n tag_256\n jumpi\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":11000:11001 1 */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10990:11001 result += 1 */\n dup2\n add\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10950:11016 if (value >= 10 ** 1) {... */\n tag_256:\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":11042:11048 result */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":11035:11048 return result */\n swap2\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/math/Math.sol\":10139:11055 function log10(uint256 value) internal pure returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts/utils/Address.sol\":1412:1732 function isContract(address account) internal view returns (bool) {... */\n tag_217:\n /* \".deps/npm/@openzeppelin/contracts/utils/Address.sol\":1472:1476 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts/utils/Address.sol\":1724:1725 0 */\n dup1\n /* \".deps/npm/@openzeppelin/contracts/utils/Address.sol\":1702:1709 account */\n dup3\n /* \".deps/npm/@openzeppelin/contracts/utils/Address.sol\":1702:1721 account.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \".deps/npm/@openzeppelin/contracts/utils/Address.sol\":1702:1725 account.code.length > 0 */\n gt\n /* \".deps/npm/@openzeppelin/contracts/utils/Address.sol\":1695:1725 return account.code.length > 0 */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts/utils/Address.sol\":1412:1732 function isContract(address account) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7:82 */\n tag_258:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_259:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\n tag_260:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:483 */\n tag_261:\n /* \"#utility.yul\":370:377 */\n 0x00\n /* \"#utility.yul\":410:476 */\n 0xffffffff00000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":403:408 */\n dup3\n /* \"#utility.yul\":399:477 */\n and\n /* \"#utility.yul\":388:477 */\n swap1\n pop\n /* \"#utility.yul\":334:483 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":489:609 */\n tag_262:\n /* \"#utility.yul\":561:584 */\n tag_321\n /* \"#utility.yul\":578:583 */\n dup2\n /* \"#utility.yul\":561:584 */\n tag_261\n jump\t// in\n tag_321:\n /* \"#utility.yul\":554:559 */\n dup2\n /* \"#utility.yul\":551:585 */\n eq\n /* \"#utility.yul\":541:603 */\n tag_322\n jumpi\n /* \"#utility.yul\":599:600 */\n 0x00\n /* \"#utility.yul\":596:597 */\n dup1\n /* \"#utility.yul\":589:601 */\n revert\n /* \"#utility.yul\":541:603 */\n tag_322:\n /* \"#utility.yul\":489:609 */\n pop\n jump\t// out\n /* \"#utility.yul\":615:752 */\n tag_263:\n /* \"#utility.yul\":660:665 */\n 0x00\n /* \"#utility.yul\":698:704 */\n dup2\n /* \"#utility.yul\":685:705 */\n calldataload\n /* \"#utility.yul\":676:705 */\n swap1\n pop\n /* \"#utility.yul\":714:746 */\n tag_324\n /* \"#utility.yul\":740:745 */\n dup2\n /* \"#utility.yul\":714:746 */\n tag_262\n jump\t// in\n tag_324:\n /* \"#utility.yul\":615:752 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":758:1085 */\n tag_20:\n /* \"#utility.yul\":816:822 */\n 0x00\n /* \"#utility.yul\":865:867 */\n 0x20\n /* \"#utility.yul\":853:862 */\n dup3\n /* \"#utility.yul\":844:851 */\n dup5\n /* \"#utility.yul\":840:863 */\n sub\n /* \"#utility.yul\":836:868 */\n slt\n /* \"#utility.yul\":833:952 */\n iszero\n tag_326\n jumpi\n /* \"#utility.yul\":871:950 */\n tag_327\n tag_259\n jump\t// in\n tag_327:\n /* \"#utility.yul\":833:952 */\n tag_326:\n /* \"#utility.yul\":991:992 */\n 0x00\n /* \"#utility.yul\":1016:1068 */\n tag_328\n /* \"#utility.yul\":1060:1067 */\n dup5\n /* \"#utility.yul\":1051:1057 */\n dup3\n /* \"#utility.yul\":1040:1049 */\n dup6\n /* \"#utility.yul\":1036:1058 */\n add\n /* \"#utility.yul\":1016:1068 */\n tag_263\n jump\t// in\n tag_328:\n /* \"#utility.yul\":1006:1068 */\n swap2\n pop\n /* \"#utility.yul\":962:1078 */\n pop\n /* \"#utility.yul\":758:1085 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1091:1181 */\n tag_264:\n /* \"#utility.yul\":1125:1132 */\n 0x00\n /* \"#utility.yul\":1168:1173 */\n dup2\n /* \"#utility.yul\":1161:1174 */\n iszero\n /* \"#utility.yul\":1154:1175 */\n iszero\n /* \"#utility.yul\":1143:1175 */\n swap1\n pop\n /* \"#utility.yul\":1091:1181 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1187:1296 */\n tag_265:\n /* \"#utility.yul\":1268:1289 */\n tag_331\n /* \"#utility.yul\":1283:1288 */\n dup2\n /* \"#utility.yul\":1268:1289 */\n tag_264\n jump\t// in\n tag_331:\n /* \"#utility.yul\":1263:1266 */\n dup3\n /* \"#utility.yul\":1256:1290 */\n mstore\n /* \"#utility.yul\":1187:1296 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1302:1512 */\n tag_23:\n /* \"#utility.yul\":1389:1393 */\n 0x00\n /* \"#utility.yul\":1427:1429 */\n 0x20\n /* \"#utility.yul\":1416:1425 */\n dup3\n /* \"#utility.yul\":1412:1430 */\n add\n /* \"#utility.yul\":1404:1430 */\n swap1\n pop\n /* \"#utility.yul\":1440:1505 */\n tag_333\n /* \"#utility.yul\":1502:1503 */\n 0x00\n /* \"#utility.yul\":1491:1500 */\n dup4\n /* \"#utility.yul\":1487:1504 */\n add\n /* \"#utility.yul\":1478:1484 */\n dup5\n /* \"#utility.yul\":1440:1505 */\n tag_265\n jump\t// in\n tag_333:\n /* \"#utility.yul\":1302:1512 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1518:1617 */\n tag_266:\n /* \"#utility.yul\":1570:1576 */\n 0x00\n /* \"#utility.yul\":1604:1609 */\n dup2\n /* \"#utility.yul\":1598:1610 */\n mload\n /* \"#utility.yul\":1588:1610 */\n swap1\n pop\n /* \"#utility.yul\":1518:1617 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1623:1792 */\n tag_267:\n /* \"#utility.yul\":1707:1718 */\n 0x00\n /* \"#utility.yul\":1741:1747 */\n dup3\n /* \"#utility.yul\":1736:1739 */\n dup3\n /* \"#utility.yul\":1729:1748 */\n mstore\n /* \"#utility.yul\":1781:1785 */\n 0x20\n /* \"#utility.yul\":1776:1779 */\n dup3\n /* \"#utility.yul\":1772:1786 */\n add\n /* \"#utility.yul\":1757:1786 */\n swap1\n pop\n /* \"#utility.yul\":1623:1792 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1798:2105 */\n tag_268:\n /* \"#utility.yul\":1866:1867 */\n 0x00\n /* \"#utility.yul\":1876:1989 */\n tag_337:\n /* \"#utility.yul\":1890:1896 */\n dup4\n /* \"#utility.yul\":1887:1888 */\n dup2\n /* \"#utility.yul\":1884:1897 */\n lt\n /* \"#utility.yul\":1876:1989 */\n iszero\n tag_339\n jumpi\n /* \"#utility.yul\":1975:1976 */\n dup1\n /* \"#utility.yul\":1970:1973 */\n dup3\n /* \"#utility.yul\":1966:1977 */\n add\n /* \"#utility.yul\":1960:1978 */\n mload\n /* \"#utility.yul\":1956:1957 */\n dup2\n /* \"#utility.yul\":1951:1954 */\n dup5\n /* \"#utility.yul\":1947:1958 */\n add\n /* \"#utility.yul\":1940:1979 */\n mstore\n /* \"#utility.yul\":1912:1914 */\n 0x20\n /* \"#utility.yul\":1909:1910 */\n dup2\n /* \"#utility.yul\":1905:1915 */\n add\n /* \"#utility.yul\":1900:1915 */\n swap1\n pop\n /* \"#utility.yul\":1876:1989 */\n jump(tag_337)\n tag_339:\n /* \"#utility.yul\":2007:2013 */\n dup4\n /* \"#utility.yul\":2004:2005 */\n dup2\n /* \"#utility.yul\":2001:2014 */\n gt\n /* \"#utility.yul\":1998:2099 */\n iszero\n tag_340\n jumpi\n /* \"#utility.yul\":2087:2088 */\n 0x00\n /* \"#utility.yul\":2078:2084 */\n dup5\n /* \"#utility.yul\":2073:2076 */\n dup5\n /* \"#utility.yul\":2069:2085 */\n add\n /* \"#utility.yul\":2062:2089 */\n mstore\n /* \"#utility.yul\":1998:2099 */\n tag_340:\n /* \"#utility.yul\":1847:2105 */\n pop\n /* \"#utility.yul\":1798:2105 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2111:2213 */\n tag_269:\n /* \"#utility.yul\":2152:2158 */\n 0x00\n /* \"#utility.yul\":2203:2205 */\n 0x1f\n /* \"#utility.yul\":2199:2206 */\n not\n /* \"#utility.yul\":2194:2196 */\n 0x1f\n /* \"#utility.yul\":2187:2192 */\n dup4\n /* \"#utility.yul\":2183:2197 */\n add\n /* \"#utility.yul\":2179:2207 */\n and\n /* \"#utility.yul\":2169:2207 */\n swap1\n pop\n /* \"#utility.yul\":2111:2213 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2219:2583 */\n tag_270:\n /* \"#utility.yul\":2307:2310 */\n 0x00\n /* \"#utility.yul\":2335:2374 */\n tag_343\n /* \"#utility.yul\":2368:2373 */\n dup3\n /* \"#utility.yul\":2335:2374 */\n tag_266\n jump\t// in\n tag_343:\n /* \"#utility.yul\":2390:2461 */\n tag_344\n /* \"#utility.yul\":2454:2460 */\n dup2\n /* \"#utility.yul\":2449:2452 */\n dup6\n /* \"#utility.yul\":2390:2461 */\n tag_267\n jump\t// in\n tag_344:\n /* \"#utility.yul\":2383:2461 */\n swap4\n pop\n /* \"#utility.yul\":2470:2522 */\n tag_345\n /* \"#utility.yul\":2515:2521 */\n dup2\n /* \"#utility.yul\":2510:2513 */\n dup6\n /* \"#utility.yul\":2503:2507 */\n 0x20\n /* \"#utility.yul\":2496:2501 */\n dup7\n /* \"#utility.yul\":2492:2508 */\n add\n /* \"#utility.yul\":2470:2522 */\n tag_268\n jump\t// in\n tag_345:\n /* \"#utility.yul\":2547:2576 */\n tag_346\n /* \"#utility.yul\":2569:2575 */\n dup2\n /* \"#utility.yul\":2547:2576 */\n tag_269\n jump\t// in\n tag_346:\n /* \"#utility.yul\":2542:2545 */\n dup5\n /* \"#utility.yul\":2538:2577 */\n add\n /* \"#utility.yul\":2531:2577 */\n swap2\n pop\n /* \"#utility.yul\":2311:2583 */\n pop\n /* \"#utility.yul\":2219:2583 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2589:2902 */\n tag_27:\n /* \"#utility.yul\":2702:2706 */\n 0x00\n /* \"#utility.yul\":2740:2742 */\n 0x20\n /* \"#utility.yul\":2729:2738 */\n dup3\n /* \"#utility.yul\":2725:2743 */\n add\n /* \"#utility.yul\":2717:2743 */\n swap1\n pop\n /* \"#utility.yul\":2789:2798 */\n dup2\n /* \"#utility.yul\":2783:2787 */\n dup2\n /* \"#utility.yul\":2779:2799 */\n sub\n /* \"#utility.yul\":2775:2776 */\n 0x00\n /* \"#utility.yul\":2764:2773 */\n dup4\n /* \"#utility.yul\":2760:2777 */\n add\n /* \"#utility.yul\":2753:2800 */\n mstore\n /* \"#utility.yul\":2817:2895 */\n tag_348\n /* \"#utility.yul\":2890:2894 */\n dup2\n /* \"#utility.yul\":2881:2887 */\n dup5\n /* \"#utility.yul\":2817:2895 */\n tag_270\n jump\t// in\n tag_348:\n /* \"#utility.yul\":2809:2895 */\n swap1\n pop\n /* \"#utility.yul\":2589:2902 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2908:2985 */\n tag_271:\n /* \"#utility.yul\":2945:2952 */\n 0x00\n /* \"#utility.yul\":2974:2979 */\n dup2\n /* \"#utility.yul\":2963:2979 */\n swap1\n pop\n /* \"#utility.yul\":2908:2985 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2991:3113 */\n tag_272:\n /* \"#utility.yul\":3064:3088 */\n tag_351\n /* \"#utility.yul\":3082:3087 */\n dup2\n /* \"#utility.yul\":3064:3088 */\n tag_271\n jump\t// in\n tag_351:\n /* \"#utility.yul\":3057:3062 */\n dup2\n /* \"#utility.yul\":3054:3089 */\n eq\n /* \"#utility.yul\":3044:3107 */\n tag_352\n jumpi\n /* \"#utility.yul\":3103:3104 */\n 0x00\n /* \"#utility.yul\":3100:3101 */\n dup1\n /* \"#utility.yul\":3093:3105 */\n revert\n /* \"#utility.yul\":3044:3107 */\n tag_352:\n /* \"#utility.yul\":2991:3113 */\n pop\n jump\t// out\n /* \"#utility.yul\":3119:3258 */\n tag_273:\n /* \"#utility.yul\":3165:3170 */\n 0x00\n /* \"#utility.yul\":3203:3209 */\n dup2\n /* \"#utility.yul\":3190:3210 */\n calldataload\n /* \"#utility.yul\":3181:3210 */\n swap1\n pop\n /* \"#utility.yul\":3219:3252 */\n tag_354\n /* \"#utility.yul\":3246:3251 */\n dup2\n /* \"#utility.yul\":3219:3252 */\n tag_272\n jump\t// in\n tag_354:\n /* \"#utility.yul\":3119:3258 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3264:3593 */\n tag_30:\n /* \"#utility.yul\":3323:3329 */\n 0x00\n /* \"#utility.yul\":3372:3374 */\n 0x20\n /* \"#utility.yul\":3360:3369 */\n dup3\n /* \"#utility.yul\":3351:3358 */\n dup5\n /* \"#utility.yul\":3347:3370 */\n sub\n /* \"#utility.yul\":3343:3375 */\n slt\n /* \"#utility.yul\":3340:3459 */\n iszero\n tag_356\n jumpi\n /* \"#utility.yul\":3378:3457 */\n tag_357\n tag_259\n jump\t// in\n tag_357:\n /* \"#utility.yul\":3340:3459 */\n tag_356:\n /* \"#utility.yul\":3498:3499 */\n 0x00\n /* \"#utility.yul\":3523:3576 */\n tag_358\n /* \"#utility.yul\":3568:3575 */\n dup5\n /* \"#utility.yul\":3559:3565 */\n dup3\n /* \"#utility.yul\":3548:3557 */\n dup6\n /* \"#utility.yul\":3544:3566 */\n add\n /* \"#utility.yul\":3523:3576 */\n tag_273\n jump\t// in\n tag_358:\n /* \"#utility.yul\":3513:3576 */\n swap2\n pop\n /* \"#utility.yul\":3469:3586 */\n pop\n /* \"#utility.yul\":3264:3593 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3599:3725 */\n tag_274:\n /* \"#utility.yul\":3636:3643 */\n 0x00\n /* \"#utility.yul\":3676:3718 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":3669:3674 */\n dup3\n /* \"#utility.yul\":3665:3719 */\n and\n /* \"#utility.yul\":3654:3719 */\n swap1\n pop\n /* \"#utility.yul\":3599:3725 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3731:3827 */\n tag_275:\n /* \"#utility.yul\":3768:3775 */\n 0x00\n /* \"#utility.yul\":3797:3821 */\n tag_361\n /* \"#utility.yul\":3815:3820 */\n dup3\n /* \"#utility.yul\":3797:3821 */\n tag_274\n jump\t// in\n tag_361:\n /* \"#utility.yul\":3786:3821 */\n swap1\n pop\n /* \"#utility.yul\":3731:3827 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3833:3951 */\n tag_276:\n /* \"#utility.yul\":3920:3944 */\n tag_363\n /* \"#utility.yul\":3938:3943 */\n dup2\n /* \"#utility.yul\":3920:3944 */\n tag_275\n jump\t// in\n tag_363:\n /* \"#utility.yul\":3915:3918 */\n dup3\n /* \"#utility.yul\":3908:3945 */\n mstore\n /* \"#utility.yul\":3833:3951 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3957:4179 */\n tag_33:\n /* \"#utility.yul\":4050:4054 */\n 0x00\n /* \"#utility.yul\":4088:4090 */\n 0x20\n /* \"#utility.yul\":4077:4086 */\n dup3\n /* \"#utility.yul\":4073:4091 */\n add\n /* \"#utility.yul\":4065:4091 */\n swap1\n pop\n /* \"#utility.yul\":4101:4172 */\n tag_365\n /* \"#utility.yul\":4169:4170 */\n 0x00\n /* \"#utility.yul\":4158:4167 */\n dup4\n /* \"#utility.yul\":4154:4171 */\n add\n /* \"#utility.yul\":4145:4151 */\n dup5\n /* \"#utility.yul\":4101:4172 */\n tag_276\n jump\t// in\n tag_365:\n /* \"#utility.yul\":3957:4179 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4185:4307 */\n tag_277:\n /* \"#utility.yul\":4258:4282 */\n tag_367\n /* \"#utility.yul\":4276:4281 */\n dup2\n /* \"#utility.yul\":4258:4282 */\n tag_275\n jump\t// in\n tag_367:\n /* \"#utility.yul\":4251:4256 */\n dup2\n /* \"#utility.yul\":4248:4283 */\n eq\n /* \"#utility.yul\":4238:4301 */\n tag_368\n jumpi\n /* \"#utility.yul\":4297:4298 */\n 0x00\n /* \"#utility.yul\":4294:4295 */\n dup1\n /* \"#utility.yul\":4287:4299 */\n revert\n /* \"#utility.yul\":4238:4301 */\n tag_368:\n /* \"#utility.yul\":4185:4307 */\n pop\n jump\t// out\n /* \"#utility.yul\":4313:4452 */\n tag_278:\n /* \"#utility.yul\":4359:4364 */\n 0x00\n /* \"#utility.yul\":4397:4403 */\n dup2\n /* \"#utility.yul\":4384:4404 */\n calldataload\n /* \"#utility.yul\":4375:4404 */\n swap1\n pop\n /* \"#utility.yul\":4413:4446 */\n tag_370\n /* \"#utility.yul\":4440:4445 */\n dup2\n /* \"#utility.yul\":4413:4446 */\n tag_277\n jump\t// in\n tag_370:\n /* \"#utility.yul\":4313:4452 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4458:4932 */\n tag_36:\n /* \"#utility.yul\":4526:4532 */\n 0x00\n /* \"#utility.yul\":4534:4540 */\n dup1\n /* \"#utility.yul\":4583:4585 */\n 0x40\n /* \"#utility.yul\":4571:4580 */\n dup4\n /* \"#utility.yul\":4562:4569 */\n dup6\n /* \"#utility.yul\":4558:4581 */\n sub\n /* \"#utility.yul\":4554:4586 */\n slt\n /* \"#utility.yul\":4551:4670 */\n iszero\n tag_372\n jumpi\n /* \"#utility.yul\":4589:4668 */\n tag_373\n tag_259\n jump\t// in\n tag_373:\n /* \"#utility.yul\":4551:4670 */\n tag_372:\n /* \"#utility.yul\":4709:4710 */\n 0x00\n /* \"#utility.yul\":4734:4787 */\n tag_374\n /* \"#utility.yul\":4779:4786 */\n dup6\n /* \"#utility.yul\":4770:4776 */\n dup3\n /* \"#utility.yul\":4759:4768 */\n dup7\n /* \"#utility.yul\":4755:4777 */\n add\n /* \"#utility.yul\":4734:4787 */\n tag_278\n jump\t// in\n tag_374:\n /* \"#utility.yul\":4724:4787 */\n swap3\n pop\n /* \"#utility.yul\":4680:4797 */\n pop\n /* \"#utility.yul\":4836:4838 */\n 0x20\n /* \"#utility.yul\":4862:4915 */\n tag_375\n /* \"#utility.yul\":4907:4914 */\n dup6\n /* \"#utility.yul\":4898:4904 */\n dup3\n /* \"#utility.yul\":4887:4896 */\n dup7\n /* \"#utility.yul\":4883:4905 */\n add\n /* \"#utility.yul\":4862:4915 */\n tag_273\n jump\t// in\n tag_375:\n /* \"#utility.yul\":4852:4915 */\n swap2\n pop\n /* \"#utility.yul\":4807:4925 */\n pop\n /* \"#utility.yul\":4458:4932 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4938:5557 */\n tag_40:\n /* \"#utility.yul\":5015:5021 */\n 0x00\n /* \"#utility.yul\":5023:5029 */\n dup1\n /* \"#utility.yul\":5031:5037 */\n 0x00\n /* \"#utility.yul\":5080:5082 */\n 0x60\n /* \"#utility.yul\":5068:5077 */\n dup5\n /* \"#utility.yul\":5059:5066 */\n dup7\n /* \"#utility.yul\":5055:5078 */\n sub\n /* \"#utility.yul\":5051:5083 */\n slt\n /* \"#utility.yul\":5048:5167 */\n iszero\n tag_377\n jumpi\n /* \"#utility.yul\":5086:5165 */\n tag_378\n tag_259\n jump\t// in\n tag_378:\n /* \"#utility.yul\":5048:5167 */\n tag_377:\n /* \"#utility.yul\":5206:5207 */\n 0x00\n /* \"#utility.yul\":5231:5284 */\n tag_379\n /* \"#utility.yul\":5276:5283 */\n dup7\n /* \"#utility.yul\":5267:5273 */\n dup3\n /* \"#utility.yul\":5256:5265 */\n dup8\n /* \"#utility.yul\":5252:5274 */\n add\n /* \"#utility.yul\":5231:5284 */\n tag_278\n jump\t// in\n tag_379:\n /* \"#utility.yul\":5221:5284 */\n swap4\n pop\n /* \"#utility.yul\":5177:5294 */\n pop\n /* \"#utility.yul\":5333:5335 */\n 0x20\n /* \"#utility.yul\":5359:5412 */\n tag_380\n /* \"#utility.yul\":5404:5411 */\n dup7\n /* \"#utility.yul\":5395:5401 */\n dup3\n /* \"#utility.yul\":5384:5393 */\n dup8\n /* \"#utility.yul\":5380:5402 */\n add\n /* \"#utility.yul\":5359:5412 */\n tag_278\n jump\t// in\n tag_380:\n /* \"#utility.yul\":5349:5412 */\n swap3\n pop\n /* \"#utility.yul\":5304:5422 */\n pop\n /* \"#utility.yul\":5461:5463 */\n 0x40\n /* \"#utility.yul\":5487:5540 */\n tag_381\n /* \"#utility.yul\":5532:5539 */\n dup7\n /* \"#utility.yul\":5523:5529 */\n dup3\n /* \"#utility.yul\":5512:5521 */\n dup8\n /* \"#utility.yul\":5508:5530 */\n add\n /* \"#utility.yul\":5487:5540 */\n tag_273\n jump\t// in\n tag_381:\n /* \"#utility.yul\":5477:5540 */\n swap2\n pop\n /* \"#utility.yul\":5432:5550 */\n pop\n /* \"#utility.yul\":4938:5557 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":5563:5892 */\n tag_51:\n /* \"#utility.yul\":5622:5628 */\n 0x00\n /* \"#utility.yul\":5671:5673 */\n 0x20\n /* \"#utility.yul\":5659:5668 */\n dup3\n /* \"#utility.yul\":5650:5657 */\n dup5\n /* \"#utility.yul\":5646:5669 */\n sub\n /* \"#utility.yul\":5642:5674 */\n slt\n /* \"#utility.yul\":5639:5758 */\n iszero\n tag_383\n jumpi\n /* \"#utility.yul\":5677:5756 */\n tag_384\n tag_259\n jump\t// in\n tag_384:\n /* \"#utility.yul\":5639:5758 */\n tag_383:\n /* \"#utility.yul\":5797:5798 */\n 0x00\n /* \"#utility.yul\":5822:5875 */\n tag_385\n /* \"#utility.yul\":5867:5874 */\n dup5\n /* \"#utility.yul\":5858:5864 */\n dup3\n /* \"#utility.yul\":5847:5856 */\n dup6\n /* \"#utility.yul\":5843:5865 */\n add\n /* \"#utility.yul\":5822:5875 */\n tag_278\n jump\t// in\n tag_385:\n /* \"#utility.yul\":5812:5875 */\n swap2\n pop\n /* \"#utility.yul\":5768:5885 */\n pop\n /* \"#utility.yul\":5563:5892 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5898:6016 */\n tag_279:\n /* \"#utility.yul\":5985:6009 */\n tag_387\n /* \"#utility.yul\":6003:6008 */\n dup2\n /* \"#utility.yul\":5985:6009 */\n tag_271\n jump\t// in\n tag_387:\n /* \"#utility.yul\":5980:5983 */\n dup3\n /* \"#utility.yul\":5973:6010 */\n mstore\n /* \"#utility.yul\":5898:6016 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6022:6244 */\n tag_54:\n /* \"#utility.yul\":6115:6119 */\n 0x00\n /* \"#utility.yul\":6153:6155 */\n 0x20\n /* \"#utility.yul\":6142:6151 */\n dup3\n /* \"#utility.yul\":6138:6156 */\n add\n /* \"#utility.yul\":6130:6156 */\n swap1\n pop\n /* \"#utility.yul\":6166:6237 */\n tag_389\n /* \"#utility.yul\":6234:6235 */\n 0x00\n /* \"#utility.yul\":6223:6232 */\n dup4\n /* \"#utility.yul\":6219:6236 */\n add\n /* \"#utility.yul\":6210:6216 */\n dup5\n /* \"#utility.yul\":6166:6237 */\n tag_279\n jump\t// in\n tag_389:\n /* \"#utility.yul\":6022:6244 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6250:6366 */\n tag_280:\n /* \"#utility.yul\":6320:6341 */\n tag_391\n /* \"#utility.yul\":6335:6340 */\n dup2\n /* \"#utility.yul\":6320:6341 */\n tag_264\n jump\t// in\n tag_391:\n /* \"#utility.yul\":6313:6318 */\n dup2\n /* \"#utility.yul\":6310:6342 */\n eq\n /* \"#utility.yul\":6300:6360 */\n tag_392\n jumpi\n /* \"#utility.yul\":6356:6357 */\n 0x00\n /* \"#utility.yul\":6353:6354 */\n dup1\n /* \"#utility.yul\":6346:6358 */\n revert\n /* \"#utility.yul\":6300:6360 */\n tag_392:\n /* \"#utility.yul\":6250:6366 */\n pop\n jump\t// out\n /* \"#utility.yul\":6372:6505 */\n tag_281:\n /* \"#utility.yul\":6415:6420 */\n 0x00\n /* \"#utility.yul\":6453:6459 */\n dup2\n /* \"#utility.yul\":6440:6460 */\n calldataload\n /* \"#utility.yul\":6431:6460 */\n swap1\n pop\n /* \"#utility.yul\":6469:6499 */\n tag_394\n /* \"#utility.yul\":6493:6498 */\n dup2\n /* \"#utility.yul\":6469:6499 */\n tag_280\n jump\t// in\n tag_394:\n /* \"#utility.yul\":6372:6505 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6511:6979 */\n tag_60:\n /* \"#utility.yul\":6576:6582 */\n 0x00\n /* \"#utility.yul\":6584:6590 */\n dup1\n /* \"#utility.yul\":6633:6635 */\n 0x40\n /* \"#utility.yul\":6621:6630 */\n dup4\n /* \"#utility.yul\":6612:6619 */\n dup6\n /* \"#utility.yul\":6608:6631 */\n sub\n /* \"#utility.yul\":6604:6636 */\n slt\n /* \"#utility.yul\":6601:6720 */\n iszero\n tag_396\n jumpi\n /* \"#utility.yul\":6639:6718 */\n tag_397\n tag_259\n jump\t// in\n tag_397:\n /* \"#utility.yul\":6601:6720 */\n tag_396:\n /* \"#utility.yul\":6759:6760 */\n 0x00\n /* \"#utility.yul\":6784:6837 */\n tag_398\n /* \"#utility.yul\":6829:6836 */\n dup6\n /* \"#utility.yul\":6820:6826 */\n dup3\n /* \"#utility.yul\":6809:6818 */\n dup7\n /* \"#utility.yul\":6805:6827 */\n add\n /* \"#utility.yul\":6784:6837 */\n tag_278\n jump\t// in\n tag_398:\n /* \"#utility.yul\":6774:6837 */\n swap3\n pop\n /* \"#utility.yul\":6730:6847 */\n pop\n /* \"#utility.yul\":6886:6888 */\n 0x20\n /* \"#utility.yul\":6912:6962 */\n tag_399\n /* \"#utility.yul\":6954:6961 */\n dup6\n /* \"#utility.yul\":6945:6951 */\n dup3\n /* \"#utility.yul\":6934:6943 */\n dup7\n /* \"#utility.yul\":6930:6952 */\n add\n /* \"#utility.yul\":6912:6962 */\n tag_281\n jump\t// in\n tag_399:\n /* \"#utility.yul\":6902:6962 */\n swap2\n pop\n /* \"#utility.yul\":6857:6972 */\n pop\n /* \"#utility.yul\":6511:6979 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6985:7102 */\n tag_282:\n /* \"#utility.yul\":7094:7095 */\n 0x00\n /* \"#utility.yul\":7091:7092 */\n dup1\n /* \"#utility.yul\":7084:7096 */\n revert\n /* \"#utility.yul\":7108:7225 */\n tag_283:\n /* \"#utility.yul\":7217:7218 */\n 0x00\n /* \"#utility.yul\":7214:7215 */\n dup1\n /* \"#utility.yul\":7207:7219 */\n revert\n /* \"#utility.yul\":7231:7411 */\n tag_203:\n /* \"#utility.yul\":7279:7356 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7276:7277 */\n 0x00\n /* \"#utility.yul\":7269:7357 */\n mstore\n /* \"#utility.yul\":7376:7380 */\n 0x41\n /* \"#utility.yul\":7373:7374 */\n 0x04\n /* \"#utility.yul\":7366:7381 */\n mstore\n /* \"#utility.yul\":7400:7404 */\n 0x24\n /* \"#utility.yul\":7397:7398 */\n 0x00\n /* \"#utility.yul\":7390:7405 */\n revert\n /* \"#utility.yul\":7417:7698 */\n tag_284:\n /* \"#utility.yul\":7500:7527 */\n tag_404\n /* \"#utility.yul\":7522:7526 */\n dup3\n /* \"#utility.yul\":7500:7527 */\n tag_269\n jump\t// in\n tag_404:\n /* \"#utility.yul\":7492:7498 */\n dup2\n /* \"#utility.yul\":7488:7528 */\n add\n /* \"#utility.yul\":7630:7636 */\n dup2\n /* \"#utility.yul\":7618:7628 */\n dup2\n /* \"#utility.yul\":7615:7637 */\n lt\n /* \"#utility.yul\":7594:7612 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7582:7592 */\n dup3\n /* \"#utility.yul\":7579:7613 */\n gt\n /* \"#utility.yul\":7576:7638 */\n or\n /* \"#utility.yul\":7573:7661 */\n iszero\n tag_405\n jumpi\n /* \"#utility.yul\":7641:7659 */\n tag_406\n tag_203\n jump\t// in\n tag_406:\n /* \"#utility.yul\":7573:7661 */\n tag_405:\n /* \"#utility.yul\":7681:7691 */\n dup1\n /* \"#utility.yul\":7677:7679 */\n 0x40\n /* \"#utility.yul\":7670:7692 */\n mstore\n /* \"#utility.yul\":7460:7698 */\n pop\n /* \"#utility.yul\":7417:7698 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7704:7833 */\n tag_285:\n /* \"#utility.yul\":7738:7744 */\n 0x00\n /* \"#utility.yul\":7765:7785 */\n tag_408\n tag_258\n jump\t// in\n tag_408:\n /* \"#utility.yul\":7755:7785 */\n swap1\n pop\n /* \"#utility.yul\":7794:7827 */\n tag_409\n /* \"#utility.yul\":7822:7826 */\n dup3\n /* \"#utility.yul\":7814:7820 */\n dup3\n /* \"#utility.yul\":7794:7827 */\n tag_284\n jump\t// in\n tag_409:\n /* \"#utility.yul\":7704:7833 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7839:8146 */\n tag_286:\n /* \"#utility.yul\":7900:7904 */\n 0x00\n /* \"#utility.yul\":7990:8008 */\n 0xffffffffffffffff\n /* \"#utility.yul\":7982:7988 */\n dup3\n /* \"#utility.yul\":7979:8009 */\n gt\n /* \"#utility.yul\":7976:8032 */\n iszero\n tag_411\n jumpi\n /* \"#utility.yul\":8012:8030 */\n tag_412\n tag_203\n jump\t// in\n tag_412:\n /* \"#utility.yul\":7976:8032 */\n tag_411:\n /* \"#utility.yul\":8050:8079 */\n tag_413\n /* \"#utility.yul\":8072:8078 */\n dup3\n /* \"#utility.yul\":8050:8079 */\n tag_269\n jump\t// in\n tag_413:\n /* \"#utility.yul\":8042:8079 */\n swap1\n pop\n /* \"#utility.yul\":8134:8138 */\n 0x20\n /* \"#utility.yul\":8128:8132 */\n dup2\n /* \"#utility.yul\":8124:8139 */\n add\n /* \"#utility.yul\":8116:8139 */\n swap1\n pop\n /* \"#utility.yul\":7839:8146 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8152:8306 */\n tag_287:\n /* \"#utility.yul\":8236:8242 */\n dup3\n /* \"#utility.yul\":8231:8234 */\n dup2\n /* \"#utility.yul\":8226:8229 */\n dup4\n /* \"#utility.yul\":8213:8243 */\n calldatacopy\n /* \"#utility.yul\":8298:8299 */\n 0x00\n /* \"#utility.yul\":8289:8295 */\n dup4\n /* \"#utility.yul\":8284:8287 */\n dup4\n /* \"#utility.yul\":8280:8296 */\n add\n /* \"#utility.yul\":8273:8300 */\n mstore\n /* \"#utility.yul\":8152:8306 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8312:8722 */\n tag_288:\n /* \"#utility.yul\":8389:8394 */\n 0x00\n /* \"#utility.yul\":8414:8479 */\n tag_416\n /* \"#utility.yul\":8430:8478 */\n tag_417\n /* \"#utility.yul\":8471:8477 */\n dup5\n /* \"#utility.yul\":8430:8478 */\n tag_286\n jump\t// in\n tag_417:\n /* \"#utility.yul\":8414:8479 */\n tag_285\n jump\t// in\n tag_416:\n /* \"#utility.yul\":8405:8479 */\n swap1\n pop\n /* \"#utility.yul\":8502:8508 */\n dup3\n /* \"#utility.yul\":8495:8500 */\n dup2\n /* \"#utility.yul\":8488:8509 */\n mstore\n /* \"#utility.yul\":8540:8544 */\n 0x20\n /* \"#utility.yul\":8533:8538 */\n dup2\n /* \"#utility.yul\":8529:8545 */\n add\n /* \"#utility.yul\":8578:8581 */\n dup5\n /* \"#utility.yul\":8569:8575 */\n dup5\n /* \"#utility.yul\":8564:8567 */\n dup5\n /* \"#utility.yul\":8560:8576 */\n add\n /* \"#utility.yul\":8557:8582 */\n gt\n /* \"#utility.yul\":8554:8666 */\n iszero\n tag_418\n jumpi\n /* \"#utility.yul\":8585:8664 */\n tag_419\n tag_283\n jump\t// in\n tag_419:\n /* \"#utility.yul\":8554:8666 */\n tag_418:\n /* \"#utility.yul\":8675:8716 */\n tag_420\n /* \"#utility.yul\":8709:8715 */\n dup5\n /* \"#utility.yul\":8704:8707 */\n dup3\n /* \"#utility.yul\":8699:8702 */\n dup6\n /* \"#utility.yul\":8675:8716 */\n tag_287\n jump\t// in\n tag_420:\n /* \"#utility.yul\":8395:8722 */\n pop\n /* \"#utility.yul\":8312:8722 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8741:9079 */\n tag_289:\n /* \"#utility.yul\":8796:8801 */\n 0x00\n /* \"#utility.yul\":8845:8848 */\n dup3\n /* \"#utility.yul\":8838:8842 */\n 0x1f\n /* \"#utility.yul\":8830:8836 */\n dup4\n /* \"#utility.yul\":8826:8843 */\n add\n /* \"#utility.yul\":8822:8849 */\n slt\n /* \"#utility.yul\":8812:8934 */\n tag_422\n jumpi\n /* \"#utility.yul\":8853:8932 */\n tag_423\n tag_282\n jump\t// in\n tag_423:\n /* \"#utility.yul\":8812:8934 */\n tag_422:\n /* \"#utility.yul\":8970:8976 */\n dup2\n /* \"#utility.yul\":8957:8977 */\n calldataload\n /* \"#utility.yul\":8995:9073 */\n tag_424\n /* \"#utility.yul\":9069:9072 */\n dup5\n /* \"#utility.yul\":9061:9067 */\n dup3\n /* \"#utility.yul\":9054:9058 */\n 0x20\n /* \"#utility.yul\":9046:9052 */\n dup7\n /* \"#utility.yul\":9042:9059 */\n add\n /* \"#utility.yul\":8995:9073 */\n tag_288\n jump\t// in\n tag_424:\n /* \"#utility.yul\":8986:9073 */\n swap2\n pop\n /* \"#utility.yul\":8802:9079 */\n pop\n /* \"#utility.yul\":8741:9079 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9085:10028 */\n tag_64:\n /* \"#utility.yul\":9180:9186 */\n 0x00\n /* \"#utility.yul\":9188:9194 */\n dup1\n /* \"#utility.yul\":9196:9202 */\n 0x00\n /* \"#utility.yul\":9204:9210 */\n dup1\n /* \"#utility.yul\":9253:9256 */\n 0x80\n /* \"#utility.yul\":9241:9250 */\n dup6\n /* \"#utility.yul\":9232:9239 */\n dup8\n /* \"#utility.yul\":9228:9251 */\n sub\n /* \"#utility.yul\":9224:9257 */\n slt\n /* \"#utility.yul\":9221:9341 */\n iszero\n tag_426\n jumpi\n /* \"#utility.yul\":9260:9339 */\n tag_427\n tag_259\n jump\t// in\n tag_427:\n /* \"#utility.yul\":9221:9341 */\n tag_426:\n /* \"#utility.yul\":9380:9381 */\n 0x00\n /* \"#utility.yul\":9405:9458 */\n tag_428\n /* \"#utility.yul\":9450:9457 */\n dup8\n /* \"#utility.yul\":9441:9447 */\n dup3\n /* \"#utility.yul\":9430:9439 */\n dup9\n /* \"#utility.yul\":9426:9448 */\n add\n /* \"#utility.yul\":9405:9458 */\n tag_278\n jump\t// in\n tag_428:\n /* \"#utility.yul\":9395:9458 */\n swap5\n pop\n /* \"#utility.yul\":9351:9468 */\n pop\n /* \"#utility.yul\":9507:9509 */\n 0x20\n /* \"#utility.yul\":9533:9586 */\n tag_429\n /* \"#utility.yul\":9578:9585 */\n dup8\n /* \"#utility.yul\":9569:9575 */\n dup3\n /* \"#utility.yul\":9558:9567 */\n dup9\n /* \"#utility.yul\":9554:9576 */\n add\n /* \"#utility.yul\":9533:9586 */\n tag_278\n jump\t// in\n tag_429:\n /* \"#utility.yul\":9523:9586 */\n swap4\n pop\n /* \"#utility.yul\":9478:9596 */\n pop\n /* \"#utility.yul\":9635:9637 */\n 0x40\n /* \"#utility.yul\":9661:9714 */\n tag_430\n /* \"#utility.yul\":9706:9713 */\n dup8\n /* \"#utility.yul\":9697:9703 */\n dup3\n /* \"#utility.yul\":9686:9695 */\n dup9\n /* \"#utility.yul\":9682:9704 */\n add\n /* \"#utility.yul\":9661:9714 */\n tag_273\n jump\t// in\n tag_430:\n /* \"#utility.yul\":9651:9714 */\n swap3\n pop\n /* \"#utility.yul\":9606:9724 */\n pop\n /* \"#utility.yul\":9791:9793 */\n 0x60\n /* \"#utility.yul\":9780:9789 */\n dup6\n /* \"#utility.yul\":9776:9794 */\n add\n /* \"#utility.yul\":9763:9795 */\n calldataload\n /* \"#utility.yul\":9822:9840 */\n 0xffffffffffffffff\n /* \"#utility.yul\":9814:9820 */\n dup2\n /* \"#utility.yul\":9811:9841 */\n gt\n /* \"#utility.yul\":9808:9925 */\n iszero\n tag_431\n jumpi\n /* \"#utility.yul\":9844:9923 */\n tag_432\n tag_260\n jump\t// in\n tag_432:\n /* \"#utility.yul\":9808:9925 */\n tag_431:\n /* \"#utility.yul\":9949:10011 */\n tag_433\n /* \"#utility.yul\":10003:10010 */\n dup8\n /* \"#utility.yul\":9994:10000 */\n dup3\n /* \"#utility.yul\":9983:9992 */\n dup9\n /* \"#utility.yul\":9979:10001 */\n add\n /* \"#utility.yul\":9949:10011 */\n tag_289\n jump\t// in\n tag_433:\n /* \"#utility.yul\":9939:10011 */\n swap2\n pop\n /* \"#utility.yul\":9734:10021 */\n pop\n /* \"#utility.yul\":9085:10028 */\n swap3\n swap6\n swap2\n swap5\n pop\n swap3\n pop\n jump\t// out\n /* \"#utility.yul\":10034:10508 */\n tag_72:\n /* \"#utility.yul\":10102:10108 */\n 0x00\n /* \"#utility.yul\":10110:10116 */\n dup1\n /* \"#utility.yul\":10159:10161 */\n 0x40\n /* \"#utility.yul\":10147:10156 */\n dup4\n /* \"#utility.yul\":10138:10145 */\n dup6\n /* \"#utility.yul\":10134:10157 */\n sub\n /* \"#utility.yul\":10130:10162 */\n slt\n /* \"#utility.yul\":10127:10246 */\n iszero\n tag_435\n jumpi\n /* \"#utility.yul\":10165:10244 */\n tag_436\n tag_259\n jump\t// in\n tag_436:\n /* \"#utility.yul\":10127:10246 */\n tag_435:\n /* \"#utility.yul\":10285:10286 */\n 0x00\n /* \"#utility.yul\":10310:10363 */\n tag_437\n /* \"#utility.yul\":10355:10362 */\n dup6\n /* \"#utility.yul\":10346:10352 */\n dup3\n /* \"#utility.yul\":10335:10344 */\n dup7\n /* \"#utility.yul\":10331:10353 */\n add\n /* \"#utility.yul\":10310:10363 */\n tag_278\n jump\t// in\n tag_437:\n /* \"#utility.yul\":10300:10363 */\n swap3\n pop\n /* \"#utility.yul\":10256:10373 */\n pop\n /* \"#utility.yul\":10412:10414 */\n 0x20\n /* \"#utility.yul\":10438:10491 */\n tag_438\n /* \"#utility.yul\":10483:10490 */\n dup6\n /* \"#utility.yul\":10474:10480 */\n dup3\n /* \"#utility.yul\":10463:10472 */\n dup7\n /* \"#utility.yul\":10459:10481 */\n add\n /* \"#utility.yul\":10438:10491 */\n tag_278\n jump\t// in\n tag_438:\n /* \"#utility.yul\":10428:10491 */\n swap2\n pop\n /* \"#utility.yul\":10383:10501 */\n pop\n /* \"#utility.yul\":10034:10508 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10514:10694 */\n tag_290:\n /* \"#utility.yul\":10562:10639 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":10559:10560 */\n 0x00\n /* \"#utility.yul\":10552:10640 */\n mstore\n /* \"#utility.yul\":10659:10663 */\n 0x22\n /* \"#utility.yul\":10656:10657 */\n 0x04\n /* \"#utility.yul\":10649:10664 */\n mstore\n /* \"#utility.yul\":10683:10687 */\n 0x24\n /* \"#utility.yul\":10680:10681 */\n 0x00\n /* \"#utility.yul\":10673:10688 */\n revert\n /* \"#utility.yul\":10700:11020 */\n tag_82:\n /* \"#utility.yul\":10744:10750 */\n 0x00\n /* \"#utility.yul\":10781:10782 */\n 0x02\n /* \"#utility.yul\":10775:10779 */\n dup3\n /* \"#utility.yul\":10771:10783 */\n div\n /* \"#utility.yul\":10761:10783 */\n swap1\n pop\n /* \"#utility.yul\":10828:10829 */\n 0x01\n /* \"#utility.yul\":10822:10826 */\n dup3\n /* \"#utility.yul\":10818:10830 */\n and\n /* \"#utility.yul\":10849:10867 */\n dup1\n /* \"#utility.yul\":10839:10920 */\n tag_441\n jumpi\n /* \"#utility.yul\":10905:10909 */\n 0x7f\n /* \"#utility.yul\":10897:10903 */\n dup3\n /* \"#utility.yul\":10893:10910 */\n and\n /* \"#utility.yul\":10883:10910 */\n swap2\n pop\n /* \"#utility.yul\":10839:10920 */\n tag_441:\n /* \"#utility.yul\":10967:10969 */\n 0x20\n /* \"#utility.yul\":10959:10965 */\n dup3\n /* \"#utility.yul\":10956:10970 */\n lt\n /* \"#utility.yul\":10936:10954 */\n dup2\n /* \"#utility.yul\":10933:10971 */\n eq\n /* \"#utility.yul\":10930:11014 */\n iszero\n tag_442\n jumpi\n /* \"#utility.yul\":10986:11004 */\n tag_443\n tag_290\n jump\t// in\n tag_443:\n /* \"#utility.yul\":10930:11014 */\n tag_442:\n /* \"#utility.yul\":10751:11020 */\n pop\n /* \"#utility.yul\":10700:11020 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11026:11246 */\n tag_291:\n /* \"#utility.yul\":11166:11200 */\n 0x4552433732313a20617070726f76616c20746f2063757272656e74206f776e65\n /* \"#utility.yul\":11162:11163 */\n 0x00\n /* \"#utility.yul\":11154:11160 */\n dup3\n /* \"#utility.yul\":11150:11164 */\n add\n /* \"#utility.yul\":11143:11201 */\n mstore\n /* \"#utility.yul\":11235:11238 */\n 0x7200000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11230:11232 */\n 0x20\n /* \"#utility.yul\":11222:11228 */\n dup3\n /* \"#utility.yul\":11218:11233 */\n add\n /* \"#utility.yul\":11211:11239 */\n mstore\n /* \"#utility.yul\":11026:11246 */\n pop\n jump\t// out\n /* \"#utility.yul\":11252:11618 */\n tag_292:\n /* \"#utility.yul\":11394:11397 */\n 0x00\n /* \"#utility.yul\":11415:11482 */\n tag_446\n /* \"#utility.yul\":11479:11481 */\n 0x21\n /* \"#utility.yul\":11474:11477 */\n dup4\n /* \"#utility.yul\":11415:11482 */\n tag_267\n jump\t// in\n tag_446:\n /* \"#utility.yul\":11408:11482 */\n swap2\n pop\n /* \"#utility.yul\":11491:11584 */\n tag_447\n /* \"#utility.yul\":11580:11583 */\n dup3\n /* \"#utility.yul\":11491:11584 */\n tag_291\n jump\t// in\n tag_447:\n /* \"#utility.yul\":11609:11611 */\n 0x40\n /* \"#utility.yul\":11604:11607 */\n dup3\n /* \"#utility.yul\":11600:11612 */\n add\n /* \"#utility.yul\":11593:11612 */\n swap1\n pop\n /* \"#utility.yul\":11252:11618 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11624:12043 */\n tag_94:\n /* \"#utility.yul\":11790:11794 */\n 0x00\n /* \"#utility.yul\":11828:11830 */\n 0x20\n /* \"#utility.yul\":11817:11826 */\n dup3\n /* \"#utility.yul\":11813:11831 */\n add\n /* \"#utility.yul\":11805:11831 */\n swap1\n pop\n /* \"#utility.yul\":11877:11886 */\n dup2\n /* \"#utility.yul\":11871:11875 */\n dup2\n /* \"#utility.yul\":11867:11887 */\n sub\n /* \"#utility.yul\":11863:11864 */\n 0x00\n /* \"#utility.yul\":11852:11861 */\n dup4\n /* \"#utility.yul\":11848:11865 */\n add\n /* \"#utility.yul\":11841:11888 */\n mstore\n /* \"#utility.yul\":11905:12036 */\n tag_449\n /* \"#utility.yul\":12031:12035 */\n dup2\n /* \"#utility.yul\":11905:12036 */\n tag_292\n jump\t// in\n tag_449:\n /* \"#utility.yul\":11897:12036 */\n swap1\n pop\n /* \"#utility.yul\":11624:12043 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12049:12297 */\n tag_293:\n /* \"#utility.yul\":12189:12223 */\n 0x4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f\n /* \"#utility.yul\":12185:12186 */\n 0x00\n /* \"#utility.yul\":12177:12183 */\n dup3\n /* \"#utility.yul\":12173:12187 */\n add\n /* \"#utility.yul\":12166:12224 */\n mstore\n /* \"#utility.yul\":12258:12289 */\n 0x6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000\n /* \"#utility.yul\":12253:12255 */\n 0x20\n /* \"#utility.yul\":12245:12251 */\n dup3\n /* \"#utility.yul\":12241:12256 */\n add\n /* \"#utility.yul\":12234:12290 */\n mstore\n /* \"#utility.yul\":12049:12297 */\n pop\n jump\t// out\n /* \"#utility.yul\":12303:12669 */\n tag_294:\n /* \"#utility.yul\":12445:12448 */\n 0x00\n /* \"#utility.yul\":12466:12533 */\n tag_452\n /* \"#utility.yul\":12530:12532 */\n 0x3d\n /* \"#utility.yul\":12525:12528 */\n dup4\n /* \"#utility.yul\":12466:12533 */\n tag_267\n jump\t// in\n tag_452:\n /* \"#utility.yul\":12459:12533 */\n swap2\n pop\n /* \"#utility.yul\":12542:12635 */\n tag_453\n /* \"#utility.yul\":12631:12634 */\n dup3\n /* \"#utility.yul\":12542:12635 */\n tag_293\n jump\t// in\n tag_453:\n /* \"#utility.yul\":12660:12662 */\n 0x40\n /* \"#utility.yul\":12655:12658 */\n dup3\n /* \"#utility.yul\":12651:12663 */\n add\n /* \"#utility.yul\":12644:12663 */\n swap1\n pop\n /* \"#utility.yul\":12303:12669 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12675:13094 */\n tag_102:\n /* \"#utility.yul\":12841:12845 */\n 0x00\n /* \"#utility.yul\":12879:12881 */\n 0x20\n /* \"#utility.yul\":12868:12877 */\n dup3\n /* \"#utility.yul\":12864:12882 */\n add\n /* \"#utility.yul\":12856:12882 */\n swap1\n pop\n /* \"#utility.yul\":12928:12937 */\n dup2\n /* \"#utility.yul\":12922:12926 */\n dup2\n /* \"#utility.yul\":12918:12938 */\n sub\n /* \"#utility.yul\":12914:12915 */\n 0x00\n /* \"#utility.yul\":12903:12912 */\n dup4\n /* \"#utility.yul\":12899:12916 */\n add\n /* \"#utility.yul\":12892:12939 */\n mstore\n /* \"#utility.yul\":12956:13087 */\n tag_455\n /* \"#utility.yul\":13082:13086 */\n dup2\n /* \"#utility.yul\":12956:13087 */\n tag_294\n jump\t// in\n tag_455:\n /* \"#utility.yul\":12948:13087 */\n swap1\n pop\n /* \"#utility.yul\":12675:13094 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13100:13332 */\n tag_295:\n /* \"#utility.yul\":13240:13274 */\n 0x4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65\n /* \"#utility.yul\":13236:13237 */\n 0x00\n /* \"#utility.yul\":13228:13234 */\n dup3\n /* \"#utility.yul\":13224:13238 */\n add\n /* \"#utility.yul\":13217:13275 */\n mstore\n /* \"#utility.yul\":13309:13324 */\n 0x72206f7220617070726f76656400000000000000000000000000000000000000\n /* \"#utility.yul\":13304:13306 */\n 0x20\n /* \"#utility.yul\":13296:13302 */\n dup3\n /* \"#utility.yul\":13292:13307 */\n add\n /* \"#utility.yul\":13285:13325 */\n mstore\n /* \"#utility.yul\":13100:13332 */\n pop\n jump\t// out\n /* \"#utility.yul\":13338:13704 */\n tag_296:\n /* \"#utility.yul\":13480:13483 */\n 0x00\n /* \"#utility.yul\":13501:13568 */\n tag_458\n /* \"#utility.yul\":13565:13567 */\n 0x2d\n /* \"#utility.yul\":13560:13563 */\n dup4\n /* \"#utility.yul\":13501:13568 */\n tag_267\n jump\t// in\n tag_458:\n /* \"#utility.yul\":13494:13568 */\n swap2\n pop\n /* \"#utility.yul\":13577:13670 */\n tag_459\n /* \"#utility.yul\":13666:13669 */\n dup3\n /* \"#utility.yul\":13577:13670 */\n tag_295\n jump\t// in\n tag_459:\n /* \"#utility.yul\":13695:13697 */\n 0x40\n /* \"#utility.yul\":13690:13693 */\n dup3\n /* \"#utility.yul\":13686:13698 */\n add\n /* \"#utility.yul\":13679:13698 */\n swap1\n pop\n /* \"#utility.yul\":13338:13704 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13710:14129 */\n tag_111:\n /* \"#utility.yul\":13876:13880 */\n 0x00\n /* \"#utility.yul\":13914:13916 */\n 0x20\n /* \"#utility.yul\":13903:13912 */\n dup3\n /* \"#utility.yul\":13899:13917 */\n add\n /* \"#utility.yul\":13891:13917 */\n swap1\n pop\n /* \"#utility.yul\":13963:13972 */\n dup2\n /* \"#utility.yul\":13957:13961 */\n dup2\n /* \"#utility.yul\":13953:13973 */\n sub\n /* \"#utility.yul\":13949:13950 */\n 0x00\n /* \"#utility.yul\":13938:13947 */\n dup4\n /* \"#utility.yul\":13934:13951 */\n add\n /* \"#utility.yul\":13927:13974 */\n mstore\n /* \"#utility.yul\":13991:14122 */\n tag_461\n /* \"#utility.yul\":14117:14121 */\n dup2\n /* \"#utility.yul\":13991:14122 */\n tag_296\n jump\t// in\n tag_461:\n /* \"#utility.yul\":13983:14122 */\n swap1\n pop\n /* \"#utility.yul\":13710:14129 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14135:14309 */\n tag_297:\n /* \"#utility.yul\":14275:14301 */\n 0x4552433732313a20696e76616c696420746f6b656e2049440000000000000000\n /* \"#utility.yul\":14271:14272 */\n 0x00\n /* \"#utility.yul\":14263:14269 */\n dup3\n /* \"#utility.yul\":14259:14273 */\n add\n /* \"#utility.yul\":14252:14302 */\n mstore\n /* \"#utility.yul\":14135:14309 */\n pop\n jump\t// out\n /* \"#utility.yul\":14315:14681 */\n tag_298:\n /* \"#utility.yul\":14457:14460 */\n 0x00\n /* \"#utility.yul\":14478:14545 */\n tag_464\n /* \"#utility.yul\":14542:14544 */\n 0x18\n /* \"#utility.yul\":14537:14540 */\n dup4\n /* \"#utility.yul\":14478:14545 */\n tag_267\n jump\t// in\n tag_464:\n /* \"#utility.yul\":14471:14545 */\n swap2\n pop\n /* \"#utility.yul\":14554:14647 */\n tag_465\n /* \"#utility.yul\":14643:14646 */\n dup3\n /* \"#utility.yul\":14554:14647 */\n tag_297\n jump\t// in\n tag_465:\n /* \"#utility.yul\":14672:14674 */\n 0x20\n /* \"#utility.yul\":14667:14670 */\n dup3\n /* \"#utility.yul\":14663:14675 */\n add\n /* \"#utility.yul\":14656:14675 */\n swap1\n pop\n /* \"#utility.yul\":14315:14681 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14687:15106 */\n tag_121:\n /* \"#utility.yul\":14853:14857 */\n 0x00\n /* \"#utility.yul\":14891:14893 */\n 0x20\n /* \"#utility.yul\":14880:14889 */\n dup3\n /* \"#utility.yul\":14876:14894 */\n add\n /* \"#utility.yul\":14868:14894 */\n swap1\n pop\n /* \"#utility.yul\":14940:14949 */\n dup2\n /* \"#utility.yul\":14934:14938 */\n dup2\n /* \"#utility.yul\":14930:14950 */\n sub\n /* \"#utility.yul\":14926:14927 */\n 0x00\n /* \"#utility.yul\":14915:14924 */\n dup4\n /* \"#utility.yul\":14911:14928 */\n add\n /* \"#utility.yul\":14904:14951 */\n mstore\n /* \"#utility.yul\":14968:15099 */\n tag_467\n /* \"#utility.yul\":15094:15098 */\n dup2\n /* \"#utility.yul\":14968:15099 */\n tag_298\n jump\t// in\n tag_467:\n /* \"#utility.yul\":14960:15099 */\n swap1\n pop\n /* \"#utility.yul\":14687:15106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15112:15340 */\n tag_299:\n /* \"#utility.yul\":15252:15286 */\n 0x4552433732313a2061646472657373207a65726f206973206e6f742061207661\n /* \"#utility.yul\":15248:15249 */\n 0x00\n /* \"#utility.yul\":15240:15246 */\n dup3\n /* \"#utility.yul\":15236:15250 */\n add\n /* \"#utility.yul\":15229:15287 */\n mstore\n /* \"#utility.yul\":15321:15332 */\n 0x6c6964206f776e65720000000000000000000000000000000000000000000000\n /* \"#utility.yul\":15316:15318 */\n 0x20\n /* \"#utility.yul\":15308:15314 */\n dup3\n /* \"#utility.yul\":15304:15319 */\n add\n /* \"#utility.yul\":15297:15333 */\n mstore\n /* \"#utility.yul\":15112:15340 */\n pop\n jump\t// out\n /* \"#utility.yul\":15346:15712 */\n tag_300:\n /* \"#utility.yul\":15488:15491 */\n 0x00\n /* \"#utility.yul\":15509:15576 */\n tag_470\n /* \"#utility.yul\":15573:15575 */\n 0x29\n /* \"#utility.yul\":15568:15571 */\n dup4\n /* \"#utility.yul\":15509:15576 */\n tag_267\n jump\t// in\n tag_470:\n /* \"#utility.yul\":15502:15576 */\n swap2\n pop\n /* \"#utility.yul\":15585:15678 */\n tag_471\n /* \"#utility.yul\":15674:15677 */\n dup3\n /* \"#utility.yul\":15585:15678 */\n tag_299\n jump\t// in\n tag_471:\n /* \"#utility.yul\":15703:15705 */\n 0x40\n /* \"#utility.yul\":15698:15701 */\n dup3\n /* \"#utility.yul\":15694:15706 */\n add\n /* \"#utility.yul\":15687:15706 */\n swap1\n pop\n /* \"#utility.yul\":15346:15712 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15718:16137 */\n tag_125:\n /* \"#utility.yul\":15884:15888 */\n 0x00\n /* \"#utility.yul\":15922:15924 */\n 0x20\n /* \"#utility.yul\":15911:15920 */\n dup3\n /* \"#utility.yul\":15907:15925 */\n add\n /* \"#utility.yul\":15899:15925 */\n swap1\n pop\n /* \"#utility.yul\":15971:15980 */\n dup2\n /* \"#utility.yul\":15965:15969 */\n dup2\n /* \"#utility.yul\":15961:15981 */\n sub\n /* \"#utility.yul\":15957:15958 */\n 0x00\n /* \"#utility.yul\":15946:15955 */\n dup4\n /* \"#utility.yul\":15942:15959 */\n add\n /* \"#utility.yul\":15935:15982 */\n mstore\n /* \"#utility.yul\":15999:16130 */\n tag_473\n /* \"#utility.yul\":16125:16129 */\n dup2\n /* \"#utility.yul\":15999:16130 */\n tag_300\n jump\t// in\n tag_473:\n /* \"#utility.yul\":15991:16130 */\n swap1\n pop\n /* \"#utility.yul\":15718:16137 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16143:16291 */\n tag_301:\n /* \"#utility.yul\":16245:16256 */\n 0x00\n /* \"#utility.yul\":16282:16285 */\n dup2\n /* \"#utility.yul\":16267:16285 */\n swap1\n pop\n /* \"#utility.yul\":16143:16291 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":16297:16674 */\n tag_302:\n /* \"#utility.yul\":16403:16406 */\n 0x00\n /* \"#utility.yul\":16431:16470 */\n tag_476\n /* \"#utility.yul\":16464:16469 */\n dup3\n /* \"#utility.yul\":16431:16470 */\n tag_266\n jump\t// in\n tag_476:\n /* \"#utility.yul\":16486:16575 */\n tag_477\n /* \"#utility.yul\":16568:16574 */\n dup2\n /* \"#utility.yul\":16563:16566 */\n dup6\n /* \"#utility.yul\":16486:16575 */\n tag_301\n jump\t// in\n tag_477:\n /* \"#utility.yul\":16479:16575 */\n swap4\n pop\n /* \"#utility.yul\":16584:16636 */\n tag_478\n /* \"#utility.yul\":16629:16635 */\n dup2\n /* \"#utility.yul\":16624:16627 */\n dup6\n /* \"#utility.yul\":16617:16621 */\n 0x20\n /* \"#utility.yul\":16610:16615 */\n dup7\n /* \"#utility.yul\":16606:16622 */\n add\n /* \"#utility.yul\":16584:16636 */\n tag_268\n jump\t// in\n tag_478:\n /* \"#utility.yul\":16661:16667 */\n dup1\n /* \"#utility.yul\":16656:16659 */\n dup5\n /* \"#utility.yul\":16652:16668 */\n add\n /* \"#utility.yul\":16645:16668 */\n swap2\n pop\n /* \"#utility.yul\":16407:16674 */\n pop\n /* \"#utility.yul\":16297:16674 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":16680:17115 */\n tag_152:\n /* \"#utility.yul\":16860:16863 */\n 0x00\n /* \"#utility.yul\":16882:16977 */\n tag_480\n /* \"#utility.yul\":16973:16976 */\n dup3\n /* \"#utility.yul\":16964:16970 */\n dup6\n /* \"#utility.yul\":16882:16977 */\n tag_302\n jump\t// in\n tag_480:\n /* \"#utility.yul\":16875:16977 */\n swap2\n pop\n /* \"#utility.yul\":16994:17089 */\n tag_481\n /* \"#utility.yul\":17085:17088 */\n dup3\n /* \"#utility.yul\":17076:17082 */\n dup5\n /* \"#utility.yul\":16994:17089 */\n tag_302\n jump\t// in\n tag_481:\n /* \"#utility.yul\":16987:17089 */\n swap2\n pop\n /* \"#utility.yul\":17106:17109 */\n dup2\n /* \"#utility.yul\":17099:17109 */\n swap1\n pop\n /* \"#utility.yul\":16680:17115 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":17121:17345 */\n tag_303:\n /* \"#utility.yul\":17261:17295 */\n 0x4552433732313a207472616e736665722066726f6d20696e636f727265637420\n /* \"#utility.yul\":17257:17258 */\n 0x00\n /* \"#utility.yul\":17249:17255 */\n dup3\n /* \"#utility.yul\":17245:17259 */\n add\n /* \"#utility.yul\":17238:17296 */\n mstore\n /* \"#utility.yul\":17330:17337 */\n 0x6f776e6572000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":17325:17327 */\n 0x20\n /* \"#utility.yul\":17317:17323 */\n dup3\n /* \"#utility.yul\":17313:17328 */\n add\n /* \"#utility.yul\":17306:17338 */\n mstore\n /* \"#utility.yul\":17121:17345 */\n pop\n jump\t// out\n /* \"#utility.yul\":17351:17717 */\n tag_304:\n /* \"#utility.yul\":17493:17496 */\n 0x00\n /* \"#utility.yul\":17514:17581 */\n tag_484\n /* \"#utility.yul\":17578:17580 */\n 0x25\n /* \"#utility.yul\":17573:17576 */\n dup4\n /* \"#utility.yul\":17514:17581 */\n tag_267\n jump\t// in\n tag_484:\n /* \"#utility.yul\":17507:17581 */\n swap2\n pop\n /* \"#utility.yul\":17590:17683 */\n tag_485\n /* \"#utility.yul\":17679:17682 */\n dup3\n /* \"#utility.yul\":17590:17683 */\n tag_303\n jump\t// in\n tag_485:\n /* \"#utility.yul\":17708:17710 */\n 0x40\n /* \"#utility.yul\":17703:17706 */\n dup3\n /* \"#utility.yul\":17699:17711 */\n add\n /* \"#utility.yul\":17692:17711 */\n swap1\n pop\n /* \"#utility.yul\":17351:17717 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":17723:18142 */\n tag_173:\n /* \"#utility.yul\":17889:17893 */\n 0x00\n /* \"#utility.yul\":17927:17929 */\n 0x20\n /* \"#utility.yul\":17916:17925 */\n dup3\n /* \"#utility.yul\":17912:17930 */\n add\n /* \"#utility.yul\":17904:17930 */\n swap1\n pop\n /* \"#utility.yul\":17976:17985 */\n dup2\n /* \"#utility.yul\":17970:17974 */\n dup2\n /* \"#utility.yul\":17966:17986 */\n sub\n /* \"#utility.yul\":17962:17963 */\n 0x00\n /* \"#utility.yul\":17951:17960 */\n dup4\n /* \"#utility.yul\":17947:17964 */\n add\n /* \"#utility.yul\":17940:17987 */\n mstore\n /* \"#utility.yul\":18004:18135 */\n tag_487\n /* \"#utility.yul\":18130:18134 */\n dup2\n /* \"#utility.yul\":18004:18135 */\n tag_304\n jump\t// in\n tag_487:\n /* \"#utility.yul\":17996:18135 */\n swap1\n pop\n /* \"#utility.yul\":17723:18142 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":18148:18371 */\n tag_305:\n /* \"#utility.yul\":18288:18322 */\n 0x4552433732313a207472616e7366657220746f20746865207a65726f20616464\n /* \"#utility.yul\":18284:18285 */\n 0x00\n /* \"#utility.yul\":18276:18282 */\n dup3\n /* \"#utility.yul\":18272:18286 */\n add\n /* \"#utility.yul\":18265:18323 */\n mstore\n /* \"#utility.yul\":18357:18363 */\n 0x7265737300000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":18352:18354 */\n 0x20\n /* \"#utility.yul\":18344:18350 */\n dup3\n /* \"#utility.yul\":18340:18355 */\n add\n /* \"#utility.yul\":18333:18364 */\n mstore\n /* \"#utility.yul\":18148:18371 */\n pop\n jump\t// out\n /* \"#utility.yul\":18377:18743 */\n tag_306:\n /* \"#utility.yul\":18519:18522 */\n 0x00\n /* \"#utility.yul\":18540:18607 */\n tag_490\n /* \"#utility.yul\":18604:18606 */\n 0x24\n /* \"#utility.yul\":18599:18602 */\n dup4\n /* \"#utility.yul\":18540:18607 */\n tag_267\n jump\t// in\n tag_490:\n /* \"#utility.yul\":18533:18607 */\n swap2\n pop\n /* \"#utility.yul\":18616:18709 */\n tag_491\n /* \"#utility.yul\":18705:18708 */\n dup3\n /* \"#utility.yul\":18616:18709 */\n tag_305\n jump\t// in\n tag_491:\n /* \"#utility.yul\":18734:18736 */\n 0x40\n /* \"#utility.yul\":18729:18732 */\n dup3\n /* \"#utility.yul\":18725:18737 */\n add\n /* \"#utility.yul\":18718:18737 */\n swap1\n pop\n /* \"#utility.yul\":18377:18743 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":18749:19168 */\n tag_176:\n /* \"#utility.yul\":18915:18919 */\n 0x00\n /* \"#utility.yul\":18953:18955 */\n 0x20\n /* \"#utility.yul\":18942:18951 */\n dup3\n /* \"#utility.yul\":18938:18956 */\n add\n /* \"#utility.yul\":18930:18956 */\n swap1\n pop\n /* \"#utility.yul\":19002:19011 */\n dup2\n /* \"#utility.yul\":18996:19000 */\n dup2\n /* \"#utility.yul\":18992:19012 */\n sub\n /* \"#utility.yul\":18988:18989 */\n 0x00\n /* \"#utility.yul\":18977:18986 */\n dup4\n /* \"#utility.yul\":18973:18990 */\n add\n /* \"#utility.yul\":18966:19013 */\n mstore\n /* \"#utility.yul\":19030:19161 */\n tag_493\n /* \"#utility.yul\":19156:19160 */\n dup2\n /* \"#utility.yul\":19030:19161 */\n tag_306\n jump\t// in\n tag_493:\n /* \"#utility.yul\":19022:19161 */\n swap1\n pop\n /* \"#utility.yul\":18749:19168 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":19174:19349 */\n tag_307:\n /* \"#utility.yul\":19314:19341 */\n 0x4552433732313a20617070726f766520746f2063616c6c657200000000000000\n /* \"#utility.yul\":19310:19311 */\n 0x00\n /* \"#utility.yul\":19302:19308 */\n dup3\n /* \"#utility.yul\":19298:19312 */\n add\n /* \"#utility.yul\":19291:19342 */\n mstore\n /* \"#utility.yul\":19174:19349 */\n pop\n jump\t// out\n /* \"#utility.yul\":19355:19721 */\n tag_308:\n /* \"#utility.yul\":19497:19500 */\n 0x00\n /* \"#utility.yul\":19518:19585 */\n tag_496\n /* \"#utility.yul\":19582:19584 */\n 0x19\n /* \"#utility.yul\":19577:19580 */\n dup4\n /* \"#utility.yul\":19518:19585 */\n tag_267\n jump\t// in\n tag_496:\n /* \"#utility.yul\":19511:19585 */\n swap2\n pop\n /* \"#utility.yul\":19594:19687 */\n tag_497\n /* \"#utility.yul\":19683:19686 */\n dup3\n /* \"#utility.yul\":19594:19687 */\n tag_307\n jump\t// in\n tag_497:\n /* \"#utility.yul\":19712:19714 */\n 0x20\n /* \"#utility.yul\":19707:19710 */\n dup3\n /* \"#utility.yul\":19703:19715 */\n add\n /* \"#utility.yul\":19696:19715 */\n swap1\n pop\n /* \"#utility.yul\":19355:19721 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":19727:20146 */\n tag_188:\n /* \"#utility.yul\":19893:19897 */\n 0x00\n /* \"#utility.yul\":19931:19933 */\n 0x20\n /* \"#utility.yul\":19920:19929 */\n dup3\n /* \"#utility.yul\":19916:19934 */\n add\n /* \"#utility.yul\":19908:19934 */\n swap1\n pop\n /* \"#utility.yul\":19980:19989 */\n dup2\n /* \"#utility.yul\":19974:19978 */\n dup2\n /* \"#utility.yul\":19970:19990 */\n sub\n /* \"#utility.yul\":19966:19967 */\n 0x00\n /* \"#utility.yul\":19955:19964 */\n dup4\n /* \"#utility.yul\":19951:19968 */\n add\n /* \"#utility.yul\":19944:19991 */\n mstore\n /* \"#utility.yul\":20008:20139 */\n tag_499\n /* \"#utility.yul\":20134:20138 */\n dup2\n /* \"#utility.yul\":20008:20139 */\n tag_308\n jump\t// in\n tag_499:\n /* \"#utility.yul\":20000:20139 */\n swap1\n pop\n /* \"#utility.yul\":19727:20146 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":20152:20389 */\n tag_309:\n /* \"#utility.yul\":20292:20326 */\n 0x4552433732313a207472616e7366657220746f206e6f6e204552433732315265\n /* \"#utility.yul\":20288:20289 */\n 0x00\n /* \"#utility.yul\":20280:20286 */\n dup3\n /* \"#utility.yul\":20276:20290 */\n add\n /* \"#utility.yul\":20269:20327 */\n mstore\n /* \"#utility.yul\":20361:20381 */\n 0x63656976657220696d706c656d656e7465720000000000000000000000000000\n /* \"#utility.yul\":20356:20358 */\n 0x20\n /* \"#utility.yul\":20348:20354 */\n dup3\n /* \"#utility.yul\":20344:20359 */\n add\n /* \"#utility.yul\":20337:20382 */\n mstore\n /* \"#utility.yul\":20152:20389 */\n pop\n jump\t// out\n /* \"#utility.yul\":20395:20761 */\n tag_310:\n /* \"#utility.yul\":20537:20540 */\n 0x00\n /* \"#utility.yul\":20558:20625 */\n tag_502\n /* \"#utility.yul\":20622:20624 */\n 0x32\n /* \"#utility.yul\":20617:20620 */\n dup4\n /* \"#utility.yul\":20558:20625 */\n tag_267\n jump\t// in\n tag_502:\n /* \"#utility.yul\":20551:20625 */\n swap2\n pop\n /* \"#utility.yul\":20634:20727 */\n tag_503\n /* \"#utility.yul\":20723:20726 */\n dup3\n /* \"#utility.yul\":20634:20727 */\n tag_309\n jump\t// in\n tag_503:\n /* \"#utility.yul\":20752:20754 */\n 0x40\n /* \"#utility.yul\":20747:20750 */\n dup3\n /* \"#utility.yul\":20743:20755 */\n add\n /* \"#utility.yul\":20736:20755 */\n swap1\n pop\n /* \"#utility.yul\":20395:20761 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":20767:21186 */\n tag_196:\n /* \"#utility.yul\":20933:20937 */\n 0x00\n /* \"#utility.yul\":20971:20973 */\n 0x20\n /* \"#utility.yul\":20960:20969 */\n dup3\n /* \"#utility.yul\":20956:20974 */\n add\n /* \"#utility.yul\":20948:20974 */\n swap1\n pop\n /* \"#utility.yul\":21020:21029 */\n dup2\n /* \"#utility.yul\":21014:21018 */\n dup2\n /* \"#utility.yul\":21010:21030 */\n sub\n /* \"#utility.yul\":21006:21007 */\n 0x00\n /* \"#utility.yul\":20995:21004 */\n dup4\n /* \"#utility.yul\":20991:21008 */\n add\n /* \"#utility.yul\":20984:21031 */\n mstore\n /* \"#utility.yul\":21048:21179 */\n tag_505\n /* \"#utility.yul\":21174:21178 */\n dup2\n /* \"#utility.yul\":21048:21179 */\n tag_310\n jump\t// in\n tag_505:\n /* \"#utility.yul\":21040:21179 */\n swap1\n pop\n /* \"#utility.yul\":20767:21186 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":21192:21372 */\n tag_209:\n /* \"#utility.yul\":21240:21317 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":21237:21238 */\n 0x00\n /* \"#utility.yul\":21230:21318 */\n mstore\n /* \"#utility.yul\":21337:21341 */\n 0x12\n /* \"#utility.yul\":21334:21335 */\n 0x04\n /* \"#utility.yul\":21327:21342 */\n mstore\n /* \"#utility.yul\":21361:21365 */\n 0x24\n /* \"#utility.yul\":21358:21359 */\n 0x00\n /* \"#utility.yul\":21351:21366 */\n revert\n /* \"#utility.yul\":21378:21476 */\n tag_311:\n /* \"#utility.yul\":21429:21435 */\n 0x00\n /* \"#utility.yul\":21463:21468 */\n dup2\n /* \"#utility.yul\":21457:21469 */\n mload\n /* \"#utility.yul\":21447:21469 */\n swap1\n pop\n /* \"#utility.yul\":21378:21476 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":21482:21650 */\n tag_312:\n /* \"#utility.yul\":21565:21576 */\n 0x00\n /* \"#utility.yul\":21599:21605 */\n dup3\n /* \"#utility.yul\":21594:21597 */\n dup3\n /* \"#utility.yul\":21587:21606 */\n mstore\n /* \"#utility.yul\":21639:21643 */\n 0x20\n /* \"#utility.yul\":21634:21637 */\n dup3\n /* \"#utility.yul\":21630:21644 */\n add\n /* \"#utility.yul\":21615:21644 */\n swap1\n pop\n /* \"#utility.yul\":21482:21650 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":21656:22016 */\n tag_313:\n /* \"#utility.yul\":21742:21745 */\n 0x00\n /* \"#utility.yul\":21770:21808 */\n tag_510\n /* \"#utility.yul\":21802:21807 */\n dup3\n /* \"#utility.yul\":21770:21808 */\n tag_311\n jump\t// in\n tag_510:\n /* \"#utility.yul\":21824:21894 */\n tag_511\n /* \"#utility.yul\":21887:21893 */\n dup2\n /* \"#utility.yul\":21882:21885 */\n dup6\n /* \"#utility.yul\":21824:21894 */\n tag_312\n jump\t// in\n tag_511:\n /* \"#utility.yul\":21817:21894 */\n swap4\n pop\n /* \"#utility.yul\":21903:21955 */\n tag_512\n /* \"#utility.yul\":21948:21954 */\n dup2\n /* \"#utility.yul\":21943:21946 */\n dup6\n /* \"#utility.yul\":21936:21940 */\n 0x20\n /* \"#utility.yul\":21929:21934 */\n dup7\n /* \"#utility.yul\":21925:21941 */\n add\n /* \"#utility.yul\":21903:21955 */\n tag_268\n jump\t// in\n tag_512:\n /* \"#utility.yul\":21980:22009 */\n tag_513\n /* \"#utility.yul\":22002:22008 */\n dup2\n /* \"#utility.yul\":21980:22009 */\n tag_269\n jump\t// in\n tag_513:\n /* \"#utility.yul\":21975:21978 */\n dup5\n /* \"#utility.yul\":21971:22010 */\n add\n /* \"#utility.yul\":21964:22010 */\n swap2\n pop\n /* \"#utility.yul\":21746:22016 */\n pop\n /* \"#utility.yul\":21656:22016 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":22022:22662 */\n tag_221:\n /* \"#utility.yul\":22217:22221 */\n 0x00\n /* \"#utility.yul\":22255:22258 */\n 0x80\n /* \"#utility.yul\":22244:22253 */\n dup3\n /* \"#utility.yul\":22240:22259 */\n add\n /* \"#utility.yul\":22232:22259 */\n swap1\n pop\n /* \"#utility.yul\":22269:22340 */\n tag_515\n /* \"#utility.yul\":22337:22338 */\n 0x00\n /* \"#utility.yul\":22326:22335 */\n dup4\n /* \"#utility.yul\":22322:22339 */\n add\n /* \"#utility.yul\":22313:22319 */\n dup8\n /* \"#utility.yul\":22269:22340 */\n tag_276\n jump\t// in\n tag_515:\n /* \"#utility.yul\":22350:22422 */\n tag_516\n /* \"#utility.yul\":22418:22420 */\n 0x20\n /* \"#utility.yul\":22407:22416 */\n dup4\n /* \"#utility.yul\":22403:22421 */\n add\n /* \"#utility.yul\":22394:22400 */\n dup7\n /* \"#utility.yul\":22350:22422 */\n tag_276\n jump\t// in\n tag_516:\n /* \"#utility.yul\":22432:22504 */\n tag_517\n /* \"#utility.yul\":22500:22502 */\n 0x40\n /* \"#utility.yul\":22489:22498 */\n dup4\n /* \"#utility.yul\":22485:22503 */\n add\n /* \"#utility.yul\":22476:22482 */\n dup6\n /* \"#utility.yul\":22432:22504 */\n tag_279\n jump\t// in\n tag_517:\n /* \"#utility.yul\":22551:22560 */\n dup2\n /* \"#utility.yul\":22545:22549 */\n dup2\n /* \"#utility.yul\":22541:22561 */\n sub\n /* \"#utility.yul\":22536:22538 */\n 0x60\n /* \"#utility.yul\":22525:22534 */\n dup4\n /* \"#utility.yul\":22521:22539 */\n add\n /* \"#utility.yul\":22514:22562 */\n mstore\n /* \"#utility.yul\":22579:22655 */\n tag_518\n /* \"#utility.yul\":22650:22654 */\n dup2\n /* \"#utility.yul\":22641:22647 */\n dup5\n /* \"#utility.yul\":22579:22655 */\n tag_313\n jump\t// in\n tag_518:\n /* \"#utility.yul\":22571:22655 */\n swap1\n pop\n /* \"#utility.yul\":22022:22662 */\n swap6\n swap5\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":22668:22809 */\n tag_314:\n /* \"#utility.yul\":22724:22729 */\n 0x00\n /* \"#utility.yul\":22755:22761 */\n dup2\n /* \"#utility.yul\":22749:22762 */\n mload\n /* \"#utility.yul\":22740:22762 */\n swap1\n pop\n /* \"#utility.yul\":22771:22803 */\n tag_520\n /* \"#utility.yul\":22797:22802 */\n dup2\n /* \"#utility.yul\":22771:22803 */\n tag_262\n jump\t// in\n tag_520:\n /* \"#utility.yul\":22668:22809 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":22815:23164 */\n tag_225:\n /* \"#utility.yul\":22884:22890 */\n 0x00\n /* \"#utility.yul\":22933:22935 */\n 0x20\n /* \"#utility.yul\":22921:22930 */\n dup3\n /* \"#utility.yul\":22912:22919 */\n dup5\n /* \"#utility.yul\":22908:22931 */\n sub\n /* \"#utility.yul\":22904:22936 */\n slt\n /* \"#utility.yul\":22901:23020 */\n iszero\n tag_522\n jumpi\n /* \"#utility.yul\":22939:23018 */\n tag_523\n tag_259\n jump\t// in\n tag_523:\n /* \"#utility.yul\":22901:23020 */\n tag_522:\n /* \"#utility.yul\":23059:23060 */\n 0x00\n /* \"#utility.yul\":23084:23147 */\n tag_524\n /* \"#utility.yul\":23139:23146 */\n dup5\n /* \"#utility.yul\":23130:23136 */\n dup3\n /* \"#utility.yul\":23119:23128 */\n dup6\n /* \"#utility.yul\":23115:23137 */\n add\n /* \"#utility.yul\":23084:23147 */\n tag_314\n jump\t// in\n tag_524:\n /* \"#utility.yul\":23074:23147 */\n swap2\n pop\n /* \"#utility.yul\":23030:23157 */\n pop\n /* \"#utility.yul\":22815:23164 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122007744a118a0f08902e52dc2ef00962c180fac745ff59182486d158d552bc12bc64736f6c63430008090033\n}\n",
"bytecode": {
"functionDebugData": {
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 576,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 651,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 702,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"allocate_memory": {
"entryPoint": 437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 289,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 468,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 522,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 882,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 383,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 835,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 336,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 309,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 314,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 304,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 299,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 319,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4093:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:11",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:11"
},
"nodeType": "YulFunctionCall",
"src": "67:9:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:11"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:11",
"type": ""
}
],
"src": "7:75:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:11"
},
"nodeType": "YulFunctionCall",
"src": "187:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:11"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:11"
},
"nodeType": "YulFunctionCall",
"src": "310:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:11"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:11"
},
"nodeType": "YulFunctionCall",
"src": "433:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:11"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:11"
},
"nodeType": "YulFunctionCall",
"src": "556:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:11"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:11"
},
"nodeType": "YulFunctionCall",
"src": "652:14:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:11"
},
"nodeType": "YulFunctionCall",
"src": "668:7:11"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:11"
},
"nodeType": "YulFunctionCall",
"src": "648:28:11"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:11"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:11",
"type": ""
}
],
"src": "580:102:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:11"
},
"nodeType": "YulFunctionCall",
"src": "726:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:11",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:11"
},
"nodeType": "YulFunctionCall",
"src": "823:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:11"
},
"nodeType": "YulFunctionCall",
"src": "847:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:11"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:11",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:11"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:11"
},
"nodeType": "YulFunctionCall",
"src": "957:27:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:11"
},
"nodeType": "YulFunctionCall",
"src": "945:40:11"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:11"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:11"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:11"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:11"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:11"
},
"nodeType": "YulIf",
"src": "1030:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:11",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:11"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:11"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:11",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:11",
"type": ""
}
],
"src": "874:281:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:11",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:11"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:11"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:11"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:11"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:11"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:11",
"type": ""
}
],
"src": "1161:129:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:11"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:11"
},
"nodeType": "YulIf",
"src": "1434:56:11"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:11"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:11",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:11"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:11",
"type": ""
}
],
"src": "1296:308:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1659:258:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1669:10:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1678:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1673:1:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1738:63:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1763:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1768:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1759:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1759:11:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1782:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1787:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1778:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1778:11:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1772:5:11"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1752:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1752:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "1752:39:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1699:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1702:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1696:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1696:13:11"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1710:19:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:15:11",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1721:1:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1724:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1717:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1717:10:11"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1712:1:11"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1692:3:11",
"statements": []
},
"src": "1688:113:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1835:76:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1885:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1890:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1881:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1881:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1874:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1874:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "1874:27:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1816:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1819:6:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1813:2:11"
},
"nodeType": "YulFunctionCall",
"src": "1813:13:11"
},
"nodeType": "YulIf",
"src": "1810:101:11"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1641:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1646:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1651:6:11",
"type": ""
}
],
"src": "1610:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2018:326:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2028:75:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2095:6:11"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2053:41:11"
},
"nodeType": "YulFunctionCall",
"src": "2053:49:11"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2037:15:11"
},
"nodeType": "YulFunctionCall",
"src": "2037:66:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2028:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2119:5:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2126:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2112:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2112:21:11"
},
"nodeType": "YulExpressionStatement",
"src": "2112:21:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2142:27:11",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2157:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2164:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2153:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2153:16:11"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2146:3:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2209:77:11"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2188:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2193:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2184:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2184:16:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2202:3:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2181:2:11"
},
"nodeType": "YulFunctionCall",
"src": "2181:25:11"
},
"nodeType": "YulIf",
"src": "2178:112:11"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2321:3:11"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2326:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2331:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2299:21:11"
},
"nodeType": "YulFunctionCall",
"src": "2299:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "2299:39:11"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1991:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1996:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2004:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2012:5:11",
"type": ""
}
],
"src": "1923:421:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2437:282:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2486:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2488:77:11"
},
"nodeType": "YulFunctionCall",
"src": "2488:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "2488:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2465:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2473:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2461:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2461:17:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2480:3:11"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2457:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2457:27:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2450:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2450:35:11"
},
"nodeType": "YulIf",
"src": "2447:122:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2578:27:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2598:6:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2592:5:11"
},
"nodeType": "YulFunctionCall",
"src": "2592:13:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2582:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2614:99:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2686:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2694:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2682:17:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2701:6:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2709:3:11"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2623:58:11"
},
"nodeType": "YulFunctionCall",
"src": "2623:90:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2614:5:11"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2415:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2423:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2431:5:11",
"type": ""
}
],
"src": "2364:355:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2839:739:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2885:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2887:77:11"
},
"nodeType": "YulFunctionCall",
"src": "2887:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "2887:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2869:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2856:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2856:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2881:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2852:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2852:32:11"
},
"nodeType": "YulIf",
"src": "2849:119:11"
},
{
"nodeType": "YulBlock",
"src": "2978:291:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2993:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3017:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3028:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3013:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3013:17:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3007:5:11"
},
"nodeType": "YulFunctionCall",
"src": "3007:24:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2997:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3078:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3080:77:11"
},
"nodeType": "YulFunctionCall",
"src": "3080:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "3080:79:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3050:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3058:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3047:2:11"
},
"nodeType": "YulFunctionCall",
"src": "3047:30:11"
},
"nodeType": "YulIf",
"src": "3044:117:11"
},
{
"nodeType": "YulAssignment",
"src": "3175:84:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3231:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3242:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3227:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3227:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3251:7:11"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "3185:41:11"
},
"nodeType": "YulFunctionCall",
"src": "3185:74:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3175:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3279:292:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3294:39:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3318:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3329:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3314:3:11"
},
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