Skip to content

Instantly share code, notes, and snippets.

@streamerd
Created January 18, 2022 01:39
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 streamerd/a8dc97d73a916e6fa19283059842e591 to your computer and use it in GitHub Desktop.
Save streamerd/a8dc97d73a916e6fa19283059842e591 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=true&runs=200&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
// SPDX-License-Identifier: MIT
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() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(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"
);
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_470": {
"entryPoint": null,
"id": 470,
"parameterSlots": 0,
"returnSlots": 0
},
"@_613": {
"entryPoint": null,
"id": 613,
"parameterSlots": 2,
"returnSlots": 0
},
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 3,
"returnSlots": 0
},
"@_addTokenToAllTokensEnumeration_1726": {
"entryPoint": null,
"id": 1726,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1706": {
"entryPoint": 2180,
"id": 1706,
"parameterSlots": 2,
"returnSlots": 0
},
"@_beforeTokenTransfer_1365": {
"entryPoint": null,
"id": 1365,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1676": {
"entryPoint": 1595,
"id": 1676,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_1354": {
"entryPoint": 1234,
"id": 1354,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_1006": {
"entryPoint": null,
"id": 1006,
"parameterSlots": 1,
"returnSlots": 1
},
"@_mint_1148": {
"entryPoint": 892,
"id": 1148,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2205": {
"entryPoint": 240,
"id": 2205,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1837": {
"entryPoint": 1994,
"id": 1837,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1789": {
"entryPoint": 1821,
"id": 1789,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_1062": {
"entryPoint": 738,
"id": 1062,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_1091": {
"entryPoint": 772,
"id": 1091,
"parameterSlots": 3,
"returnSlots": 0
},
"@_setOwner_549": {
"entryPoint": 244,
"id": 549,
"parameterSlots": 1,
"returnSlots": 0
},
"@balanceOf_668": {
"entryPoint": 2261,
"id": 668,
"parameterSlots": 1,
"returnSlots": 1
},
"@isContract_1916": {
"entryPoint": 1815,
"id": 1916,
"parameterSlots": 1,
"returnSlots": 1
},
"@mint_170": {
"entryPoint": 447,
"id": 170,
"parameterSlots": 2,
"returnSlots": 0
},
"@owner_479": {
"entryPoint": null,
"id": 479,
"parameterSlots": 0,
"returnSlots": 1
},
"@setBaseURI_308": {
"entryPoint": 326,
"id": 308,
"parameterSlots": 1,
"returnSlots": 0
},
"@totalSupply_1589": {
"entryPoint": null,
"id": 1589,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_string_fromMemory": {
"entryPoint": 2564,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 2709,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 2760,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"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": 2905,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2991,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 3018,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 3052,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 3078,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 3125,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 3186,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3216,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 3238,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 3260,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 3282,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6088:13",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:13",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "78:622:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "127:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "136:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "139:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "129:6:13"
},
"nodeType": "YulFunctionCall",
"src": "129:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "129:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "106:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "114:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "102:3:13"
},
"nodeType": "YulFunctionCall",
"src": "102:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "121:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "98:3:13"
},
"nodeType": "YulFunctionCall",
"src": "98:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "91:6:13"
},
"nodeType": "YulFunctionCall",
"src": "91:35:13"
},
"nodeType": "YulIf",
"src": "88:55:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "152:23:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "168:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "162:5:13"
},
"nodeType": "YulFunctionCall",
"src": "162:13:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "156:2:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "184:28:13",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "202:2:13",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "206:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "198:3:13"
},
"nodeType": "YulFunctionCall",
"src": "198:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "210:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "194:3:13"
},
"nodeType": "YulFunctionCall",
"src": "194:18:13"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "188:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "235:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "237:16:13"
},
"nodeType": "YulFunctionCall",
"src": "237:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "237:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "227:2:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "231:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "224:2:13"
},
"nodeType": "YulFunctionCall",
"src": "224:10:13"
},
"nodeType": "YulIf",
"src": "221:36:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "266:17:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "280:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "276:3:13"
},
"nodeType": "YulFunctionCall",
"src": "276:7:13"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "270:2:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "292:23:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "312:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "306:5:13"
},
"nodeType": "YulFunctionCall",
"src": "306:9:13"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "296:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "324:71:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "346:6:13"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "370:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "374:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "366:3:13"
},
"nodeType": "YulFunctionCall",
"src": "366:13:13"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "381:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "362:3:13"
},
"nodeType": "YulFunctionCall",
"src": "362:22:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:2:13",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "358:3:13"
},
"nodeType": "YulFunctionCall",
"src": "358:31:13"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "391:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "354:3:13"
},
"nodeType": "YulFunctionCall",
"src": "354:40:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "342:3:13"
},
"nodeType": "YulFunctionCall",
"src": "342:53:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "328:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "454:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "456:16:13"
},
"nodeType": "YulFunctionCall",
"src": "456:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "456:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "413:10:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "425:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "410:2:13"
},
"nodeType": "YulFunctionCall",
"src": "410:18:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "433:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "445:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "430:2:13"
},
"nodeType": "YulFunctionCall",
"src": "430:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "407:2:13"
},
"nodeType": "YulFunctionCall",
"src": "407:46:13"
},
"nodeType": "YulIf",
"src": "404:72:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "492:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "496:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "485:6:13"
},
"nodeType": "YulFunctionCall",
"src": "485:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "485:22:13"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "523:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "531:2:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "516:6:13"
},
"nodeType": "YulFunctionCall",
"src": "516:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "516:18:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "582:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "591:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "594:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "584:6:13"
},
"nodeType": "YulFunctionCall",
"src": "584:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "584:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "557:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "565:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "553:3:13"
},
"nodeType": "YulFunctionCall",
"src": "553:15:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "570:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "549:3:13"
},
"nodeType": "YulFunctionCall",
"src": "549:26:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "577:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "546:2:13"
},
"nodeType": "YulFunctionCall",
"src": "546:35:13"
},
"nodeType": "YulIf",
"src": "543:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "633:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "641:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "629:3:13"
},
"nodeType": "YulFunctionCall",
"src": "629:17:13"
},
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "652:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "660:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "648:3:13"
},
"nodeType": "YulFunctionCall",
"src": "648:17:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "667:2:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "607:21:13"
},
"nodeType": "YulFunctionCall",
"src": "607:63:13"
},
"nodeType": "YulExpressionStatement",
"src": "607:63:13"
},
{
"nodeType": "YulAssignment",
"src": "679:15:13",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "688:6:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "679:5:13"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "52:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "60:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "68:5:13",
"type": ""
}
],
"src": "14:686:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "785:210:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "831:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "840:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "843:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "833:6:13"
},
"nodeType": "YulFunctionCall",
"src": "833:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "833:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "806:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "815:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "802:3:13"
},
"nodeType": "YulFunctionCall",
"src": "802:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "827:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "798:3:13"
},
"nodeType": "YulFunctionCall",
"src": "798:32:13"
},
"nodeType": "YulIf",
"src": "795:52:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "856:29:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "875:9:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "869:5:13"
},
"nodeType": "YulFunctionCall",
"src": "869:16:13"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "860:5:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "958:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "961:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "951:6:13"
},
"nodeType": "YulFunctionCall",
"src": "951:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "951:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "907:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "918:5:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "929:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "934:10:13",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "925:3:13"
},
"nodeType": "YulFunctionCall",
"src": "925:20:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "914:3:13"
},
"nodeType": "YulFunctionCall",
"src": "914:32:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "904:2:13"
},
"nodeType": "YulFunctionCall",
"src": "904:43:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "897:6:13"
},
"nodeType": "YulFunctionCall",
"src": "897:51:13"
},
"nodeType": "YulIf",
"src": "894:71:13"
},
{
"nodeType": "YulAssignment",
"src": "974:15:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "984:5:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "974:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "751:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "762:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "774:6:13",
"type": ""
}
],
"src": "705:290:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1145:621:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1191:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1200:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1203:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1193:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1193:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1193:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1166:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1175:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1162:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1162:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1187:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1158:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1158:32:13"
},
"nodeType": "YulIf",
"src": "1155:52:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1216:30:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1236:9:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1230:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1230:16:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1220:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1255:28:13",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1273:2:13",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1277:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1269:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1269:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1281:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1265:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1265:18:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1259:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1310:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1319:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1322:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1312:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1312:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1312:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1298:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1306:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1295:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1295:14:13"
},
"nodeType": "YulIf",
"src": "1292:34:13"
},
{
"nodeType": "YulAssignment",
"src": "1335:71:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1378:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1389:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1374:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1374:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1398:7:13"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1345:28:13"
},
"nodeType": "YulFunctionCall",
"src": "1345:61:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1335:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1415:41:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1441:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1452:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1437:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1437:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1431:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1431:25:13"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1419:8:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1485:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1494:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1497:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1487:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1487:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1487:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1471:8:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1481:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1468:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1468:16:13"
},
"nodeType": "YulIf",
"src": "1465:36:13"
},
{
"nodeType": "YulAssignment",
"src": "1510:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1553:9:13"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1564:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1549:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1549:24:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1575:7:13"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1520:28:13"
},
"nodeType": "YulFunctionCall",
"src": "1520:63:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1510:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1592:41:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1618:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1629:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1614:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1614:18:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1608:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1608:25:13"
},
"variables": [
{
"name": "offset_2",
"nodeType": "YulTypedName",
"src": "1596:8:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1662:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1671:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1674:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1664:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1664:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1664:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_2",
"nodeType": "YulIdentifier",
"src": "1648:8:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1658:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1645:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1645:16:13"
},
"nodeType": "YulIf",
"src": "1642:36:13"
},
{
"nodeType": "YulAssignment",
"src": "1687:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1730:9:13"
},
{
"name": "offset_2",
"nodeType": "YulIdentifier",
"src": "1741:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1726:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1726:24:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1752:7:13"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1697:28:13"
},
"nodeType": "YulFunctionCall",
"src": "1697:63:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1687:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1095:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1106:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1118:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1126:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1134:6:13",
"type": ""
}
],
"src": "1000:766:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1974:451:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1984:29:13",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2002:3:13",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2007:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1998:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1998:11:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2011:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1994:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1994:19:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1988:2:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2029:9:13"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2044:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2052:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2040:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2040:15:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2022:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2022:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "2022:34:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2076:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2087:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2072:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2072:18:13"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2096:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2104:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2092:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2092:15:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2065:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2065:43:13"
},
"nodeType": "YulExpressionStatement",
"src": "2065:43:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2128:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2139:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2124:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2124:18:13"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2144:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2117:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2117:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "2117:34:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2171:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2182:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2167:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2167:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2187:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2160:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2160:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "2160:31:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2200:27:13",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2220:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2214:5:13"
},
"nodeType": "YulFunctionCall",
"src": "2214:13:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2204:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2247:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2258:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2243:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2243:19:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2264:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2236:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2236:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "2236:35:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2306:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2314:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2302:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2302:15:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2323:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2334:3:13",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2319:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2319:19:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2340:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2280:21:13"
},
"nodeType": "YulFunctionCall",
"src": "2280:67:13"
},
"nodeType": "YulExpressionStatement",
"src": "2280:67:13"
},
{
"nodeType": "YulAssignment",
"src": "2356:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2372:9:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2391:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2399:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2387:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2387:15:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2408:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2404:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2404:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2383:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2383:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2368:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2368:45:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2415:3:13",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2364:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2364:55:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2356:4:13"
}
]
}
]
},
"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": "1919:9:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1930:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1938:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1946:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1954:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1965:4:13",
"type": ""
}
],
"src": "1771:654:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:240:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2621:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2632:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2614:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2614:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "2614:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2655:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2666:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2651:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2651:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2671:2:13",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2644:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2644:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "2644:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2694:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2705:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2690:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2690:18:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2710:34:13",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2683:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2683:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "2683:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2765:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2776:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2761:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2761:18:13"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2781:20:13",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2754:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2754:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "2754:48:13"
},
{
"nodeType": "YulAssignment",
"src": "2811:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2823:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2834:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2819:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2819:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2811:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2581:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2595:4:13",
"type": ""
}
],
"src": "2430:414:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3023:178:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3040:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3051:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3033:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3033:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "3033:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3074:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3085:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3070:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3070:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3090:2:13",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3063:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3063:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "3063:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3113:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3124:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3109:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3109:18:13"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3129:30:13",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3102:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3102:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "3102:58:13"
},
{
"nodeType": "YulAssignment",
"src": "3169:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3181:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3192:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3177:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3177:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3169:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3000:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3014:4:13",
"type": ""
}
],
"src": "2849:352:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3380:232:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3397:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3408:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3390:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3390:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "3390:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3431:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3442:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3427:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3427:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3447:2:13",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3420:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3420:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "3420:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3470:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3481:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3466:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3466:18:13"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3486:34:13",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3459:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3459:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "3459:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3541:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3552:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3537:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3537:18:13"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3557:12:13",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3530:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3530:40:13"
},
"nodeType": "YulExpressionStatement",
"src": "3530:40:13"
},
{
"nodeType": "YulAssignment",
"src": "3579:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3591:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3602:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3587:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3587:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3579:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3357:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3371:4:13",
"type": ""
}
],
"src": "3206:406:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3791:182:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3808:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3819:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3801:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "3801:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3842:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3853:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3838:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3838:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3858:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3831:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3831:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "3831:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3881:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3892:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3877:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3877:18:13"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3897:34:13",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3870:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3870:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "3870:62:13"
},
{
"nodeType": "YulAssignment",
"src": "3941:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3953:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3964:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3949:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3949:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3941:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3768:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3782:4:13",
"type": ""
}
],
"src": "3617:356:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4152:182:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4169:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4180:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4162:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4162:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "4162:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4203:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4214:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4199:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4199:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4219:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4192:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4192:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "4192:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4242:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4253:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4238:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4238:18:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4258:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4231:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4231:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "4231:62:13"
},
{
"nodeType": "YulAssignment",
"src": "4302:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4314:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4325:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4310:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4310:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4302:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4129:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4143:4:13",
"type": ""
}
],
"src": "3978:356:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4387:80:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4414:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4416:16:13"
},
"nodeType": "YulFunctionCall",
"src": "4416:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "4416:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4403:1:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4410:1:13"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4406:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4406:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4400:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4400:13:13"
},
"nodeType": "YulIf",
"src": "4397:39:13"
},
{
"nodeType": "YulAssignment",
"src": "4445:16:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4456:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4459:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4452:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4452:9:13"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4445:3:13"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4370:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4373:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4379:3:13",
"type": ""
}
],
"src": "4339:128:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4524:116:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4583:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4585:16:13"
},
"nodeType": "YulFunctionCall",
"src": "4585:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "4585:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4555:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4548:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4548:9:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4541:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4541:17:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4563:1:13"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4574:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4570:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4570:6:13"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4578:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4566:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4566:14:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4560:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4560:21:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4537:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4537:45:13"
},
"nodeType": "YulIf",
"src": "4534:71:13"
},
{
"nodeType": "YulAssignment",
"src": "4614:20:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4629:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4632:1:13"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4625:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4625:9:13"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "4614:7:13"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4503:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4506:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "4512:7:13",
"type": ""
}
],
"src": "4472:168:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4694:76:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4716:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4718:16:13"
},
"nodeType": "YulFunctionCall",
"src": "4718:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "4718:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4710:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4713:1:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4707:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4707:8:13"
},
"nodeType": "YulIf",
"src": "4704:34:13"
},
{
"nodeType": "YulAssignment",
"src": "4747:17:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4759:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4762:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4755:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4755:9:13"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "4747:4:13"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4676:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4679:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "4685:4:13",
"type": ""
}
],
"src": "4645:125:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4828:205:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4838:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4847:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4842:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4907:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4932:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4937:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4928:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4928:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4951:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4956:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4947:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4947:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4941:5:13"
},
"nodeType": "YulFunctionCall",
"src": "4941:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4921:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4921:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "4921:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4868:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4871:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4865:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4865:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4879:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4881:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4890:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4893:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4886:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4886:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4881:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4861:3:13",
"statements": []
},
"src": "4857:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4996:31:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5009:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5014:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5005:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5005:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5023:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4998:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4998:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "4998:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4985:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4988:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4982:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4982:13:13"
},
"nodeType": "YulIf",
"src": "4979:48:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4806:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4811:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4816:6:13",
"type": ""
}
],
"src": "4775:258:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5093:325:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5103:22:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5117:1:13",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5120:4:13"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "5113:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5113:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5103:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5134:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5164:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5170:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5160:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5160:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5138:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5211:31:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5213:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5227:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5235:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5223:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5223:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5213:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5191:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5184:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5184:26:13"
},
"nodeType": "YulIf",
"src": "5181:61:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5301:111:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5322:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5329:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5334:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5325:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5325:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5315:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5315:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "5315:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5366:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5369:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5359:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5359:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5359:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5394:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5397:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5387:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5387:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5387:15:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5257:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5280:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5288:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5277:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5277:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5254:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5254:38:13"
},
"nodeType": "YulIf",
"src": "5251:161:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5073:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5082:6:13",
"type": ""
}
],
"src": "5038:380:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5470:88:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5501:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5503:16:13"
},
"nodeType": "YulFunctionCall",
"src": "5503:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "5503:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5486:5:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5497:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5493:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5493:6:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5483:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5483:17:13"
},
"nodeType": "YulIf",
"src": "5480:43:13"
},
{
"nodeType": "YulAssignment",
"src": "5532:20:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5543:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5550:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5539:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5539:13:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5532:3:13"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5452:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5462:3:13",
"type": ""
}
],
"src": "5423:135:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5595:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5612:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5619:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5624:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5615:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5615:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5605:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5605:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "5605:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5652:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5655:4:13",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5645:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5645:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5645:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5676:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5679:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5669:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5669:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5669:15:13"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5563:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5727:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5744:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5751:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5756:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5747:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5747:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5737:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5737:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "5737:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5784:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5787:4:13",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5777:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5777:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5777:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5808:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5811:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5801:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5801:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5801:15:13"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "5695:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5859:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5876:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5883:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5888:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5879:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5879:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5869:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5869:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "5869:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5916:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5919:4:13",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5909:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5909:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5909:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5940:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5943:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5933:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5933:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "5933:15:13"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "5827:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5991:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6008:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6015:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6020:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6011:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6011:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6001:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6001:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "6001:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6048:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6051:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6041:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6041:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "6041:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6072:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6075:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6065:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6065:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "6065:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "5959:127:13"
}
]
},
"contents": "{\n { }\n function abi_decode_string_fromMemory(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let _1 := mload(offset)\n let _2 := sub(shl(64, 1), 1)\n if gt(_1, _2) { panic_error_0x41() }\n let _3 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_1, 0x1f), _3), 63), _3))\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _1)\n if gt(add(add(offset, _1), 0x20), end) { revert(0, 0) }\n copy_memory_to_memory(add(offset, 0x20), add(memPtr, 0x20), _1)\n array := memPtr\n }\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := mload(headStart)\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n value0 := value\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n let offset := mload(headStart)\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(0, 0) }\n value0 := abi_decode_string_fromMemory(add(headStart, offset), dataEnd)\n let offset_1 := mload(add(headStart, 32))\n if gt(offset_1, _1) { revert(0, 0) }\n value1 := abi_decode_string_fromMemory(add(headStart, offset_1), dataEnd)\n let offset_2 := mload(add(headStart, 64))\n if gt(offset_2, _1) { revert(0, 0) }\n value2 := abi_decode_string_fromMemory(add(headStart, offset_2), dataEnd)\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 {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n let length := mload(value3)\n mstore(add(headStart, 128), length)\n copy_memory_to_memory(add(value3, 32), add(headStart, 160), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 160)\n }\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 50)\n mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n mstore(add(headStart, 96), \"ceiver implementer\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 28)\n mstore(add(headStart, 64), \"ERC721: token already minted\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 42)\n mstore(add(headStart, 64), \"ERC721: balance query for the ze\")\n mstore(add(headStart, 96), \"ro address\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"ERC721: mint to the zero address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_mul_t_uint256(x, y) -> product\n {\n if and(iszero(iszero(x)), gt(y, div(not(0), x))) { panic_error_0x11() }\n product := mul(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function copy_memory_to_memory(src, dst, length)\n {\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) { mstore(add(dst, length), 0) }\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function increment_t_uint256(value) -> ret\n {\n if eq(value, not(0)) { panic_error_0x11() }\n ret := add(value, 1)\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function panic_error_0x31()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n function panic_error_0x32()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n}",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200095e565b5066b1a2bc2ec50000600d55666a94d74f430000600e556065600f5560146010556011805460ff191690553480156200006057600080fd5b50604051620033f2380380620033f2833981016040819052620000839162000ac8565b8251839083906200009c9060009060208501906200095e565b508051620000b29060019060208401906200095e565b505050620000cf620000c9620000f060201b60201c565b620000f4565b620000da8162000146565b620000e7336014620001bf565b50505062000ce8565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001bb90600b9060208401906200095e565b5050565b6000620001cb60085490565b60115490915060ff1615620001df57600080fd5b60008211620001ed57600080fd5b601054821115620001fd57600080fd5b600f546200020c838362000baf565b11156200021857600080fd5b600a546001600160a01b03163314620002a5573360009081526012602052604090205460ff161515600114620002a5573360009081526013602052604090205460ff161515600114620002885781600d5462000275919062000bca565b3410156200028257600080fd5b620002a5565b81600e5462000298919062000bca565b341015620002a557600080fd5b60015b828111620002dc57620002c784620002c1838562000baf565b620002e2565b80620002d38162000c72565b915050620002a8565b50505050565b620001bb8282604051806020016040528060008152506200030460201b60201c565b6200031083836200037c565b6200031f6000848484620004d2565b620003775760405162461bcd60e51b81526020600482015260326024820152600080516020620033d283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019d565b505050565b6001600160a01b038216620003d45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200019d565b6000818152600260205260409020546001600160a01b0316156200043b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200019d565b62000449600083836200063b565b6001600160a01b03821660009081526003602052604081208054600192906200047490849062000baf565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620004f3846001600160a01b03166200071760201b620015081760201c565b156200062f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200052d90339089908890889060040162000b59565b602060405180830381600087803b1580156200054857600080fd5b505af19250505080156200057b575060408051601f3d908101601f19168201909252620005789181019062000a95565b60015b62000614573d808015620005ac576040519150601f19603f3d011682016040523d82523d6000602084013e620005b1565b606091505b5080516200060c5760405162461bcd60e51b81526020600482015260326024820152600080516020620033d283398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000633565b5060015b949350505050565b620006538383836200037760201b62000a481760201c565b6001600160a01b038316620006b157620006ab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620006d7565b816001600160a01b0316836001600160a01b031614620006d757620006d783826200071d565b6001600160a01b038216620006f1576200037781620007ca565b826001600160a01b0316826001600160a01b031614620003775762000377828262000884565b3b151590565b600060016200073784620008d560201b6200108e1760201c565b62000743919062000bec565b60008381526007602052604090205490915080821462000797576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007de9060019062000bec565b6000838152600960205260408120546008805493945090928490811062000809576200080962000cbc565b9060005260206000200154905080600883815481106200082d576200082d62000cbc565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548062000868576200086862000ca6565b6001900381819060005260206000200160009055905550505050565b60006200089c83620008d560201b6200108e1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009425760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200019d565b506001600160a01b031660009081526003602052604090205490565b8280546200096c9062000c35565b90600052602060002090601f016020900481019282620009905760008555620009db565b82601f10620009ab57805160ff1916838001178555620009db565b82800160010185558215620009db579182015b82811115620009db578251825591602001919060010190620009be565b50620009e9929150620009ed565b5090565b5b80821115620009e95760008155600101620009ee565b600082601f83011262000a1657600080fd5b81516001600160401b038082111562000a335762000a3362000cd2565b604051601f8301601f19908116603f0116810190828211818310171562000a5e5762000a5e62000cd2565b8160405283815286602085880101111562000a7857600080fd5b62000a8b84602083016020890162000c06565b9695505050505050565b60006020828403121562000aa857600080fd5b81516001600160e01b03198116811462000ac157600080fd5b9392505050565b60008060006060848603121562000ade57600080fd5b83516001600160401b038082111562000af657600080fd5b62000b048783880162000a04565b9450602086015191508082111562000b1b57600080fd5b62000b298783880162000a04565b9350604086015191508082111562000b4057600080fd5b5062000b4f8682870162000a04565b9150509250925092565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000b988160a085016020870162000c06565b601f01601f19169190910160a00195945050505050565b6000821982111562000bc55762000bc562000c90565b500190565b600081600019048311821515161562000be75762000be762000c90565b500290565b60008282101562000c015762000c0162000c90565b500390565b60005b8381101562000c2357818101518382015260200162000c09565b83811115620002dc5750506000910152565b600181811c9082168062000c4a57607f821691505b6020821081141562000c6c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000c895762000c8962000c90565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6126da8062000cf86000396000f3fe6080604052600436106102515760003560e01c806355f804b311610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146106b0578063d936547e146106c6578063da3ef23f146106f6578063e985e9c514610716578063ed931e171461075f578063f2fde38b1461077f57600080fd5b8063a22cb4651461061b578063b2f3e85e1461063b578063b88d4fde1461065b578063c66828621461067b578063c87b56dd1461069057600080fd5b8063715018a6116100fd578063715018a6146105935780637f00c7a6146105a85780638da5cb5b146105c85780638fdcf942146105e657806395d89b411461060657600080fd5b806355f804b3146105045780635c975abb146105245780636352211e1461053e5780636c0360eb1461055e57806370a082311461057357600080fd5b80632f745c59116101d257806342842e0e1161019657806342842e0e14610437578063438b63001461045757806344a0d68a146104845780634a4c560d146104a45780634f6ccce7146104c4578063546857c7146104e457600080fd5b80632f745c59146103ac57806330b2264e146103cc57806330cc7ae0146103fc5780633ccfd60b1461041c57806340c10f191461042457600080fd5b806313faede61161021957806313faede61461032757806318160ddd1461034b578063239c70ae1461036057806323b872dd146103765780632a23d07d1461039657600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004612230565b61079f565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612215565b6107ca565b005b3480156102b957600080fd5b506102c2610810565b604051610282919061243d565b3480156102db57600080fd5b506102ef6102ea3660046122b3565b6108a2565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab61032236600461215b565b610937565b34801561033357600080fd5b5061033d600d5481565b604051908152602001610282565b34801561035757600080fd5b5060085461033d565b34801561036c57600080fd5b5061033d60105481565b34801561038257600080fd5b506102ab610391366004612079565b610a4d565b3480156103a257600080fd5b5061033d600e5481565b3480156103b857600080fd5b5061033d6103c736600461215b565b610a7e565b3480156103d857600080fd5b506102766103e736600461202b565b60136020526000908152604090205460ff1681565b34801561040857600080fd5b506102ab61041736600461202b565b610b14565b6102ab610b5f565b6102ab61043236600461215b565b610be1565b34801561044357600080fd5b506102ab610452366004612079565b610ceb565b34801561046357600080fd5b5061047761047236600461202b565b610d06565b60405161028291906123f9565b34801561049057600080fd5b506102ab61049f3660046122b3565b610da8565b3480156104b057600080fd5b506102ab6104bf36600461202b565b610dd7565b3480156104d057600080fd5b5061033d6104df3660046122b3565b610e25565b3480156104f057600080fd5b506102ab6104ff366004612185565b610eb8565b34801561051057600080fd5b506102ab61051f36600461226a565b610f4c565b34801561053057600080fd5b506011546102769060ff1681565b34801561054a57600080fd5b506102ef6105593660046122b3565b610f89565b34801561056a57600080fd5b506102c2611000565b34801561057f57600080fd5b5061033d61058e36600461202b565b61108e565b34801561059f57600080fd5b506102ab611115565b3480156105b457600080fd5b506102ab6105c33660046122b3565b61114b565b3480156105d457600080fd5b50600a546001600160a01b03166102ef565b3480156105f257600080fd5b506102ab6106013660046122b3565b61117a565b34801561061257600080fd5b506102c26111a9565b34801561062757600080fd5b506102ab610636366004612131565b6111b8565b34801561064757600080fd5b506102ab61065636600461202b565b61127d565b34801561066757600080fd5b506102ab6106763660046120b5565b6112cb565b34801561068757600080fd5b506102c26112fd565b34801561069c57600080fd5b506102c26106ab3660046122b3565b61130a565b3480156106bc57600080fd5b5061033d600f5481565b3480156106d257600080fd5b506102766106e136600461202b565b60126020526000908152604090205460ff1681565b34801561070257600080fd5b506102ab61071136600461226a565b6113e8565b34801561072257600080fd5b50610276610731366004612046565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076b57600080fd5b506102ab61077a36600461202b565b611425565b34801561078b57600080fd5b506102ab61079a36600461202b565b611470565b60006001600160e01b0319821663780e9d6360e01b14806107c457506107c48261150e565b92915050565b600a546001600160a01b031633146107fd5760405162461bcd60e51b81526004016107f4906124a2565b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461081f906125b6565b80601f016020809104026020016040519081016040528092919081815260200182805461084b906125b6565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f4565b506000908152600460205260409020546001600160a01b031690565b600061094282610f89565b9050806001600160a01b0316836001600160a01b031614156109b05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f4565b336001600160a01b03821614806109cc57506109cc8133610731565b610a3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f4565b610a48838361155e565b505050565b610a5733826115cc565b610a735760405162461bcd60e51b81526004016107f4906124d7565b610a488383836116c3565b6000610a898361108e565b8210610aeb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b3e5760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b03166000908152601260205260409020805460ff19169055565b600a546001600160a01b03163314610b895760405162461bcd60e51b81526004016107f4906124a2565b604051600090339047908381818185875af1925050503d8060008114610bcb576040519150601f19603f3d011682016040523d82523d6000602084013e610bd0565b606091505b5050905080610bde57600080fd5b50565b6000610bec60085490565b60115490915060ff1615610bff57600080fd5b60008211610c0c57600080fd5b601054821115610c1b57600080fd5b600f54610c288383612528565b1115610c3357600080fd5b600a546001600160a01b03163314610cb6573360009081526012602052604090205460ff161515600114610cb6573360009081526013602052604090205460ff161515600114610c9c5781600d54610c8b9190612554565b341015610c9757600080fd5b610cb6565b81600e54610caa9190612554565b341015610cb657600080fd5b60015b828111610ce557610cd384610cce8385612528565b61186e565b80610cdd816125f1565b915050610cb9565b50505050565b610a48838383604051806020016040528060008152506112cb565b60606000610d138361108e565b905060008167ffffffffffffffff811115610d3057610d30612678565b604051908082528060200260200182016040528015610d59578160200160208202803683370190505b50905060005b82811015610da057610d718582610a7e565b828281518110610d8357610d83612662565b602090810291909101015280610d98816125f1565b915050610d5f565b509392505050565b600a546001600160a01b03163314610dd25760405162461bcd60e51b81526004016107f4906124a2565b600d55565b600a546001600160a01b03163314610e015760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6000610e3060085490565b8210610e935760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f4565b60088281548110610ea657610ea6612662565b90600052602060002001549050919050565b600a546001600160a01b03163314610ee25760405162461bcd60e51b81526004016107f4906124a2565b60005b6002811015610f4857600160136000848460648110610f0657610f06612662565b602090810291909101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610f40816125f1565b915050610ee5565b5050565b600a546001600160a01b03163314610f765760405162461bcd60e51b81526004016107f4906124a2565b8051610f4890600b906020840190611ef0565b6000818152600260205260408120546001600160a01b0316806107c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f4565b600b805461100d906125b6565b80601f0160208091040260200160405190810160405280929190818152602001828054611039906125b6565b80156110865780601f1061105b57610100808354040283529160200191611086565b820191906000526020600020905b81548152906001019060200180831161106957829003601f168201915b505050505081565b60006001600160a01b0382166110f95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461113f5760405162461bcd60e51b81526004016107f4906124a2565b6111496000611888565b565b600a546001600160a01b031633146111755760405162461bcd60e51b81526004016107f4906124a2565b601055565b600a546001600160a01b031633146111a45760405162461bcd60e51b81526004016107f4906124a2565b600e55565b60606001805461081f906125b6565b6001600160a01b0382163314156112115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112a75760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6112d533836115cc565b6112f15760405162461bcd60e51b81526004016107f4906124d7565b610ce5848484846118da565b600c805461100d906125b6565b6000818152600260205260409020546060906001600160a01b03166113895760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f4565b600061139361190d565b905060008151116113b357604051806020016040528060008152506113e1565b806113bd8461191c565b600c6040516020016113d1939291906122f8565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114125760405162461bcd60e51b81526004016107f4906124a2565b8051610f4890600c906020840190611ef0565b600a546001600160a01b0316331461144f5760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b03166000908152601360205260409020805460ff19169055565b600a546001600160a01b0316331461149a5760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b0381166114ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f4565b610bde81611888565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061153f57506001600160e01b03198216635b5e139f60e01b145b806107c457506301ffc9a760e01b6001600160e01b03198316146107c4565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159382610f89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f4565b600061165083610f89565b9050806001600160a01b0316846001600160a01b0316148061168b5750836001600160a01b0316611680846108a2565b6001600160a01b0316145b806116bb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116d682610f89565b6001600160a01b03161461173e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f4565b6001600160a01b0382166117a05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f4565b6117ab838383611a1a565b6117b660008261155e565b6001600160a01b03831660009081526003602052604081208054600192906117df908490612573565b90915550506001600160a01b038216600090815260036020526040812080546001929061180d908490612528565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f48828260405180602001604052806000815250611ad2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118e58484846116c3565b6118f184848484611b05565b610ce55760405162461bcd60e51b81526004016107f490612450565b6060600b805461081f906125b6565b6060816119405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561196a5780611954816125f1565b91506119639050600a83612540565b9150611944565b60008167ffffffffffffffff81111561198557611985612678565b6040519080825280601f01601f1916602001820160405280156119af576020820181803683370190505b5090505b84156116bb576119c4600183612573565b91506119d1600a8661260c565b6119dc906030612528565b60f81b8183815181106119f1576119f1612662565b60200101906001600160f81b031916908160001a905350611a13600a86612540565b94506119b3565b6001600160a01b038316611a7557611a7081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a98565b816001600160a01b0316836001600160a01b031614611a9857611a988382611c12565b6001600160a01b038216611aaf57610a4881611caf565b826001600160a01b0316826001600160a01b031614610a4857610a488282611d5e565b611adc8383611da2565b611ae96000848484611b05565b610a485760405162461bcd60e51b81526004016107f490612450565b60006001600160a01b0384163b15611c0757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b499033908990889088906004016123bc565b602060405180830381600087803b158015611b6357600080fd5b505af1925050508015611b93575060408051601f3d908101601f19168201909252611b909181019061224d565b60015b611bed573d808015611bc1576040519150601f19603f3d011682016040523d82523d6000602084013e611bc6565b606091505b508051611be55760405162461bcd60e51b81526004016107f490612450565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116bb565b506001949350505050565b60006001611c1f8461108e565b611c299190612573565b600083815260076020526040902054909150808214611c7c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cc190600190612573565b60008381526009602052604081205460088054939450909284908110611ce957611ce9612662565b906000526020600020015490508060088381548110611d0a57611d0a612662565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d4257611d4261264c565b6001900381819060005260206000200160009055905550505050565b6000611d698361108e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611df85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f4565b6000818152600260205260409020546001600160a01b031615611e5d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f4565b611e6960008383611a1a565b6001600160a01b0382166000908152600360205260408120805460019290611e92908490612528565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611efc906125b6565b90600052602060002090601f016020900481019282611f1e5760008555611f64565b82601f10611f3757805160ff1916838001178555611f64565b82800160010185558215611f64579182015b82811115611f64578251825591602001919060010190611f49565b50611f70929150611f74565b5090565b5b80821115611f705760008155600101611f75565b600067ffffffffffffffff80841115611fa457611fa4612678565b604051601f8501601f19908116603f01168101908282118183101715611fcc57611fcc612678565b81604052809350858152868686011115611fe557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461201657600080fd5b919050565b8035801515811461201657600080fd5b60006020828403121561203d57600080fd5b6113e182611fff565b6000806040838503121561205957600080fd5b61206283611fff565b915061207060208401611fff565b90509250929050565b60008060006060848603121561208e57600080fd5b61209784611fff565b92506120a560208501611fff565b9150604084013590509250925092565b600080600080608085870312156120cb57600080fd5b6120d485611fff565b93506120e260208601611fff565b925060408501359150606085013567ffffffffffffffff81111561210557600080fd5b8501601f8101871361211657600080fd5b61212587823560208401611f89565b91505092959194509250565b6000806040838503121561214457600080fd5b61214d83611fff565b91506120706020840161201b565b6000806040838503121561216e57600080fd5b61217783611fff565b946020939093013593505050565b6000610c8080838503121561219957600080fd5b83601f8401126121a857600080fd5b60405181810181811067ffffffffffffffff821117156121ca576121ca612678565b60405280848381018710156121de57600080fd5b600093505b606484101561220a576121f581611fff565b825260019390930192602091820191016121e3565b509095945050505050565b60006020828403121561222757600080fd5b6113e18261201b565b60006020828403121561224257600080fd5b81356113e18161268e565b60006020828403121561225f57600080fd5b81516113e18161268e565b60006020828403121561227c57600080fd5b813567ffffffffffffffff81111561229357600080fd5b8201601f810184136122a457600080fd5b6116bb84823560208401611f89565b6000602082840312156122c557600080fd5b5035919050565b600081518084526122e481602086016020860161258a565b601f01601f19169290920160200192915050565b60008451602061230b8285838a0161258a565b85519184019161231e8184848a0161258a565b8554920191600090600181811c908083168061233b57607f831692505b85831081141561235957634e487b7160e01b85526022600452602485fd5b80801561236d576001811461237e576123ab565b60ff198516885283880195506123ab565b60008b81526020902060005b858110156123a35781548a82015290840190880161238a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ef908301846122cc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561243157835183529284019291840191600101612415565b50909695505050505050565b6020815260006113e160208301846122cc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561253b5761253b612620565b500190565b60008261254f5761254f612636565b500490565b600081600019048311821515161561256e5761256e612620565b500290565b60008282101561258557612585612620565b500390565b60005b838110156125a557818101518382015260200161258d565b83811115610ce55750506000910152565b600181811c908216806125ca57607f821691505b602082108114156125eb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561260557612605612620565b5060010190565b60008261261b5761261b612636565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bde57600080fdfea2646970667358221220df4a8d0bef0b3bd63fbab5a13e54f613296b23c4ca1da14b16851686e102ee4364736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"opcodes": "PUSH1 0xC0 PUSH1 0x40 MSTORE PUSH1 0x5 PUSH1 0x80 DUP2 SWAP1 MSTORE PUSH5 0x173539B7B7 PUSH1 0xD9 SHL PUSH1 0xA0 SWAP1 DUP2 MSTORE PUSH3 0x28 SWAP2 PUSH1 0xC SWAP2 SWAP1 PUSH3 0x95E JUMP JUMPDEST POP PUSH7 0xB1A2BC2EC50000 PUSH1 0xD SSTORE PUSH7 0x6A94D74F430000 PUSH1 0xE SSTORE PUSH1 0x65 PUSH1 0xF SSTORE PUSH1 0x14 PUSH1 0x10 SSTORE PUSH1 0x11 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE CALLVALUE DUP1 ISZERO PUSH3 0x60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x33F2 CODESIZE SUB DUP1 PUSH3 0x33F2 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x83 SWAP2 PUSH3 0xAC8 JUMP JUMPDEST DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 PUSH3 0x9C SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x95E JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0xB2 SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x95E JUMP JUMPDEST POP POP POP PUSH3 0xCF PUSH3 0xC9 PUSH3 0xF0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xF4 JUMP JUMPDEST PUSH3 0xDA DUP2 PUSH3 0x146 JUMP JUMPDEST PUSH3 0xE7 CALLER PUSH1 0x14 PUSH3 0x1BF JUMP JUMPDEST POP POP POP PUSH3 0xCE8 JUMP JUMPDEST CALLER SWAP1 JUMP JUMPDEST PUSH1 0xA DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH3 0x1A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD PUSH3 0x1BB SWAP1 PUSH1 0xB SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x95E JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1CB PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x11 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF AND ISZERO PUSH3 0x1DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 GT PUSH3 0x1ED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x10 SLOAD DUP3 GT ISZERO PUSH3 0x1FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xF SLOAD PUSH3 0x20C DUP4 DUP4 PUSH3 0xBAF JUMP JUMPDEST GT ISZERO PUSH3 0x218 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH3 0x2A5 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ PUSH3 0x2A5 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ PUSH3 0x288 JUMPI DUP2 PUSH1 0xD SLOAD PUSH3 0x275 SWAP2 SWAP1 PUSH3 0xBCA JUMP JUMPDEST CALLVALUE LT ISZERO PUSH3 0x282 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x2A5 JUMP JUMPDEST DUP2 PUSH1 0xE SLOAD PUSH3 0x298 SWAP2 SWAP1 PUSH3 0xBCA JUMP JUMPDEST CALLVALUE LT ISZERO PUSH3 0x2A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 JUMPDEST DUP3 DUP2 GT PUSH3 0x2DC JUMPI PUSH3 0x2C7 DUP5 PUSH3 0x2C1 DUP4 DUP6 PUSH3 0xBAF JUMP JUMPDEST PUSH3 0x2E2 JUMP JUMPDEST DUP1 PUSH3 0x2D3 DUP2 PUSH3 0xC72 JUMP JUMPDEST SWAP2 POP POP PUSH3 0x2A8 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH3 0x1BB DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0x304 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x310 DUP4 DUP4 PUSH3 0x37C JUMP JUMPDEST PUSH3 0x31F PUSH1 0x0 DUP5 DUP5 DUP5 PUSH3 0x4D2 JUMP JUMPDEST PUSH3 0x377 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x33D2 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x19D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x3D4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x19D JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH3 0x43B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH3 0x19D JUMP JUMPDEST PUSH3 0x449 PUSH1 0x0 DUP4 DUP4 PUSH3 0x63B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH3 0x474 SWAP1 DUP5 SWAP1 PUSH3 0xBAF JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4F3 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH3 0x717 PUSH1 0x20 SHL PUSH3 0x1508 OR PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x62F JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH3 0x52D SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH3 0xB59 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x548 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH3 0x57B JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH3 0x578 SWAP2 DUP2 ADD SWAP1 PUSH3 0xA95 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH3 0x614 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH3 0x5AC 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 PUSH3 0x5B1 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH3 0x60C JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x32 PUSH1 0x24 DUP3 ADD MSTORE PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0x33D2 DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x44 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x19D JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH3 0x633 JUMP JUMPDEST POP PUSH1 0x1 JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH3 0x653 DUP4 DUP4 DUP4 PUSH3 0x377 PUSH1 0x20 SHL PUSH3 0xA48 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH3 0x6B1 JUMPI PUSH3 0x6AB DUP2 PUSH1 0x8 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 ADD SSTORE JUMP JUMPDEST PUSH3 0x6D7 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH3 0x6D7 JUMPI PUSH3 0x6D7 DUP4 DUP3 PUSH3 0x71D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x6F1 JUMPI PUSH3 0x377 DUP2 PUSH3 0x7CA JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH3 0x377 JUMPI PUSH3 0x377 DUP3 DUP3 PUSH3 0x884 JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH3 0x737 DUP5 PUSH3 0x8D5 PUSH1 0x20 SHL PUSH3 0x108E OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x743 SWAP2 SWAP1 PUSH3 0xBEC JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP1 DUP3 EQ PUSH3 0x797 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x7 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x6 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH3 0x7DE SWAP1 PUSH1 0x1 SWAP1 PUSH3 0xBEC JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x8 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH3 0x809 JUMPI PUSH3 0x809 PUSH3 0xCBC JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH3 0x82D JUMPI PUSH3 0x82D PUSH3 0xCBC JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x9 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH3 0x868 JUMPI PUSH3 0x868 PUSH3 0xCA6 JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x89C DUP4 PUSH3 0x8D5 PUSH1 0x20 SHL PUSH3 0x108E OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE SWAP4 DUP3 MSTORE PUSH1 0x7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH3 0x942 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x19D JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x96C SWAP1 PUSH3 0xC35 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x990 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x9DB JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x9AB JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x9DB JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x9DB JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x9DB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x9BE JUMP JUMPDEST POP PUSH3 0x9E9 SWAP3 SWAP2 POP PUSH3 0x9ED JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x9E9 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x9EE JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0xA16 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0xA33 JUMPI PUSH3 0xA33 PUSH3 0xCD2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP4 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0xA5E JUMPI PUSH3 0xA5E PUSH3 0xCD2 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE DUP7 PUSH1 0x20 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0xA78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xA8B DUP5 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP10 ADD PUSH3 0xC06 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0xAA8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH3 0xAC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0xADE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0xAF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xB04 DUP8 DUP4 DUP9 ADD PUSH3 0xA04 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0xB1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xB29 DUP8 DUP4 DUP9 ADD PUSH3 0xA04 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0xB40 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0xB4F DUP7 DUP3 DUP8 ADD PUSH3 0xA04 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND DUP4 MSTORE DUP1 DUP7 AND PUSH1 0x20 DUP5 ADD MSTORE POP DUP4 PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x80 PUSH1 0x60 DUP4 ADD MSTORE DUP3 MLOAD DUP1 PUSH1 0x80 DUP5 ADD MSTORE PUSH3 0xB98 DUP2 PUSH1 0xA0 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH3 0xC06 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0xA0 ADD SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH3 0xBC5 JUMPI PUSH3 0xBC5 PUSH3 0xC90 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0xBE7 JUMPI PUSH3 0xBE7 PUSH3 0xC90 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH3 0xC01 JUMPI PUSH3 0xC01 PUSH3 0xC90 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0xC23 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0xC09 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x2DC JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0xC4A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0xC6C JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH3 0xC89 JUMPI PUSH3 0xC89 PUSH3 0xC90 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x26DA DUP1 PUSH3 0xCF8 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x251 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x55F804B3 GT PUSH2 0x139 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x7A JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x6B0 JUMPI DUP1 PUSH4 0xD936547E EQ PUSH2 0x6C6 JUMPI DUP1 PUSH4 0xDA3EF23F EQ PUSH2 0x6F6 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x716 JUMPI DUP1 PUSH4 0xED931E17 EQ PUSH2 0x75F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x77F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x61B JUMPI DUP1 PUSH4 0xB2F3E85E EQ PUSH2 0x63B JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x65B JUMPI DUP1 PUSH4 0xC6682862 EQ PUSH2 0x67B JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x690 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xFD JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x593 JUMPI DUP1 PUSH4 0x7F00C7A6 EQ PUSH2 0x5A8 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x5C8 JUMPI DUP1 PUSH4 0x8FDCF942 EQ PUSH2 0x5E6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x606 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x504 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x524 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x53E JUMPI DUP1 PUSH4 0x6C0360EB EQ PUSH2 0x55E JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F745C59 GT PUSH2 0x1D2 JUMPI DUP1 PUSH4 0x42842E0E GT PUSH2 0x196 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x438B6300 EQ PUSH2 0x457 JUMPI DUP1 PUSH4 0x44A0D68A EQ PUSH2 0x484 JUMPI DUP1 PUSH4 0x4A4C560D EQ PUSH2 0x4A4 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x4C4 JUMPI DUP1 PUSH4 0x546857C7 EQ PUSH2 0x4E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x3AC JUMPI DUP1 PUSH4 0x30B2264E EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0x30CC7AE0 EQ PUSH2 0x3FC JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x41C JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x424 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x13FAEDE6 GT PUSH2 0x219 JUMPI DUP1 PUSH4 0x13FAEDE6 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x34B JUMPI DUP1 PUSH4 0x239C70AE EQ PUSH2 0x360 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x376 JUMPI DUP1 PUSH4 0x2A23D07D EQ PUSH2 0x396 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x256 JUMPI DUP1 PUSH4 0x2329A29 EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x2AD JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2CF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x307 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x262 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0x2230 JUMP JUMPDEST PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x2A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x2215 JUMP JUMPDEST PUSH2 0x7CA JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x810 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x282 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EF PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x8A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x282 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x313 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x215B JUMP JUMPDEST PUSH2 0x937 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x282 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x8 SLOAD PUSH2 0x33D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH1 0x10 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x382 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x391 CALLDATASIZE PUSH1 0x4 PUSH2 0x2079 JUMP JUMPDEST PUSH2 0xA4D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH1 0xE SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH2 0x3C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x215B JUMP JUMPDEST PUSH2 0xA7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x3E7 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x408 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x417 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0xB14 JUMP JUMPDEST PUSH2 0x2AB PUSH2 0xB5F JUMP JUMPDEST PUSH2 0x2AB PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x215B JUMP JUMPDEST PUSH2 0xBE1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x443 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x452 CALLDATASIZE PUSH1 0x4 PUSH2 0x2079 JUMP JUMPDEST PUSH2 0xCEB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x463 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x477 PUSH2 0x472 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0xD06 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x282 SWAP2 SWAP1 PUSH2 0x23F9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x490 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x49F CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0xDA8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x4BF CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0xDD7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH2 0x4DF CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0xE25 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x4FF CALLDATASIZE PUSH1 0x4 PUSH2 0x2185 JUMP JUMPDEST PUSH2 0xEB8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x510 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x51F CALLDATASIZE PUSH1 0x4 PUSH2 0x226A JUMP JUMPDEST PUSH2 0xF4C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x530 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x11 SLOAD PUSH2 0x276 SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x54A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EF PUSH2 0x559 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0xF89 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x56A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x1000 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x57F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH2 0x58E CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0x108E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x1115 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x5C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x114B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2EF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x601 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x117A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x612 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x11A9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x627 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x636 CALLDATASIZE PUSH1 0x4 PUSH2 0x2131 JUMP JUMPDEST PUSH2 0x11B8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x647 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x656 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0x127D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x667 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x676 CALLDATASIZE PUSH1 0x4 PUSH2 0x20B5 JUMP JUMPDEST PUSH2 0x12CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x687 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x12FD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x69C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x6AB CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x130A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH1 0xF SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x6E1 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x702 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x711 CALLDATASIZE PUSH1 0x4 PUSH2 0x226A JUMP JUMPDEST PUSH2 0x13E8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x722 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x731 CALLDATASIZE PUSH1 0x4 PUSH2 0x2046 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x77A CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0x1425 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x79A CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0x1470 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x780E9D63 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x7C4 JUMPI POP PUSH2 0x7C4 DUP3 PUSH2 0x150E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x7FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x11 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x81F SWAP1 PUSH2 0x25B6 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 0x84B SWAP1 PUSH2 0x25B6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x898 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x86D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x898 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 0x87B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x91B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x942 DUP3 PUSH2 0xF89 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x9CC JUMPI POP PUSH2 0x9CC DUP2 CALLER PUSH2 0x731 JUMP JUMPDEST PUSH2 0xA3E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH2 0xA48 DUP4 DUP4 PUSH2 0x155E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xA57 CALLER DUP3 PUSH2 0x15CC JUMP JUMPDEST PUSH2 0xA73 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24D7 JUMP JUMPDEST PUSH2 0xA48 DUP4 DUP4 DUP4 PUSH2 0x16C3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA89 DUP4 PUSH2 0x108E JUMP JUMPDEST DUP3 LT PUSH2 0xAEB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x74206F6620626F756E6473 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xB3E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xB89 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x0 SWAP1 CALLER SWAP1 SELFBALANCE SWAP1 DUP4 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xBCB 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 0xBD0 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xBDE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBEC PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x11 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF AND ISZERO PUSH2 0xBFF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xC0C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x10 SLOAD DUP3 GT ISZERO PUSH2 0xC1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xF SLOAD PUSH2 0xC28 DUP4 DUP4 PUSH2 0x2528 JUMP JUMPDEST GT ISZERO PUSH2 0xC33 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCB6 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ PUSH2 0xCB6 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ PUSH2 0xC9C JUMPI DUP2 PUSH1 0xD SLOAD PUSH2 0xC8B SWAP2 SWAP1 PUSH2 0x2554 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xC97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xCB6 JUMP JUMPDEST DUP2 PUSH1 0xE SLOAD PUSH2 0xCAA SWAP2 SWAP1 PUSH2 0x2554 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xCB6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 JUMPDEST DUP3 DUP2 GT PUSH2 0xCE5 JUMPI PUSH2 0xCD3 DUP5 PUSH2 0xCCE DUP4 DUP6 PUSH2 0x2528 JUMP JUMPDEST PUSH2 0x186E JUMP JUMPDEST DUP1 PUSH2 0xCDD DUP2 PUSH2 0x25F1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCB9 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xA48 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x12CB JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xD13 DUP4 PUSH2 0x108E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD30 JUMPI PUSH2 0xD30 PUSH2 0x2678 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xD59 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xDA0 JUMPI PUSH2 0xD71 DUP6 DUP3 PUSH2 0xA7E JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD83 JUMPI PUSH2 0xD83 PUSH2 0x2662 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xD98 DUP2 PUSH2 0x25F1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD5F JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xDD2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0xD SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE01 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE30 PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST DUP3 LT PUSH2 0xE93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x7574206F6620626F756E6473 PUSH1 0xA0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xEA6 JUMPI PUSH2 0xEA6 PUSH2 0x2662 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xEE2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x2 DUP2 LT ISZERO PUSH2 0xF48 JUMPI PUSH1 0x1 PUSH1 0x13 PUSH1 0x0 DUP5 DUP5 PUSH1 0x64 DUP2 LT PUSH2 0xF06 JUMPI PUSH2 0xF06 PUSH2 0x2662 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xF40 DUP2 PUSH2 0x25F1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xEE5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xF76 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST DUP1 MLOAD PUSH2 0xF48 SWAP1 PUSH1 0xB SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x7C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH2 0x100D SWAP1 PUSH2 0x25B6 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 0x1039 SWAP1 PUSH2 0x25B6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1086 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x105B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1086 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 0x1069 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x10F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x113F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH2 0x1149 PUSH1 0x0 PUSH2 0x1888 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1175 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x10 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x11A4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0xE SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x81F SWAP1 PUSH2 0x25B6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0x1211 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x7F4 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x12A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x12D5 CALLER DUP4 PUSH2 0x15CC JUMP JUMPDEST PUSH2 0x12F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24D7 JUMP JUMPDEST PUSH2 0xCE5 DUP5 DUP5 DUP5 DUP5 PUSH2 0x18DA JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD PUSH2 0x100D SWAP1 PUSH2 0x25B6 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1389 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1393 PUSH2 0x190D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x13B3 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x13E1 JUMP JUMPDEST DUP1 PUSH2 0x13BD DUP5 PUSH2 0x191C JUMP JUMPDEST PUSH1 0xC PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x13D1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x22F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1412 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST DUP1 MLOAD PUSH2 0xF48 SWAP1 PUSH1 0xC SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x144F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x149A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x14FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH2 0xBDE DUP2 PUSH2 0x1888 JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x153F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x7C4 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x7C4 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x1593 DUP3 PUSH2 0xF89 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1645 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1650 DUP4 PUSH2 0xF89 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x168B JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1680 DUP5 PUSH2 0x8A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x16BB JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x16D6 DUP3 PUSH2 0xF89 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x173E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x17A0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH2 0x17AB DUP4 DUP4 DUP4 PUSH2 0x1A1A JUMP JUMPDEST PUSH2 0x17B6 PUSH1 0x0 DUP3 PUSH2 0x155E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x17DF SWAP1 DUP5 SWAP1 PUSH2 0x2573 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x180D SWAP1 DUP5 SWAP1 PUSH2 0x2528 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0xF48 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1AD2 JUMP JUMPDEST PUSH1 0xA DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x18E5 DUP5 DUP5 DUP5 PUSH2 0x16C3 JUMP JUMPDEST PUSH2 0x18F1 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1B05 JUMP JUMPDEST PUSH2 0xCE5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x2450 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xB DUP1 SLOAD PUSH2 0x81F SWAP1 PUSH2 0x25B6 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x1940 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x196A JUMPI DUP1 PUSH2 0x1954 DUP2 PUSH2 0x25F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1963 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x2540 JUMP JUMPDEST SWAP2 POP PUSH2 0x1944 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1985 JUMPI PUSH2 0x1985 PUSH2 0x2678 JUMP 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 0x19AF JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x16BB JUMPI PUSH2 0x19C4 PUSH1 0x1 DUP4 PUSH2 0x2573 JUMP JUMPDEST SWAP2 POP PUSH2 0x19D1 PUSH1 0xA DUP7 PUSH2 0x260C JUMP JUMPDEST PUSH2 0x19DC SWAP1 PUSH1 0x30 PUSH2 0x2528 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x19F1 JUMPI PUSH2 0x19F1 PUSH2 0x2662 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x1A13 PUSH1 0xA DUP7 PUSH2 0x2540 JUMP JUMPDEST SWAP5 POP PUSH2 0x19B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1A75 JUMPI PUSH2 0x1A70 DUP2 PUSH1 0x8 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 ADD SSTORE JUMP JUMPDEST PUSH2 0x1A98 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1A98 JUMPI PUSH2 0x1A98 DUP4 DUP3 PUSH2 0x1C12 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1AAF JUMPI PUSH2 0xA48 DUP2 PUSH2 0x1CAF JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA48 JUMPI PUSH2 0xA48 DUP3 DUP3 PUSH2 0x1D5E JUMP JUMPDEST PUSH2 0x1ADC DUP4 DUP4 PUSH2 0x1DA2 JUMP JUMPDEST PUSH2 0x1AE9 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x1B05 JUMP JUMPDEST PUSH2 0xA48 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x2450 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x1C07 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1B49 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x23BC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B63 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1B93 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1B90 SWAP2 DUP2 ADD SWAP1 PUSH2 0x224D JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1BED JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1BC1 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 0x1BC6 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x1BE5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x2450 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x16BB JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x1C1F DUP5 PUSH2 0x108E JUMP JUMPDEST PUSH2 0x1C29 SWAP2 SWAP1 PUSH2 0x2573 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP1 DUP3 EQ PUSH2 0x1C7C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x7 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x6 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x1CC1 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x2573 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x8 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH2 0x1CE9 JUMPI PUSH2 0x1CE9 PUSH2 0x2662 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1D0A JUMPI PUSH2 0x1D0A PUSH2 0x2662 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x9 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x1D42 JUMPI PUSH2 0x1D42 PUSH2 0x264C JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D69 DUP4 PUSH2 0x108E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE SWAP4 DUP3 MSTORE PUSH1 0x7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1DF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1E5D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH2 0x1E69 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x1E92 SWAP1 DUP5 SWAP1 PUSH2 0x2528 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1EFC SWAP1 PUSH2 0x25B6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1F1E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1F64 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1F37 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1F64 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1F64 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1F64 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1F49 JUMP JUMPDEST POP PUSH2 0x1F70 SWAP3 SWAP2 POP PUSH2 0x1F74 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1F70 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x1F75 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 GT ISZERO PUSH2 0x1FA4 JUMPI PUSH2 0x1FA4 PUSH2 0x2678 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP6 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x1FCC JUMPI PUSH2 0x1FCC PUSH2 0x2678 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP1 SWAP4 POP DUP6 DUP2 MSTORE DUP7 DUP7 DUP7 ADD GT ISZERO PUSH2 0x1FE5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP6 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP8 DUP4 ADD ADD MSTORE POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2016 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2016 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x203D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13E1 DUP3 PUSH2 0x1FFF JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2059 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2062 DUP4 PUSH2 0x1FFF JUMP JUMPDEST SWAP2 POP PUSH2 0x2070 PUSH1 0x20 DUP5 ADD PUSH2 0x1FFF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x208E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2097 DUP5 PUSH2 0x1FFF JUMP JUMPDEST SWAP3 POP PUSH2 0x20A5 PUSH1 0x20 DUP6 ADD PUSH2 0x1FFF JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x20CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x20D4 DUP6 PUSH2 0x1FFF JUMP JUMPDEST SWAP4 POP PUSH2 0x20E2 PUSH1 0x20 DUP7 ADD PUSH2 0x1FFF JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2105 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x2116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2125 DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1F89 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 0x2144 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x214D DUP4 PUSH2 0x1FFF JUMP JUMPDEST SWAP2 POP PUSH2 0x2070 PUSH1 0x20 DUP5 ADD PUSH2 0x201B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x216E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2177 DUP4 PUSH2 0x1FFF JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC80 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x21A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x21CA JUMPI PUSH2 0x21CA PUSH2 0x2678 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP1 DUP5 DUP4 DUP2 ADD DUP8 LT ISZERO PUSH2 0x21DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP4 POP JUMPDEST PUSH1 0x64 DUP5 LT ISZERO PUSH2 0x220A JUMPI PUSH2 0x21F5 DUP2 PUSH2 0x1FFF JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x21E3 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2227 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13E1 DUP3 PUSH2 0x201B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2242 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x13E1 DUP2 PUSH2 0x268E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x225F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x13E1 DUP2 PUSH2 0x268E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x227C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2293 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x22A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x16BB DUP5 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1F89 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x22E4 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x258A JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 MLOAD PUSH1 0x20 PUSH2 0x230B DUP3 DUP6 DUP4 DUP11 ADD PUSH2 0x258A JUMP JUMPDEST DUP6 MLOAD SWAP2 DUP5 ADD SWAP2 PUSH2 0x231E DUP2 DUP5 DUP5 DUP11 ADD PUSH2 0x258A JUMP JUMPDEST DUP6 SLOAD SWAP3 ADD SWAP2 PUSH1 0x0 SWAP1 PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP1 DUP4 AND DUP1 PUSH2 0x233B JUMPI PUSH1 0x7F DUP4 AND SWAP3 POP JUMPDEST DUP6 DUP4 LT DUP2 EQ ISZERO PUSH2 0x2359 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP6 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 REVERT JUMPDEST DUP1 DUP1 ISZERO PUSH2 0x236D JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x237E JUMPI PUSH2 0x23AB JUMP JUMPDEST PUSH1 0xFF NOT DUP6 AND DUP9 MSTORE DUP4 DUP9 ADD SWAP6 POP PUSH2 0x23AB JUMP JUMPDEST PUSH1 0x0 DUP12 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x23A3 JUMPI DUP2 SLOAD DUP11 DUP3 ADD MSTORE SWAP1 DUP5 ADD SWAP1 DUP9 ADD PUSH2 0x238A JUMP JUMPDEST POP POP DUP4 DUP9 ADD SWAP6 POP JUMPDEST POP SWAP4 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x23EF SWAP1 DUP4 ADD DUP5 PUSH2 0x22CC JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2431 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x2415 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x13E1 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x253B JUMPI PUSH2 0x253B PUSH2 0x2620 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x254F JUMPI PUSH2 0x254F PUSH2 0x2636 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x256E JUMPI PUSH2 0x256E PUSH2 0x2620 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2585 JUMPI PUSH2 0x2585 PUSH2 0x2620 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x25A5 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x258D JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xCE5 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x25CA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x25EB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2605 JUMPI PUSH2 0x2605 PUSH2 0x2620 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x261B JUMPI PUSH2 0x261B PUSH2 0x2636 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xBDE JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF 0x4A DUP14 SIGNEXTEND 0xEF SIGNEXTEND EXTCODESIZE 0xD6 EXTCODEHASH 0xBA 0xB5 LOG1 RETURNDATACOPY SLOAD 0xF6 SGT 0x29 PUSH12 0x23C4CA1DA14B16851686E102 0xEE NUMBER PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER GASLIMIT MSTORE NUMBER CALLDATACOPY ORIGIN BALANCE GASPRICE KECCAK256 PUSH21 0x72616E7366657220746F206E6F6E20455243373231 MSTORE PUSH6 0x0 ",
"sourceMap": "277:37:0:-:0;162:4091;277:37;;162:4091;277:37;;;-1:-1:-1;;;277:37:0;;;;;;;;;;:::i;:::-;-1:-1:-1;342:10:0;320:32;;387:10;358:39;;430:3;403:30;;470:2;439:33;;478:26;;;-1:-1:-1;;478:26:0;;;612:208;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1382:13:2;;733:5:0;;740:7;;1382:13:2;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;1405:17:2;;;;:7;;:17;;;;;:::i;:::-;;1316:113;;889:23:1;899:12;:10;;;:12;;:::i;:::-;889:9;:23::i;:::-;759:24:0::1;770:12:::0;759:10:::1;:24::i;:::-;793:20;798:10;810:2;793:4;:20::i;:::-;612:208:::0;;;162:4091;;587:96:9;666:10;;587:96::o;2097:169:1:-;2171:6;;;-1:-1:-1;;;;;2187:17:1;;;-1:-1:-1;;;;;;2187:17:1;;;;;;;2219:40;;2171:6;;;2187:17;2171:6;;2219:40;;2152:16;;2219:40;2142:124;2097:169;:::o;3106:102:0:-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;4180:2:13;1199:68:1;;;4162:21:13;;;4199:18;;;4192:30;4258:34;4238:18;;;4231:62;4310:18;;1199:68:1;;;;;;;;;3180:21:0;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3106:102:::0;:::o;968:785::-;1041:14;1058:13;1768:10:5;:17;;1681:111;1058:13:0;1090:6;;1041:30;;-1:-1:-1;1090:6:0;;1089:7;1081:16;;;;;;1129:1;1115:11;:15;1107:24;;;;;;1164:13;;1149:11;:28;;1141:37;;;;;;1220:9;;1196:20;1205:11;1196:6;:20;:::i;:::-;:33;;1188:42;;;;;;1067:6:1;;-1:-1:-1;;;;;1067:6:1;1245:10:0;:21;1241:402;;1298:10;1286:23;;;;:11;:23;;;;;;;;:31;;:23;:31;1282:351;;1356:10;1341:26;;;;:14;:26;;;;;;;;:34;;:26;:34;1337:282;;1464:11;1457:4;;:18;;;;:::i;:::-;1444:9;:31;;1436:40;;;;;;1337:282;;;1588:11;1574;;:25;;;;:::i;:::-;1561:9;:38;;1553:47;;;;;;1670:1;1653:94;1678:11;1673:1;:16;1653:94;;1710:26;1720:3;1725:10;1734:1;1725:6;:10;:::i;:::-;1710:9;:26::i;:::-;1691:3;;;;:::i;:::-;;;;1653:94;;;;1031:722;968:785;;:::o;8847:108:2:-;8922:26;8932:2;8936:7;8922:26;;;;;;;;;;;;:9;;;:26;;:::i;9176:311::-;9301:18;9307:2;9311:7;9301:5;:18::i;:::-;9350:54;9381:1;9385:2;9389:7;9398:5;9350:22;:54::i;:::-;9329:151;;;;-1:-1:-1;;;9329:151:2;;2632:2:13;9329:151:2;;;2614:21:13;2671:2;2651:18;;;2644:30;-1:-1:-1;;;;;;;;;;;2690:18:13;;;2683:62;-1:-1:-1;;;2761:18:13;;;2754:48;2819:19;;9329:151:2;2430:414:13;9329:151:2;9176:311;;;:::o;9809:372::-;-1:-1:-1;;;;;9888:16:2;;9880:61;;;;-1:-1:-1;;;9880:61:2;;3819:2:13;9880:61:2;;;3801:21:13;;;3838:18;;;3831:30;3897:34;3877:18;;;3870:62;3949:18;;9880:61:2;3617:356:13;9880:61:2;7861:4;7884:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7884:16:2;:30;9951:58;;;;-1:-1:-1;;;9951:58:2;;3051:2:13;9951:58:2;;;3033:21:13;3090:2;3070:18;;;3063:30;3129;3109:18;;;3102:58;3177:18;;9951:58:2;2849:352:13;9951:58:2;10020:45;10049:1;10053:2;10057:7;10020:20;:45::i;:::-;-1:-1:-1;;;;;10076:13:2;;;;;;:9;:13;;;;;:18;;10093:1;;10076:13;:18;;10093:1;;10076:18;:::i;:::-;;;;-1:-1:-1;;10104:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10104:21:2;-1:-1:-1;;;;;10104:21:2;;;;;;;;10141:33;;10104:16;;;10141:33;;10104:16;;10141:33;9809:372;;:::o;12499:950::-;12649:4;12669:15;:2;-1:-1:-1;;;;;12669:13:2;;;;;;:15;;:::i;:::-;12665:778;;;12720:170;;-1:-1:-1;;;12720:170:2;;-1:-1:-1;;;;;12720:36:2;;;;;:170;;666:10:9;;12812:4:2;;12838:7;;12867:5;;12720:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12720:170:2;;;;;;;;-1:-1:-1;;12720:170:2;;;;;;;;;;;;:::i;:::-;;;12700:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13069:13:2;;13065:312;;13111:106;;-1:-1:-1;;;13111:106:2;;2632:2:13;13111:106:2;;;2614:21:13;2671:2;2651:18;;;2644:30;-1:-1:-1;;;;;;;;;;;2690:18:13;;;2683:62;-1:-1:-1;;;2761:18:13;;;2754:48;2819:19;;13111:106:2;2430:414:13;13065:312:2;13329:6;13323:13;13314:6;13310:2;13306:15;13299:38;12700:691;-1:-1:-1;;;;;;12952:51:2;-1:-1:-1;;;12952:51:2;;-1:-1:-1;12945:58:2;;12665:778;-1:-1:-1;13428:4:2;12665:778;12499:950;;;;;;:::o;2768:572:5:-;2907:45;2934:4;2940:2;2944:7;2907:26;;;;;:45;;:::i;:::-;-1:-1:-1;;;;;2967:18:5;;2963:183;;3001:40;3033:7;4149:10;:17;;4122:24;;;;:15;:24;;;;;:44;;;4176:24;;;;;;;;;;;;4046:161;3001:40;2963:183;;;3070:2;-1:-1:-1;;;;;3062:10:5;:4;-1:-1:-1;;;;;3062:10:5;;3058:88;;3088:47;3121:4;3127:7;3088:32;:47::i;:::-;-1:-1:-1;;;;;3159:16:5;;3155:179;;3191:45;3228:7;3191:36;:45::i;3155:179::-;3263:4;-1:-1:-1;;;;;3257:10:5;:2;-1:-1:-1;;;;;3257:10:5;;3253:81;;3283:40;3311:2;3315:7;3283:27;:40::i;718:377:8:-;1034:20;1080:8;;;718:377::o;4824:982:5:-;5098:22;5148:1;5123:22;5140:4;5123:16;;;;;:22;;:::i;:::-;:26;;;;:::i;:::-;5159:18;5180:26;;;:17;:26;;;;;;5098:51;;-1:-1:-1;5310:28:5;;;5306:323;;-1:-1:-1;;;;;5376:18:5;;5354:19;5376:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5425:30;;;;;;:44;;;5541:30;;:17;:30;;;;;:43;;;5306:323;-1:-1:-1;5722:26:5;;;;:17;:26;;;;;;;;5715:33;;;-1:-1:-1;;;;;5765:18:5;;;;;:12;:18;;;;;:34;;;;;;;5758:41;4824:982::o;6094:1061::-;6368:10;:17;6343:22;;6368:21;;6388:1;;6368:21;:::i;:::-;6399:18;6420:24;;;:15;:24;;;;;;6788:10;:26;;6343:46;;-1:-1:-1;6420:24:5;;6343:46;;6788:26;;;;;;:::i;:::-;;;;;;;;;6766:48;;6850:11;6825:10;6836;6825:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6929:28;;;:15;:28;;;;;;;:41;;;7098:24;;;;;7091:31;7132:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6165:990;;;6094:1061;:::o;3634:217::-;3718:14;3735:20;3752:2;3735:16;;;;;:20;;:::i;:::-;-1:-1:-1;;;;;3765:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3809:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3634:217:5:o;1899:283:2:-;2011:7;-1:-1:-1;;;;;2055:19:2;;2034:108;;;;-1:-1:-1;;;2034:108:2;;3408:2:13;2034:108:2;;;3390:21:13;3447:2;3427:18;;;3420:30;3486:34;3466:18;;;3459:62;-1:-1:-1;;;3537:18:13;;;3530:40;3587:19;;2034:108:2;3206:406:13;2034:108:2;-1:-1:-1;;;;;;2159:16:2;;;;;:9;:16;;;;;;;1899:283::o;162:4091:0:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;162:4091:0;;;-1:-1:-1;162:4091:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:686:13;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;162:13;;-1:-1:-1;;;;;224:10:13;;;221:36;;;237:18;;:::i;:::-;312:2;306:9;280:2;366:13;;-1:-1:-1;;362:22:13;;;386:2;358:31;354:40;342:53;;;410:18;;;430:22;;;407:46;404:72;;;456:18;;:::i;:::-;496:10;492:2;485:22;531:2;523:6;516:18;577:3;570:4;565:2;557:6;553:15;549:26;546:35;543:55;;;594:1;591;584:12;543:55;607:63;667:2;660:4;652:6;648:17;641:4;633:6;629:17;607:63;:::i;:::-;688:6;14:686;-1:-1:-1;;;;;;14:686:13:o;705:290::-;774:6;827:2;815:9;806:7;802:23;798:32;795:52;;;843:1;840;833:12;795:52;869:16;;-1:-1:-1;;;;;;914:32:13;;904:43;;894:71;;961:1;958;951:12;894:71;984:5;705:290;-1:-1:-1;;;705:290:13:o;1000:766::-;1118:6;1126;1134;1187:2;1175:9;1166:7;1162:23;1158:32;1155:52;;;1203:1;1200;1193:12;1155:52;1230:16;;-1:-1:-1;;;;;1295:14:13;;;1292:34;;;1322:1;1319;1312:12;1292:34;1345:61;1398:7;1389:6;1378:9;1374:22;1345:61;:::i;:::-;1335:71;;1452:2;1441:9;1437:18;1431:25;1415:41;;1481:2;1471:8;1468:16;1465:36;;;1497:1;1494;1487:12;1465:36;1520:63;1575:7;1564:8;1553:9;1549:24;1520:63;:::i;:::-;1510:73;;1629:2;1618:9;1614:18;1608:25;1592:41;;1658:2;1648:8;1645:16;1642:36;;;1674:1;1671;1664:12;1642:36;;1697:63;1752:7;1741:8;1730:9;1726:24;1697:63;:::i;:::-;1687:73;;;1000:766;;;;;:::o;1771:654::-;1965:4;2011:1;2007;2002:3;1998:11;1994:19;2052:2;2044:6;2040:15;2029:9;2022:34;2104:2;2096:6;2092:15;2087:2;2076:9;2072:18;2065:43;;2144:6;2139:2;2128:9;2124:18;2117:34;2187:3;2182:2;2171:9;2167:18;2160:31;2220:6;2214:13;2264:6;2258:3;2247:9;2243:19;2236:35;2280:67;2340:6;2334:3;2323:9;2319:19;2314:2;2306:6;2302:15;2280:67;:::i;:::-;2408:2;2387:15;-1:-1:-1;;2383:29:13;2368:45;;;;2415:3;2364:55;;1771:654;-1:-1:-1;;;;;1771:654:13:o;4339:128::-;4379:3;4410:1;4406:6;4403:1;4400:13;4397:39;;;4416:18;;:::i;:::-;-1:-1:-1;4452:9:13;;4339:128::o;4472:168::-;4512:7;4578:1;4574;4570:6;4566:14;4563:1;4560:21;4555:1;4548:9;4541:17;4537:45;4534:71;;;4585:18;;:::i;:::-;-1:-1:-1;4625:9:13;;4472:168::o;4645:125::-;4685:4;4713:1;4710;4707:8;4704:34;;;4718:18;;:::i;:::-;-1:-1:-1;4755:9:13;;4645:125::o;4775:258::-;4847:1;4857:113;4871:6;4868:1;4865:13;4857:113;;;4947:11;;;4941:18;4928:11;;;4921:39;4893:2;4886:10;4857:113;;;4988:6;4985:1;4982:13;4979:48;;;-1:-1:-1;;5023:1:13;5005:16;;4998:27;4775:258::o;5038:380::-;5117:1;5113:12;;;;5160;;;5181:61;;5235:4;5227:6;5223:17;5213:27;;5181:61;5288:2;5280:6;5277:14;5257:18;5254:38;5251:161;;;5334:10;5329:3;5325:20;5322:1;5315:31;5369:4;5366:1;5359:15;5397:4;5394:1;5387:15;5251:161;;5038:380;;;:::o;5423:135::-;5462:3;-1:-1:-1;;5483:17:13;;5480:43;;;5503:18;;:::i;:::-;-1:-1:-1;5550:1:13;5539:13;;5423:135::o;5563:127::-;5624:10;5619:3;5615:20;5612:1;5605:31;5655:4;5652:1;5645:15;5679:4;5676:1;5669:15;5695:127;5756:10;5751:3;5747:20;5744:1;5737:31;5787:4;5784:1;5777:15;5811:4;5808:1;5801:15;5827:127;5888:10;5883:3;5879:20;5876:1;5869:31;5919:4;5916:1;5909:15;5943:4;5940:1;5933:15;5959:127;6020:10;6015:3;6011:20;6008:1;6001:31;6051:4;6048:1;6041:15;6075:4;6072:1;6065:15;5959:127;162:4091:0;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_addTokenToAllTokensEnumeration_1726": {
"entryPoint": null,
"id": 1726,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1706": {
"entryPoint": 7518,
"id": 1706,
"parameterSlots": 2,
"returnSlots": 0
},
"@_approve_1292": {
"entryPoint": 5470,
"id": 1292,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_71": {
"entryPoint": 6413,
"id": 71,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1365": {
"entryPoint": null,
"id": 1365,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_1676": {
"entryPoint": 6682,
"id": 1676,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_1354": {
"entryPoint": 6917,
"id": 1354,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_1006": {
"entryPoint": null,
"id": 1006,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_1047": {
"entryPoint": 5580,
"id": 1047,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_1148": {
"entryPoint": 7586,
"id": 1148,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2205": {
"entryPoint": null,
"id": 2205,
"parameterSlots": 0,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1837": {
"entryPoint": 7343,
"id": 1837,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1789": {
"entryPoint": 7186,
"id": 1789,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_1062": {
"entryPoint": 6254,
"id": 1062,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_1091": {
"entryPoint": 6866,
"id": 1091,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_988": {
"entryPoint": 6362,
"id": 988,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setOwner_549": {
"entryPoint": 6280,
"id": 549,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_1268": {
"entryPoint": 5827,
"id": 1268,
"parameterSlots": 3,
"returnSlots": 0
},
"@add100PresaleUsers_404": {
"entryPoint": 3768,
"id": 404,
"parameterSlots": 1,
"returnSlots": 0
},
"@addPresaleUser_374": {
"entryPoint": 4733,
"id": 374,
"parameterSlots": 1,
"returnSlots": 0
},
"@approve_810": {
"entryPoint": 2359,
"id": 810,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_668": {
"entryPoint": 4238,
"id": 668,
"parameterSlots": 1,
"returnSlots": 1
},
"@baseExtension_15": {
"entryPoint": 4861,
"id": 15,
"parameterSlots": 0,
"returnSlots": 0
},
"@baseURI_12": {
"entryPoint": 4096,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@cost_18": {
"entryPoint": null,
"id": 18,
"parameterSlots": 0,
"returnSlots": 0
},
"@getApproved_831": {
"entryPoint": 2210,
"id": 831,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_883": {
"entryPoint": null,
"id": 883,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1916": {
"entryPoint": 5384,
"id": 1916,
"parameterSlots": 1,
"returnSlots": 1
},
"@maxMintAmount_27": {
"entryPoint": null,
"id": 27,
"parameterSlots": 0,
"returnSlots": 0
},
"@maxSupply_24": {
"entryPoint": null,
"id": 24,
"parameterSlots": 0,
"returnSlots": 0
},
"@mint_170": {
"entryPoint": 3041,
"id": 170,
"parameterSlots": 2,
"returnSlots": 0
},
"@name_706": {
"entryPoint": 2064,
"id": 706,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_696": {
"entryPoint": 3977,
"id": 696,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_479": {
"entryPoint": null,
"id": 479,
"parameterSlots": 0,
"returnSlots": 1
},
"@pause_332": {
"entryPoint": 1994,
"id": 332,
"parameterSlots": 1,
"returnSlots": 0
},
"@paused_30": {
"entryPoint": null,
"id": 30,
"parameterSlots": 0,
"returnSlots": 0
},
"@presaleCost_21": {
"entryPoint": null,
"id": 21,
"parameterSlots": 0,
"returnSlots": 0
},
"@presaleWallets_38": {
"entryPoint": null,
"id": 38,
"parameterSlots": 0,
"returnSlots": 0
},
"@removePresaleUser_418": {
"entryPoint": 5157,
"id": 418,
"parameterSlots": 1,
"returnSlots": 0
},
"@removeWhitelistUser_360": {
"entryPoint": 2836,
"id": 360,
"parameterSlots": 1,
"returnSlots": 0
},
"@renounceOwnership_507": {
"entryPoint": 4373,
"id": 507,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeTransferFrom_929": {
"entryPoint": 3307,
"id": 929,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_959": {
"entryPoint": 4811,
"id": 959,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_865": {
"entryPoint": 4536,
"id": 865,
"parameterSlots": 2,
"returnSlots": 0
},
"@setBaseExtension_320": {
"entryPoint": 5096,
"id": 320,
"parameterSlots": 1,
"returnSlots": 0
},
"@setBaseURI_308": {
"entryPoint": 3916,
"id": 308,
"parameterSlots": 1,
"returnSlots": 0
},
"@setCost_272": {
"entryPoint": 3496,
"id": 272,
"parameterSlots": 1,
"returnSlots": 0
},
"@setPresaleCost_284": {
"entryPoint": 4474,
"id": 284,
"parameterSlots": 1,
"returnSlots": 0
},
"@setmaxMintAmount_296": {
"entryPoint": 4427,
"id": 296,
"parameterSlots": 1,
"returnSlots": 0
},
"@supportsInterface_1550": {
"entryPoint": 1951,
"id": 1550,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2441": {
"entryPoint": null,
"id": 2441,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_644": {
"entryPoint": 5390,
"id": 644,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_716": {
"entryPoint": 4521,
"id": 716,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_2300": {
"entryPoint": 6428,
"id": 2300,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1612": {
"entryPoint": 3621,
"id": 1612,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1578": {
"entryPoint": 2686,
"id": 1578,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_260": {
"entryPoint": 4874,
"id": 260,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1589": {
"entryPoint": null,
"id": 1589,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_910": {
"entryPoint": 2637,
"id": 910,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_530": {
"entryPoint": 5232,
"id": 530,
"parameterSlots": 1,
"returnSlots": 0
},
"@walletOfOwner_218": {
"entryPoint": 3334,
"id": 218,
"parameterSlots": 1,
"returnSlots": 1
},
"@whitelistUser_346": {
"entryPoint": 3543,
"id": 346,
"parameterSlots": 1,
"returnSlots": 0
},
"@whitelisted_34": {
"entryPoint": null,
"id": 34,
"parameterSlots": 0,
"returnSlots": 0
},
"@withdraw_445": {
"entryPoint": 2911,
"id": 445,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 8191,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_available_length_bytes": {
"entryPoint": 8073,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_bool": {
"entryPoint": 8219,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 8235,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 8262,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 8313,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 8373,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 8497,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 8539,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_array$_t_address_$100_memory_ptr": {
"entryPoint": 8581,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool": {
"entryPoint": 8725,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 8752,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 8781,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 8810,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 8883,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_bytes": {
"entryPoint": 8908,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 8952,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": null,
"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": 9148,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 9209,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9277,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9296,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9378,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9431,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_string_storage": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 9512,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 9536,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 9556,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 9587,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 9610,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 9654,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 9713,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 9740,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 9760,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 9782,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 9804,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 9826,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9848,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_bytes4": {
"entryPoint": 9870,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:18662:13",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:13",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "88:557:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "98:28:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "108:18:13",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "102:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "153:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "155:16:13"
},
"nodeType": "YulFunctionCall",
"src": "155:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "155:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "141:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "149:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "138:2:13"
},
"nodeType": "YulFunctionCall",
"src": "138:14:13"
},
"nodeType": "YulIf",
"src": "135:40:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "184:17:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "198:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "194:3:13"
},
"nodeType": "YulFunctionCall",
"src": "194:7:13"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "188:2:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "210:23:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "230:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "224:5:13"
},
"nodeType": "YulFunctionCall",
"src": "224:9:13"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "214:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "242:73:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "264:6:13"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "288:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "296:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "284:3:13"
},
"nodeType": "YulFunctionCall",
"src": "284:15:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "301:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "280:3:13"
},
"nodeType": "YulFunctionCall",
"src": "280:24:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "306:2:13",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "276:3:13"
},
"nodeType": "YulFunctionCall",
"src": "276:33:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "311:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "272:3:13"
},
"nodeType": "YulFunctionCall",
"src": "272:42:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "260:3:13"
},
"nodeType": "YulFunctionCall",
"src": "260:55:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "246:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "374:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "376:16:13"
},
"nodeType": "YulFunctionCall",
"src": "376:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "376:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "333:10:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "345:2:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "330:2:13"
},
"nodeType": "YulFunctionCall",
"src": "330:18:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "353:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "365:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "350:2:13"
},
"nodeType": "YulFunctionCall",
"src": "350:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "327:2:13"
},
"nodeType": "YulFunctionCall",
"src": "327:46:13"
},
"nodeType": "YulIf",
"src": "324:72:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "412:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "416:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "405:6:13"
},
"nodeType": "YulFunctionCall",
"src": "405:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "405:22:13"
},
{
"nodeType": "YulAssignment",
"src": "436:15:13",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "445:6:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "436:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "467:6:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "475:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "460:6:13"
},
"nodeType": "YulFunctionCall",
"src": "460:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "460:22:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "520:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "532:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "522:6:13"
},
"nodeType": "YulFunctionCall",
"src": "522:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "522:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "501:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "506:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "497:3:13"
},
"nodeType": "YulFunctionCall",
"src": "497:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "515:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "494:2:13"
},
"nodeType": "YulFunctionCall",
"src": "494:25:13"
},
"nodeType": "YulIf",
"src": "491:45:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "562:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "570:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "558:3:13"
},
"nodeType": "YulFunctionCall",
"src": "558:17:13"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "577:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "582:6:13"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "545:12:13"
},
"nodeType": "YulFunctionCall",
"src": "545:44:13"
},
"nodeType": "YulExpressionStatement",
"src": "545:44:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "613:6:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "621:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "609:3:13"
},
"nodeType": "YulFunctionCall",
"src": "609:19:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "630:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "605:3:13"
},
"nodeType": "YulFunctionCall",
"src": "605:30:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "637:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "598:6:13"
},
"nodeType": "YulFunctionCall",
"src": "598:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "598:41:13"
}
]
},
"name": "abi_decode_available_length_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "57:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "62:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "70:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "78:5:13",
"type": ""
}
],
"src": "14:631:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "699:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "709:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "731:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "718:12:13"
},
"nodeType": "YulFunctionCall",
"src": "718:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "709:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "801:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "810:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "813:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "803:6:13"
},
"nodeType": "YulFunctionCall",
"src": "803:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "803:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "760:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "771:5:13"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "786:3:13",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "791:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "782:3:13"
},
"nodeType": "YulFunctionCall",
"src": "782:11:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "795:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "778:3:13"
},
"nodeType": "YulFunctionCall",
"src": "778:19:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "767:3:13"
},
"nodeType": "YulFunctionCall",
"src": "767:31:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "757:2:13"
},
"nodeType": "YulFunctionCall",
"src": "757:42:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "750:6:13"
},
"nodeType": "YulFunctionCall",
"src": "750:50:13"
},
"nodeType": "YulIf",
"src": "747:70:13"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "678:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "689:5:13",
"type": ""
}
],
"src": "650:173:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "874:114:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "884:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "906:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "893:12:13"
},
"nodeType": "YulFunctionCall",
"src": "893:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "884:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "966:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "975:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "978:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "968:6:13"
},
"nodeType": "YulFunctionCall",
"src": "968:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "968:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "935:5:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "956:5:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "949:6:13"
},
"nodeType": "YulFunctionCall",
"src": "949:13:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "942:6:13"
},
"nodeType": "YulFunctionCall",
"src": "942:21:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "932:2:13"
},
"nodeType": "YulFunctionCall",
"src": "932:32:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "925:6:13"
},
"nodeType": "YulFunctionCall",
"src": "925:40:13"
},
"nodeType": "YulIf",
"src": "922:60:13"
}
]
},
"name": "abi_decode_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "853:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "864:5:13",
"type": ""
}
],
"src": "828:160:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1063:116:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1109:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1118:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1121:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1111:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1111:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1111:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1084:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1093:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1080:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1080:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1105:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1076:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1076:32:13"
},
"nodeType": "YulIf",
"src": "1073:52:13"
},
{
"nodeType": "YulAssignment",
"src": "1134:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1163:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1144:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1144:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1134:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1029:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1040:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1052:6:13",
"type": ""
}
],
"src": "993:186:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1271:173:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1317:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1326:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1329:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1319:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1319:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1319:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1292:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1301:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1288:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1288:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1313:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1284:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1284:32:13"
},
"nodeType": "YulIf",
"src": "1281:52:13"
},
{
"nodeType": "YulAssignment",
"src": "1342:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1371:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1352:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1352:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1342:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1390:48:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1423:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1434:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1419:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1419:18:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1400:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1400:38:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1390:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1229:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1240:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1252:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1260:6:13",
"type": ""
}
],
"src": "1184:260:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1553:224:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1599:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1608:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1611:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1601:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1601:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1601:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1574:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1583:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1570:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1570:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1566:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1566:32:13"
},
"nodeType": "YulIf",
"src": "1563:52:13"
},
{
"nodeType": "YulAssignment",
"src": "1624:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1653:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1634:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1634:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1624:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1672:48:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1705:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1716:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1701:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1701:18:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1682:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1682:38:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1672:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1729:42:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1756:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1767:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1752:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1752:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1739:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1739:32:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1729:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1503:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1514:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1526:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1534:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1542:6:13",
"type": ""
}
],
"src": "1449:328:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:536:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1959:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1968:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1971:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1961:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1961:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1961:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1933:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1942:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1929:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1929:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1954:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1925:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1925:33:13"
},
"nodeType": "YulIf",
"src": "1922:53:13"
},
{
"nodeType": "YulAssignment",
"src": "1984:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2013:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1994:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1994:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1984:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2032:48:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2065:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2076:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2061:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2061:18:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2042:18:13"
},
"nodeType": "YulFunctionCall",
"src": "2042:38:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2032:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2089:42:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2116:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2127:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2112:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2112:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2099:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2099:32:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2089:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2140:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2171:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2182:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2167:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2167:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2154:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2154:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2144:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2229:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2238:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2241:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2231:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2231:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2231:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2201:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2209:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2198:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2198:30:13"
},
"nodeType": "YulIf",
"src": "2195:50:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2254:32:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2268:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2279:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2264:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2264:22:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "2258:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2334:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2343:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2346:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2336:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2336:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2336:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2313:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2317:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2309:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2309:13:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2324:7:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2305:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2305:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2298:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2298:35:13"
},
"nodeType": "YulIf",
"src": "2295:55:13"
},
{
"nodeType": "YulAssignment",
"src": "2359:83:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2407:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2411:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2403:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2403:11:13"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2429:2:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2416:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2416:16:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2434:7:13"
}
],
"functionName": {
"name": "abi_decode_available_length_bytes",
"nodeType": "YulIdentifier",
"src": "2369:33:13"
},
"nodeType": "YulFunctionCall",
"src": "2369:73:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2359:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1854:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1865:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1877:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1885:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1893:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1901:6:13",
"type": ""
}
],
"src": "1782:666:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2537:170:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2583:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2592:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2595:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2585:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2585:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2585:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2558:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2567:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2554:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2554:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2579:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2550:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2550:32:13"
},
"nodeType": "YulIf",
"src": "2547:52:13"
},
{
"nodeType": "YulAssignment",
"src": "2608:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2637:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2618:18:13"
},
"nodeType": "YulFunctionCall",
"src": "2618:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2608:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2656:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2686:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2697:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2682:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2682:18:13"
}
],
"functionName": {
"name": "abi_decode_bool",
"nodeType": "YulIdentifier",
"src": "2666:15:13"
},
"nodeType": "YulFunctionCall",
"src": "2666:35:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2656:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2495:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2506:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2518:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2526:6:13",
"type": ""
}
],
"src": "2453:254:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2799:167:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2845:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2854:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2857:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2847:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2847:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2847:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2820:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2829:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2816:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2816:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2841:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2812:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2812:32:13"
},
"nodeType": "YulIf",
"src": "2809:52:13"
},
{
"nodeType": "YulAssignment",
"src": "2870:39:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2899:9:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2880:18:13"
},
"nodeType": "YulFunctionCall",
"src": "2880:29:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2870:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2918:42:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2945:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2956:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2941:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2941:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2928:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2928:32:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2918:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2757:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2768:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2780:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2788:6:13",
"type": ""
}
],
"src": "2712:254:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3066:730:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3076:14:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3086:4:13",
"type": "",
"value": "3200"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "3080:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3135:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3144:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3147:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3137:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3137:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3137:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3110:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3119:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3106:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3106:23:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3131:2:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3102:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3102:32:13"
},
"nodeType": "YulIf",
"src": "3099:52:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3206:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3215:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3218:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3208:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3208:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3208:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3178:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3189:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3174:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3174:20:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3196:7:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3170:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3170:34:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3163:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3163:42:13"
},
"nodeType": "YulIf",
"src": "3160:62:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3231:23:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3251:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3245:5:13"
},
"nodeType": "YulFunctionCall",
"src": "3245:9:13"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3235:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3263:33:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3285:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3293:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3281:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3281:15:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "3267:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3371:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3373:16:13"
},
"nodeType": "YulFunctionCall",
"src": "3373:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "3373:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3314:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3326:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3311:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3311:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3350:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3362:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3347:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3347:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3308:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3308:62:13"
},
"nodeType": "YulIf",
"src": "3305:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3409:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3413:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3402:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3402:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "3402:22:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3433:17:13",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3444:6:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3437:3:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3459:20:13",
"value": {
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3470:9:13"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3463:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3523:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3532:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3535:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3525:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3525:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3525:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3498:9:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3509:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3494:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3494:18:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3514:7:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3491:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3491:31:13"
},
"nodeType": "YulIf",
"src": "3488:51:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3548:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3557:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3552:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:151:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3635:3:13"
},
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3659:3:13"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3640:18:13"
},
"nodeType": "YulFunctionCall",
"src": "3640:23:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3628:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3628:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "3628:36:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3677:14:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3687:4:13",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "3681:2:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3704:19:13",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3715:3:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "3720:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3711:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3711:12:13"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3704:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3736:19:13",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3747:3:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "3752:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3743:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3743:12:13"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3736:3:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3578:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3581:4:13",
"type": "",
"value": "0x64"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3575:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3575:11:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3587:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3589:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3598:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3601:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3594:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3594:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3589:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3571:3:13",
"statements": []
},
"src": "3567:198:13"
},
{
"nodeType": "YulAssignment",
"src": "3774:16:13",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3784:6:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3774:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$100_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3032:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3043:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3055:6:13",
"type": ""
}
],
"src": "2971:825:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3868:113:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3914:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3923:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3926:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3916:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3916:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3916:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3889:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3898:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3885:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3885:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3910:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3881:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3881:32:13"
},
"nodeType": "YulIf",
"src": "3878:52:13"
},
{
"nodeType": "YulAssignment",
"src": "3939:36:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3965:9:13"
}
],
"functionName": {
"name": "abi_decode_bool",
"nodeType": "YulIdentifier",
"src": "3949:15:13"
},
"nodeType": "YulFunctionCall",
"src": "3949:26:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3939:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3834:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3845:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3857:6:13",
"type": ""
}
],
"src": "3801:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4055:176:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4101:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4110:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4113:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4103:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4103:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4103:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4076:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4085:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4072:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4072:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4097:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4068:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4068:32:13"
},
"nodeType": "YulIf",
"src": "4065:52:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4126:36:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4152:9:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4139:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4139:23:13"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4130:5:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4195:5:13"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "4171:23:13"
},
"nodeType": "YulFunctionCall",
"src": "4171:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "4171:30:13"
},
{
"nodeType": "YulAssignment",
"src": "4210:15:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4220:5:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4210:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4021:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4032:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4044:6:13",
"type": ""
}
],
"src": "3986:245:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4316:169:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4362:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4371:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4374:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4364:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4364:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4364:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4337:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4346:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4333:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4333:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4358:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4329:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4329:32:13"
},
"nodeType": "YulIf",
"src": "4326:52:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4387:29:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4406:9:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4400:5:13"
},
"nodeType": "YulFunctionCall",
"src": "4400:16:13"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4391:5:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4449:5:13"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "4425:23:13"
},
"nodeType": "YulFunctionCall",
"src": "4425:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "4425:30:13"
},
{
"nodeType": "YulAssignment",
"src": "4464:15:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4474:5:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4464:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4282:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4293:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4305:6:13",
"type": ""
}
],
"src": "4236:249:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4570:370:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4616:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4625:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4628:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4618:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4618:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4618:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4591:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4600:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4587:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4587:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4612:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4583:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4583:32:13"
},
"nodeType": "YulIf",
"src": "4580:52:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4641:37:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4668:9:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4655:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4655:23:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4645:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4721:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4730:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4733:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4723:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4723:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4723:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4693:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4701:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4690:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4690:30:13"
},
"nodeType": "YulIf",
"src": "4687:50:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4746:32:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4760:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4771:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4756:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4756:22:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4750:2:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4826:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4835:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4838:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4828:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4828:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4828:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4805:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4809:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4801:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4801:13:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4816:7:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4797:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4797:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4790:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4790:35:13"
},
"nodeType": "YulIf",
"src": "4787:55:13"
},
{
"nodeType": "YulAssignment",
"src": "4851:83:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4899:2:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4895:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4895:11:13"
},
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4921:2:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4908:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4908:16:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4926:7:13"
}
],
"functionName": {
"name": "abi_decode_available_length_bytes",
"nodeType": "YulIdentifier",
"src": "4861:33:13"
},
"nodeType": "YulFunctionCall",
"src": "4861:73:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4851:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4536:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4547:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4559:6:13",
"type": ""
}
],
"src": "4490:450:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5015:110:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5061:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5070:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5073:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5063:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5063:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "5063:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5036:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5045:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5032:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5032:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5057:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5028:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5028:32:13"
},
"nodeType": "YulIf",
"src": "5025:52:13"
},
{
"nodeType": "YulAssignment",
"src": "5086:33:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5109:9:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5096:12:13"
},
"nodeType": "YulFunctionCall",
"src": "5096:23:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5086:6:13"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4981:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4992:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5004:6:13",
"type": ""
}
],
"src": "4945:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5179:208:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5189:26:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5209:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5203:5:13"
},
"nodeType": "YulFunctionCall",
"src": "5203:12:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5193:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5231:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5236:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5224:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5224:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "5224:19:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5278:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5285:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5274:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5274:16:13"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5296:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5301:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5292:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5292:14:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5308:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5252:21:13"
},
"nodeType": "YulFunctionCall",
"src": "5252:63:13"
},
"nodeType": "YulExpressionStatement",
"src": "5252:63:13"
},
{
"nodeType": "YulAssignment",
"src": "5324:57:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5339:3:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5352:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5360:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5348:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5348:15:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5369:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5365:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5365:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5344:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5344:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5335:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5335:39:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5376:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5331:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5331:50:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5324:3:13"
}
]
}
]
},
"name": "abi_encode_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5156:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5163:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5171:3:13",
"type": ""
}
],
"src": "5130:257:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5624:1295:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5634:27:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5654:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5648:5:13"
},
"nodeType": "YulFunctionCall",
"src": "5648:13:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5638:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5670:14:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5680:4:13",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "5674:2:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5719:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "5727:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5715:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5715:15:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5732:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5737:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5693:21:13"
},
"nodeType": "YulFunctionCall",
"src": "5693:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "5693:51:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5753:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5770:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5775:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5766:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5766:16:13"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "5757:5:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5791:29:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5813:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5807:5:13"
},
"nodeType": "YulFunctionCall",
"src": "5807:13:13"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "5795:8:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5855:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "5863:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5851:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5851:15:13"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "5868:5:13"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "5875:8:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5829:21:13"
},
"nodeType": "YulFunctionCall",
"src": "5829:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "5829:55:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5893:33:13",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "5910:5:13"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "5917:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5906:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5906:20:13"
},
"variables": [
{
"name": "end_2",
"nodeType": "YulTypedName",
"src": "5897:5:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5935:12:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5946:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5939:3:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5956:30:13",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5979:6:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "5973:5:13"
},
"nodeType": "YulFunctionCall",
"src": "5973:13:13"
},
"variables": [
{
"name": "slotValue",
"nodeType": "YulTypedName",
"src": "5960:9:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5995:19:13",
"value": {
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6011:3:13"
},
"variables": [
{
"name": "length_2",
"nodeType": "YulTypedName",
"src": "5999:8:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6023:11:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6033:1:13",
"type": "",
"value": "1"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "6027:2:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6043:30:13",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "6059:2:13"
},
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "6063:9:13"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "6055:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6055:18:13"
},
"variableNames": [
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "6043:8:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6082:44:13",
"value": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "6112:9:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "6123:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6108:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6108:18:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6086:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6173:55:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6187:31:13",
"value": {
"arguments": [
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "6203:8:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6213:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6199:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6199:19:13"
},
"variableNames": [
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "6187:8:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6145:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6138:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6138:26:13"
},
"nodeType": "YulIf",
"src": "6135:93:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6289:115:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6310:3:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6319:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6324:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "6315:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6315:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6303:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6303:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "6303:33:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6356:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6359:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6349:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6349:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "6349:15:13"
},
{
"expression": {
"arguments": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6384:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6389:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6377:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6377:17:13"
},
"nodeType": "YulExpressionStatement",
"src": "6377:17:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6243:18:13"
},
{
"arguments": [
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "6266:8:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6276:2:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6263:2:13"
},
"nodeType": "YulFunctionCall",
"src": "6263:16:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6240:2:13"
},
"nodeType": "YulFunctionCall",
"src": "6240:40:13"
},
"nodeType": "YulIf",
"src": "6237:167:13"
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "6454:103:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "6475:5:13"
},
{
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "6486:9:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6501:3:13",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6497:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6497:8:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6482:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6482:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6468:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6468:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "6468:39:13"
},
{
"nodeType": "YulAssignment",
"src": "6520:27:13",
"value": {
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "6531:5:13"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "6538:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6527:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6527:20:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6520:3:13"
}
]
}
]
},
"nodeType": "YulCase",
"src": "6447:110:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6452:1:13",
"type": "",
"value": "0"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "6573:321:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6587:52:13",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6632:6:13"
}
],
"functionName": {
"name": "array_dataslot_string_storage",
"nodeType": "YulIdentifier",
"src": "6602:29:13"
},
"nodeType": "YulFunctionCall",
"src": "6602:37:13"
},
"variables": [
{
"name": "dataPos",
"nodeType": "YulTypedName",
"src": "6591:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6652:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6661:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "6656:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6731:113:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "6760:5:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6767:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6756:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6756:13:13"
},
{
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "6777:7:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "6771:5:13"
},
"nodeType": "YulFunctionCall",
"src": "6771:14:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6749:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6749:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "6749:37:13"
},
{
"nodeType": "YulAssignment",
"src": "6803:27:13",
"value": {
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "6818:7:13"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "6827:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6814:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6814:16:13"
},
"variableNames": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "6803:7:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6686:1:13"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "6689:8:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6683:2:13"
},
"nodeType": "YulFunctionCall",
"src": "6683:15:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6699:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6701:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6710:1:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "6713:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6706:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6706:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6701:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "6679:3:13",
"statements": []
},
"src": "6675:169:13"
},
{
"nodeType": "YulAssignment",
"src": "6857:27:13",
"value": {
"arguments": [
{
"name": "end_2",
"nodeType": "YulIdentifier",
"src": "6868:5:13"
},
{
"name": "length_2",
"nodeType": "YulIdentifier",
"src": "6875:8:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6864:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6864:20:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6857:3:13"
}
]
}
]
},
"nodeType": "YulCase",
"src": "6566:328:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6571:1:13",
"type": "",
"value": "1"
}
}
],
"expression": {
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6420:18:13"
},
"nodeType": "YulSwitch",
"src": "6413:481:13"
},
{
"nodeType": "YulAssignment",
"src": "6903:10:13",
"value": {
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6910:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6903:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5584:3:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5589:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5597:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5605:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5616:3:13",
"type": ""
}
],
"src": "5392:1527:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7115:14:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7117:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7124:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7117:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7099:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7107:3:13",
"type": ""
}
],
"src": "6924:205:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7235:102:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7245:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7257:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7268:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7253:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7253:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7245:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7287:9:13"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7302:6:13"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7318:3:13",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7323:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "7314:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7314:11:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7327:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7310:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7310:19:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7298:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7298:32:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7280:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7280:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "7280:51:13"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7204:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7215:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7226:4:13",
"type": ""
}
],
"src": "7134:203:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7545:285:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7555:29:13",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7573:3:13",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7578:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "7569:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7569:11:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7582:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7565:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7565:19:13"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "7559:2:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7600:9:13"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7615:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7623:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7611:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7611:15:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7593:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7593:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "7593:34:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7647:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7658:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7643:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7643:18:13"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7667:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "7675:2:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7663:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7663:15:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7636:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7636:43:13"
},
"nodeType": "YulExpressionStatement",
"src": "7636:43:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7699:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7710:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7695:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7695:18:13"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "7715:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7688:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7688:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "7688:34:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7742:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7753:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7738:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7738:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7758:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7731:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7731:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "7731:31:13"
},
{
"nodeType": "YulAssignment",
"src": "7771:53:13",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "7796:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7808:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7819:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7804:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7804:19:13"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "7779:16:13"
},
"nodeType": "YulFunctionCall",
"src": "7779:45:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7771:4:13"
}
]
}
]
},
"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": "7490:9:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "7501:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "7509:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7517:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7525:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7536:4:13",
"type": ""
}
],
"src": "7342:488:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7986:481:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7996:12:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8006:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "8000:2:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8017:32:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8035:9:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "8046:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8031:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8031:18:13"
},
"variables": [
{
"name": "tail_1",
"nodeType": "YulTypedName",
"src": "8021:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8065:9:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "8076:2:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8058:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8058:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "8058:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8088:17:13",
"value": {
"name": "tail_1",
"nodeType": "YulIdentifier",
"src": "8099:6:13"
},
"variables": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8092:3:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8114:27:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8134:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8128:5:13"
},
"nodeType": "YulFunctionCall",
"src": "8128:13:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8118:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "tail_1",
"nodeType": "YulIdentifier",
"src": "8157:6:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8165:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8150:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8150:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "8150:22:13"
},
{
"nodeType": "YulAssignment",
"src": "8181:25:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8192:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8203:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8188:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8188:18:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8181:3:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8215:29:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8233:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "8241:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8229:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8229:15:13"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "8219:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8253:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8262:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "8257:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8321:120:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8342:3:13"
},
{
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8353:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8347:5:13"
},
"nodeType": "YulFunctionCall",
"src": "8347:13:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8335:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8335:26:13"
},
"nodeType": "YulExpressionStatement",
"src": "8335:26:13"
},
{
"nodeType": "YulAssignment",
"src": "8374:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8385:3:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "8390:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8381:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8381:12:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8374:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8406:25:13",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8420:6:13"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "8428:2:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8416:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8416:15:13"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "8406:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8283:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8286:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8280:2:13"
},
"nodeType": "YulFunctionCall",
"src": "8280:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "8294:18:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8296:14:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8305:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8308:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8301:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8301:9:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8296:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "8276:3:13",
"statements": []
},
"src": "8272:169:13"
},
{
"nodeType": "YulAssignment",
"src": "8450:11:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8458:3:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8450:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7955:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7966:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7977:4:13",
"type": ""
}
],
"src": "7835:632:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8567:92:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8577:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8589:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8600:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8585:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8585:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8577:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8619:9:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8644:6:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8637:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8637:14:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8630:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8630:22:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8612:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8612:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "8612:41:13"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8536:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8547:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8558:4:13",
"type": ""
}
],
"src": "8472:187:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8785:98:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8802:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8813:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8795:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8795:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "8795:21:13"
},
{
"nodeType": "YulAssignment",
"src": "8825:52:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8850:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8862:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8873:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8858:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8858:18:13"
}
],
"functionName": {
"name": "abi_encode_bytes",
"nodeType": "YulIdentifier",
"src": "8833:16:13"
},
"nodeType": "YulFunctionCall",
"src": "8833:44:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8825:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8754:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8765:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8776:4:13",
"type": ""
}
],
"src": "8664:219:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9062:233:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9079:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9090:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9072:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9072:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "9072:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9113:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9124:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9109:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9109:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9129:2:13",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9102:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9102:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "9102:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9152:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9163:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9148:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9148:18:13"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9168:34:13",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9141:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9141:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "9141:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9223:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9234:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9219:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9219:18:13"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9239:13:13",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9212:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9212:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "9212:41:13"
},
{
"nodeType": "YulAssignment",
"src": "9262:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9274:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9285:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9270:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9270:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9262:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9039:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9053:4:13",
"type": ""
}
],
"src": "8888:407:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9474:240:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9491:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9502:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9484:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9484:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "9484:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9525:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9536:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9521:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9521:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9541:2:13",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9514:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9514:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "9514:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9564:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9575:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9560:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9560:18:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9580:34:13",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9553:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9553:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "9553:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9635:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9646:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9631:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9631:18:13"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9651:20:13",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9624:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9624:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "9624:48:13"
},
{
"nodeType": "YulAssignment",
"src": "9681:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9693:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9704:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9689:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9689:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9681:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9451:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9465:4:13",
"type": ""
}
],
"src": "9300:414:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9893:228:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9910:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9921:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9903:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9903:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "9903:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9944:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9955:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9940:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9940:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9960:2:13",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9933:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9933:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "9933:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9983:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9994:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9979:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9979:18:13"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9999:34:13",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9972:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9972:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "9972:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10054:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10065:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10050:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10050:18:13"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10070:8:13",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10043:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10043:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "10043:36:13"
},
{
"nodeType": "YulAssignment",
"src": "10088:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10100:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10111:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10096:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10096:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10088:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9870:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9884:4:13",
"type": ""
}
],
"src": "9719:402:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10300:178:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10317:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10328:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10310:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10310:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "10310:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10351:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10362:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10347:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10347:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10367:2:13",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10340:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10340:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "10340:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10390:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10401:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10386:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10386:18:13"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10406:30:13",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10379:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10379:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "10379:58:13"
},
{
"nodeType": "YulAssignment",
"src": "10446:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10458:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10469:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10454:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10454:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10446:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10277:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10291:4:13",
"type": ""
}
],
"src": "10126:352:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10657:226:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10674:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10685:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10667:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10667:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "10667:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10708:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10719:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10704:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10704:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10724:2:13",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10697:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10697:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "10697:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10747:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10758:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10743:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10743:18:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10763:34:13",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10736:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10736:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "10736:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10818:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10829:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10814:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10814:18:13"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10834:6:13",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10807:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10807:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "10807:34:13"
},
{
"nodeType": "YulAssignment",
"src": "10850:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10862:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10873:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10858:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10858:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10850:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10634:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10648:4:13",
"type": ""
}
],
"src": "10483:400:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11062:175:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11079:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11090:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11072:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11072:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "11072:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11113:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11124:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11109:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11109:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11129:2:13",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11102:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11102:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "11102:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11152:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11163:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11148:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11148:18:13"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11168:27:13",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11141:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11141:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "11141:55:13"
},
{
"nodeType": "YulAssignment",
"src": "11205:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11217:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11228:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11213:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11213:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11205:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11039:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11053:4:13",
"type": ""
}
],
"src": "10888:349:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11416:234:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11433:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11444:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11426:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11426:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "11426:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11467:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11478:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11463:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11463:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11483:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11456:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11456:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "11456:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11506:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11517:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11502:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11502:18:13"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11522:34:13",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11495:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11495:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "11495:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11577:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11588:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11573:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11573:18:13"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11593:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11566:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11566:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "11566:42:13"
},
{
"nodeType": "YulAssignment",
"src": "11617:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11629:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11640:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11625:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11625:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11617:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11393:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11407:4:13",
"type": ""
}
],
"src": "11242:408:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11829:246:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11846:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11857:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11839:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11839:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "11839:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11880:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11891:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11876:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11876:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11896:2:13",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11869:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11869:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "11869:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11919:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11930:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11915:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11915:18:13"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11935:34:13",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11908:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11908:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "11908:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11990:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12001:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11986:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11986:18:13"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12006:26:13",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11979:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11979:54:13"
},
"nodeType": "YulExpressionStatement",
"src": "11979:54:13"
},
{
"nodeType": "YulAssignment",
"src": "12042:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12054:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12065:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12050:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12050:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12042:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11806:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11820:4:13",
"type": ""
}
],
"src": "11655:420:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12254:232:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12271:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12282:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12264:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12264:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "12264:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12305:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12316:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12301:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12301:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12321:2:13",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12294:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12294:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "12294:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12344:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12355:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12340:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12340:18:13"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12360:34:13",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12333:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12333:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "12333:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12415:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12426:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12411:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12411:18:13"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12431:12:13",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12404:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12404:40:13"
},
"nodeType": "YulExpressionStatement",
"src": "12404:40:13"
},
{
"nodeType": "YulAssignment",
"src": "12453:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12465:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12476:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12461:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12461:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12453:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12231:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12245:4:13",
"type": ""
}
],
"src": "12080:406:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12665:231:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12682:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12693:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12675:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12675:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "12675:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12716:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12727:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12712:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12712:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12732:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12705:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12705:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "12705:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12755:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12766:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12751:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12751:18:13"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12771:34:13",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12744:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12744:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "12744:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12826:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12837:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12822:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12822:18:13"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12842:11:13",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12815:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12815:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "12815:39:13"
},
{
"nodeType": "YulAssignment",
"src": "12863:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12875:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12886:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12871:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12871:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12863:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12642:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12656:4:13",
"type": ""
}
],
"src": "12491:405:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13075:182:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13092:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13103:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13085:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13085:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "13085:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13126:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13137:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13122:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13122:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13142:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13115:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13115:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "13115:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13165:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13176:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13161:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13161:18:13"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13181:34:13",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13154:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13154:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "13154:62:13"
},
{
"nodeType": "YulAssignment",
"src": "13225:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13237:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13248:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13233:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13233:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13225:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13052:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13066:4:13",
"type": ""
}
],
"src": "12901:356:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13436:234:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13453:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13464:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13446:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13446:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "13446:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13487:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13498:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13483:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13483:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13503:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13476:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13476:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "13476:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13526:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13537:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13522:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13522:18:13"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13542:34:13",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13515:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13515:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "13515:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13597:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13608:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13593:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13593:18:13"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13613:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13586:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13586:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "13586:42:13"
},
{
"nodeType": "YulAssignment",
"src": "13637:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13649:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13660:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13645:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13645:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13637:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13413:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13427:4:13",
"type": ""
}
],
"src": "13262:408:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13849:182:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13866:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13877:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13859:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13859:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "13859:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13900:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13911:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13896:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13896:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13916:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13889:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13889:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "13889:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13939:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13950:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13935:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13935:18:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13955:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13928:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13928:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "13928:62:13"
},
{
"nodeType": "YulAssignment",
"src": "13999:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14011:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14022:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14007:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14007:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13999:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13826:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13840:4:13",
"type": ""
}
],
"src": "13675:356:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14210:231:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14227:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14238:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14220:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14220:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "14220:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14261:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14272:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14257:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14257:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14277:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14250:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14250:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "14250:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14300:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14311:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14296:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14296:18:13"
},
{
"hexValue": "4552433732313a207472616e73666572206f6620746f6b656e20746861742069",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14316:34:13",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14289:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14289:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "14289:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14371:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14382:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14367:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14367:18:13"
},
{
"hexValue": "73206e6f74206f776e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14387:11:13",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14360:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14360:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "14360:39:13"
},
{
"nodeType": "YulAssignment",
"src": "14408:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14420:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14431:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14416:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14416:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14408:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14187:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14201:4:13",
"type": ""
}
],
"src": "14036:405:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14620:237:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14637:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14648:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14630:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14630:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "14630:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14671:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14682:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14667:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14667:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14687:2:13",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14660:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14660:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "14660:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14710:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14721:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14706:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14706:18:13"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14726:34:13",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14699:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14699:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "14699:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14781:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14792:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14777:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14777:18:13"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14797:17:13",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14770:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14770:45:13"
},
"nodeType": "YulExpressionStatement",
"src": "14770:45:13"
},
{
"nodeType": "YulAssignment",
"src": "14824:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14836:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14847:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14832:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14832:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14824:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14597:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14611:4:13",
"type": ""
}
],
"src": "14446:411:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15036:223:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15053:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15064:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15046:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15046:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "15046:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15087:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15098:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15083:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15083:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15103:2:13",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15076:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15076:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "15076:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15126:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15137:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15122:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15122:18:13"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15142:34:13",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15115:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15115:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "15115:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15197:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15208:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15193:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15193:18:13"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15213:3:13",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15186:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15186:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "15186:31:13"
},
{
"nodeType": "YulAssignment",
"src": "15226:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15238:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15249:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15234:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15234:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15226:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15013:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15027:4:13",
"type": ""
}
],
"src": "14862:397:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15438:239:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15455:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15466:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15448:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15448:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "15448:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15489:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15500:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15485:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15485:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15505:2:13",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15478:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15478:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "15478:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15528:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15539:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15524:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15524:18:13"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15544:34:13",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15517:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15517:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "15517:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15599:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15610:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15595:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15595:18:13"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15615:19:13",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15588:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15588:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "15588:47:13"
},
{
"nodeType": "YulAssignment",
"src": "15644:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15656:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15667:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15652:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15652:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15644:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15415:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15429:4:13",
"type": ""
}
],
"src": "15264:413:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15856:234:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15873:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15884:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15866:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15866:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "15866:21:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15907:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15918:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15903:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15903:18:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15923:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15896:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15896:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "15896:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15946:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15957:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15942:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15942:18:13"
},
{
"hexValue": "455243373231456e756d657261626c653a20676c6f62616c20696e646578206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15962:34:13",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15935:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15935:62:13"
},
"nodeType": "YulExpressionStatement",
"src": "15935:62:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16017:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16028:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16013:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16013:18:13"
},
{
"hexValue": "7574206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16033:14:13",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16006:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16006:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "16006:42:13"
},
{
"nodeType": "YulAssignment",
"src": "16057:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16069:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16080:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16065:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16065:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16057:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15833:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15847:4:13",
"type": ""
}
],
"src": "15682:408:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16196:76:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16206:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16218:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16229:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16214:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16214:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16206:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16248:9:13"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16259:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16241:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16241:25:13"
},
"nodeType": "YulExpressionStatement",
"src": "16241:25:13"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16165:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16176:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16187:4:13",
"type": ""
}
],
"src": "16095:177:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16333:65:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16350:1:13",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "16353:3:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16343:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16343:14:13"
},
"nodeType": "YulExpressionStatement",
"src": "16343:14:13"
},
{
"nodeType": "YulAssignment",
"src": "16366:26:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16384:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16387:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "16374:9:13"
},
"nodeType": "YulFunctionCall",
"src": "16374:18:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "16366:4:13"
}
]
}
]
},
"name": "array_dataslot_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "16316:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "16324:4:13",
"type": ""
}
],
"src": "16277:121:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16451:80:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16478:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16480:16:13"
},
"nodeType": "YulFunctionCall",
"src": "16480:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "16480:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16467:1:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16474:1:13"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "16470:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16470:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "16464:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16464:13:13"
},
"nodeType": "YulIf",
"src": "16461:39:13"
},
{
"nodeType": "YulAssignment",
"src": "16509:16:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16520:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16523:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16516:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16516:9:13"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "16509:3:13"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16434:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16437:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "16443:3:13",
"type": ""
}
],
"src": "16403:128:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16582:74:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16605:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "16607:16:13"
},
"nodeType": "YulFunctionCall",
"src": "16607:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "16607:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16602:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16595:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16595:9:13"
},
"nodeType": "YulIf",
"src": "16592:35:13"
},
{
"nodeType": "YulAssignment",
"src": "16636:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16645:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16648:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "16641:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16641:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "16636:1:13"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16567:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16570:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "16576:1:13",
"type": ""
}
],
"src": "16536:120:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16713:116:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16772:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16774:16:13"
},
"nodeType": "YulFunctionCall",
"src": "16774:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "16774:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16744:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16737:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16737:9:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "16730:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16730:17:13"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16752:1:13"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16763:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "16759:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16759:6:13"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16767:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "16755:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16755:14:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "16749:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16749:21:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "16726:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16726:45:13"
},
"nodeType": "YulIf",
"src": "16723:71:13"
},
{
"nodeType": "YulAssignment",
"src": "16803:20:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16818:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16821:1:13"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "16814:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16814:9:13"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "16803:7:13"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16692:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16695:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "16701:7:13",
"type": ""
}
],
"src": "16661:168:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16883:76:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "16905:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16907:16:13"
},
"nodeType": "YulFunctionCall",
"src": "16907:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "16907:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16899:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16902:1:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "16896:2:13"
},
"nodeType": "YulFunctionCall",
"src": "16896:8:13"
},
"nodeType": "YulIf",
"src": "16893:34:13"
},
{
"nodeType": "YulAssignment",
"src": "16936:17:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "16948:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "16951:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16944:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16944:9:13"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "16936:4:13"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "16865:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "16868:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "16874:4:13",
"type": ""
}
],
"src": "16834:125:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17017:205:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "17027:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "17036:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "17031:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17096:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17121:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "17126:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17117:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17117:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "17140:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "17145:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17136:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17136:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "17130:5:13"
},
"nodeType": "YulFunctionCall",
"src": "17130:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17110:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17110:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "17110:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "17057:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17060:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "17054:2:13"
},
"nodeType": "YulFunctionCall",
"src": "17054:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "17068:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17070:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "17079:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17082:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17075:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17075:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "17070:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "17050:3:13",
"statements": []
},
"src": "17046:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17185:31:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "17198:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17203:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17194:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17194:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17212:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17187:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17187:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "17187:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "17174:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17177:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "17171:2:13"
},
"nodeType": "YulFunctionCall",
"src": "17171:13:13"
},
"nodeType": "YulIf",
"src": "17168:48:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "16995:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "17000:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "17005:6:13",
"type": ""
}
],
"src": "16964:258:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17282:325:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17292:22:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17306:1:13",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17309:4:13"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "17302:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17302:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17292:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "17323:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "17353:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17359:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17349:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17349:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "17327:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "17400:31:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17402:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17416:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17424:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "17412:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17412:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17402:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17380:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17373:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17373:26:13"
},
"nodeType": "YulIf",
"src": "17370:61:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17490:111:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17511:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17518:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17523:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17514:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17514:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17504:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17504:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "17504:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17555:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17558:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17548:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17548:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17548:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17583:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17586:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17576:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17576:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17576:15:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "17446:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "17469:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17477:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "17466:2:13"
},
"nodeType": "YulFunctionCall",
"src": "17466:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17443:2:13"
},
"nodeType": "YulFunctionCall",
"src": "17443:38:13"
},
"nodeType": "YulIf",
"src": "17440:161:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "17262:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "17271:6:13",
"type": ""
}
],
"src": "17227:380:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17659:88:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "17690:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "17692:16:13"
},
"nodeType": "YulFunctionCall",
"src": "17692:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "17692:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17675:5:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17686:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "17682:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17682:6:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "17672:2:13"
},
"nodeType": "YulFunctionCall",
"src": "17672:17:13"
},
"nodeType": "YulIf",
"src": "17669:43:13"
},
{
"nodeType": "YulAssignment",
"src": "17721:20:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17732:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17739:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17728:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17728:13:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "17721:3:13"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17641:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "17651:3:13",
"type": ""
}
],
"src": "17612:135:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17790:74:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "17813:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "17815:16:13"
},
"nodeType": "YulFunctionCall",
"src": "17815:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "17815:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17810:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "17803:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17803:9:13"
},
"nodeType": "YulIf",
"src": "17800:35:13"
},
{
"nodeType": "YulAssignment",
"src": "17844:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "17853:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "17856:1:13"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "17849:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17849:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "17844:1:13"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "17775:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "17778:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "17784:1:13",
"type": ""
}
],
"src": "17752:112:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17901:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17918:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17925:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17930:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "17921:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17921:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17911:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17911:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "17911:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17958:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17961:4:13",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17951:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17951:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17951:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17982:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17985:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "17975:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17975:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "17975:15:13"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "17869:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18033:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18050:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18057:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18062:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "18053:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18053:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18043:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18043:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "18043:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18090:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18093:4:13",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18083:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18083:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "18083:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18114:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18117:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18107:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18107:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "18107:15:13"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "18001:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18165:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18182:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18189:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18194:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "18185:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18185:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18175:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18175:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "18175:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18222:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18225:4:13",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18215:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18215:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "18215:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18246:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18249:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18239:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18239:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "18239:15:13"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "18133:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18297:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18314:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18321:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18326:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "18317:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18317:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18307:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18307:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "18307:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18354:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18357:4:13",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18347:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18347:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "18347:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18378:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18381:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18371:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18371:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "18371:15:13"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "18265:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18429:95:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18446:1:13",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18453:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18458:10:13",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "18449:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18449:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18439:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18439:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "18439:31:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18486:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18489:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18479:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18479:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "18479:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18510:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18513:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18503:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18503:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "18503:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "18397:127:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18573:87:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "18638:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18647:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18650:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18640:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18640:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "18640:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18596:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18607:5:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18618:3:13",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18623:10:13",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "18614:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18614:20:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "18603:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18603:32:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "18593:2:13"
},
"nodeType": "YulFunctionCall",
"src": "18593:43:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "18586:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18586:51:13"
},
"nodeType": "YulIf",
"src": "18583:71:13"
}
]
},
"name": "validator_revert_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "18562:5:13",
"type": ""
}
],
"src": "18529:131:13"
}
]
},
"contents": "{\n { }\n function abi_decode_available_length_bytes(src, length, end) -> array\n {\n let _1 := 0xffffffffffffffff\n if gt(length, _1) { panic_error_0x41() }\n let _2 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(length, 31), _2), 63), _2))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n array := memPtr\n mstore(memPtr, length)\n if gt(add(src, length), end) { revert(0, 0) }\n calldatacopy(add(memPtr, 0x20), src, length)\n mstore(add(add(memPtr, length), 0x20), 0)\n }\n function abi_decode_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_bool(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n let _1 := add(headStart, offset)\n if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n value3 := abi_decode_available_length_bytes(add(_1, 32), calldataload(_1), dataEnd)\n }\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_bool(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_array$_t_address_$100_memory_ptr(headStart, dataEnd) -> value0\n {\n let _1 := 3200\n if slt(sub(dataEnd, headStart), _1) { revert(0, 0) }\n if iszero(slt(add(headStart, 0x1f), dataEnd)) { revert(0, 0) }\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, _1)\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n let dst := memPtr\n let src := headStart\n if gt(add(headStart, _1), dataEnd) { revert(0, 0) }\n let i := 0\n for { } lt(i, 0x64) { i := add(i, 1) }\n {\n mstore(dst, abi_decode_address(src))\n let _2 := 0x20\n dst := add(dst, _2)\n src := add(src, _2)\n }\n value0 := memPtr\n }\n function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_bool(headStart)\n }\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := calldataload(headStart)\n validator_revert_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let value := mload(headStart)\n validator_revert_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n let offset := calldataload(headStart)\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n let _1 := add(headStart, offset)\n if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n value0 := abi_decode_available_length_bytes(add(_1, 32), calldataload(_1), dataEnd)\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_bytes(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n }\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value2, value1, value0) -> end\n {\n let length := mload(value0)\n let _1 := 0x20\n copy_memory_to_memory(add(value0, _1), pos, length)\n let end_1 := add(pos, length)\n let length_1 := mload(value1)\n copy_memory_to_memory(add(value1, _1), end_1, length_1)\n let end_2 := add(end_1, length_1)\n let ret := 0\n let slotValue := sload(value2)\n let length_2 := ret\n let _2 := 1\n length_2 := shr(_2, slotValue)\n let outOfPlaceEncoding := and(slotValue, _2)\n if iszero(outOfPlaceEncoding)\n {\n length_2 := and(length_2, 0x7f)\n }\n if eq(outOfPlaceEncoding, lt(length_2, _1))\n {\n mstore(ret, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(ret, 0x24)\n }\n switch outOfPlaceEncoding\n case 0 {\n mstore(end_2, and(slotValue, not(255)))\n ret := add(end_2, length_2)\n }\n case 1 {\n let dataPos := array_dataslot_string_storage(value2)\n let i := 0\n for { } lt(i, length_2) { i := add(i, _1) }\n {\n mstore(add(end_2, i), sload(dataPos))\n dataPos := add(dataPos, _2)\n }\n ret := add(end_2, length_2)\n }\n end := ret\n }\n function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n { end := pos }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\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 {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n tail := abi_encode_bytes(value3, add(headStart, 128))\n }\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n let tail_1 := add(headStart, _1)\n mstore(headStart, _1)\n let pos := tail_1\n let length := mload(value0)\n mstore(tail_1, length)\n pos := add(headStart, 64)\n let srcPtr := add(value0, _1)\n let i := 0\n for { } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, mload(srcPtr))\n pos := add(pos, _1)\n srcPtr := add(srcPtr, _1)\n }\n tail := pos\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_bytes(value0, add(headStart, 32))\n }\n function abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 43)\n mstore(add(headStart, 64), \"ERC721Enumerable: owner index ou\")\n mstore(add(headStart, 96), \"t of bounds\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 50)\n mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n mstore(add(headStart, 96), \"ceiver implementer\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Ownable: new owner is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 28)\n mstore(add(headStart, 64), \"ERC721: token already minted\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC721: transfer to the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 25)\n mstore(add(headStart, 64), \"ERC721: approve to caller\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: operator query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 56)\n mstore(add(headStart, 64), \"ERC721: approve caller is not ow\")\n mstore(add(headStart, 96), \"ner nor approved for all\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 42)\n mstore(add(headStart, 64), \"ERC721: balance query for the ze\")\n mstore(add(headStart, 96), \"ro address\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"ERC721: owner query for nonexist\")\n mstore(add(headStart, 96), \"ent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"ERC721: mint to the zero address\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: approved query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"ERC721: transfer of token that i\")\n mstore(add(headStart, 96), \"s not own\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 47)\n mstore(add(headStart, 64), \"ERC721Metadata: URI query for no\")\n mstore(add(headStart, 96), \"nexistent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 33)\n mstore(add(headStart, 64), \"ERC721: approval to current owne\")\n mstore(add(headStart, 96), \"r\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 49)\n mstore(add(headStart, 64), \"ERC721: transfer caller is not o\")\n mstore(add(headStart, 96), \"wner nor approved\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721Enumerable: global index o\")\n mstore(add(headStart, 96), \"ut of bounds\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function array_dataslot_string_storage(ptr) -> data\n {\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_div_t_uint256(x, y) -> r\n {\n if iszero(y) { panic_error_0x12() }\n r := div(x, y)\n }\n function checked_mul_t_uint256(x, y) -> product\n {\n if and(iszero(iszero(x)), gt(y, div(not(0), x))) { panic_error_0x11() }\n product := mul(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function copy_memory_to_memory(src, dst, length)\n {\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) { mstore(add(dst, length), 0) }\n }\n function extract_byte_array_length(data) -> length\n {\n length := shr(1, data)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function increment_t_uint256(value) -> ret\n {\n if eq(value, not(0)) { panic_error_0x11() }\n ret := add(value, 1)\n }\n function mod_t_uint256(x, y) -> r\n {\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function panic_error_0x12()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n function panic_error_0x31()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n function panic_error_0x32()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n function validator_revert_bytes4(value)\n {\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n }\n}",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106102515760003560e01c806355f804b311610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146106b0578063d936547e146106c6578063da3ef23f146106f6578063e985e9c514610716578063ed931e171461075f578063f2fde38b1461077f57600080fd5b8063a22cb4651461061b578063b2f3e85e1461063b578063b88d4fde1461065b578063c66828621461067b578063c87b56dd1461069057600080fd5b8063715018a6116100fd578063715018a6146105935780637f00c7a6146105a85780638da5cb5b146105c85780638fdcf942146105e657806395d89b411461060657600080fd5b806355f804b3146105045780635c975abb146105245780636352211e1461053e5780636c0360eb1461055e57806370a082311461057357600080fd5b80632f745c59116101d257806342842e0e1161019657806342842e0e14610437578063438b63001461045757806344a0d68a146104845780634a4c560d146104a45780634f6ccce7146104c4578063546857c7146104e457600080fd5b80632f745c59146103ac57806330b2264e146103cc57806330cc7ae0146103fc5780633ccfd60b1461041c57806340c10f191461042457600080fd5b806313faede61161021957806313faede61461032757806318160ddd1461034b578063239c70ae1461036057806323b872dd146103765780632a23d07d1461039657600080fd5b806301ffc9a71461025657806302329a291461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b50610276610271366004612230565b61079f565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612215565b6107ca565b005b3480156102b957600080fd5b506102c2610810565b604051610282919061243d565b3480156102db57600080fd5b506102ef6102ea3660046122b3565b6108a2565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab61032236600461215b565b610937565b34801561033357600080fd5b5061033d600d5481565b604051908152602001610282565b34801561035757600080fd5b5060085461033d565b34801561036c57600080fd5b5061033d60105481565b34801561038257600080fd5b506102ab610391366004612079565b610a4d565b3480156103a257600080fd5b5061033d600e5481565b3480156103b857600080fd5b5061033d6103c736600461215b565b610a7e565b3480156103d857600080fd5b506102766103e736600461202b565b60136020526000908152604090205460ff1681565b34801561040857600080fd5b506102ab61041736600461202b565b610b14565b6102ab610b5f565b6102ab61043236600461215b565b610be1565b34801561044357600080fd5b506102ab610452366004612079565b610ceb565b34801561046357600080fd5b5061047761047236600461202b565b610d06565b60405161028291906123f9565b34801561049057600080fd5b506102ab61049f3660046122b3565b610da8565b3480156104b057600080fd5b506102ab6104bf36600461202b565b610dd7565b3480156104d057600080fd5b5061033d6104df3660046122b3565b610e25565b3480156104f057600080fd5b506102ab6104ff366004612185565b610eb8565b34801561051057600080fd5b506102ab61051f36600461226a565b610f4c565b34801561053057600080fd5b506011546102769060ff1681565b34801561054a57600080fd5b506102ef6105593660046122b3565b610f89565b34801561056a57600080fd5b506102c2611000565b34801561057f57600080fd5b5061033d61058e36600461202b565b61108e565b34801561059f57600080fd5b506102ab611115565b3480156105b457600080fd5b506102ab6105c33660046122b3565b61114b565b3480156105d457600080fd5b50600a546001600160a01b03166102ef565b3480156105f257600080fd5b506102ab6106013660046122b3565b61117a565b34801561061257600080fd5b506102c26111a9565b34801561062757600080fd5b506102ab610636366004612131565b6111b8565b34801561064757600080fd5b506102ab61065636600461202b565b61127d565b34801561066757600080fd5b506102ab6106763660046120b5565b6112cb565b34801561068757600080fd5b506102c26112fd565b34801561069c57600080fd5b506102c26106ab3660046122b3565b61130a565b3480156106bc57600080fd5b5061033d600f5481565b3480156106d257600080fd5b506102766106e136600461202b565b60126020526000908152604090205460ff1681565b34801561070257600080fd5b506102ab61071136600461226a565b6113e8565b34801561072257600080fd5b50610276610731366004612046565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561076b57600080fd5b506102ab61077a36600461202b565b611425565b34801561078b57600080fd5b506102ab61079a36600461202b565b611470565b60006001600160e01b0319821663780e9d6360e01b14806107c457506107c48261150e565b92915050565b600a546001600160a01b031633146107fd5760405162461bcd60e51b81526004016107f4906124a2565b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461081f906125b6565b80601f016020809104026020016040519081016040528092919081815260200182805461084b906125b6565b80156108985780601f1061086d57610100808354040283529160200191610898565b820191906000526020600020905b81548152906001019060200180831161087b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f4565b506000908152600460205260409020546001600160a01b031690565b600061094282610f89565b9050806001600160a01b0316836001600160a01b031614156109b05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f4565b336001600160a01b03821614806109cc57506109cc8133610731565b610a3e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f4565b610a48838361155e565b505050565b610a5733826115cc565b610a735760405162461bcd60e51b81526004016107f4906124d7565b610a488383836116c3565b6000610a898361108e565b8210610aeb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b3e5760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b03166000908152601260205260409020805460ff19169055565b600a546001600160a01b03163314610b895760405162461bcd60e51b81526004016107f4906124a2565b604051600090339047908381818185875af1925050503d8060008114610bcb576040519150601f19603f3d011682016040523d82523d6000602084013e610bd0565b606091505b5050905080610bde57600080fd5b50565b6000610bec60085490565b60115490915060ff1615610bff57600080fd5b60008211610c0c57600080fd5b601054821115610c1b57600080fd5b600f54610c288383612528565b1115610c3357600080fd5b600a546001600160a01b03163314610cb6573360009081526012602052604090205460ff161515600114610cb6573360009081526013602052604090205460ff161515600114610c9c5781600d54610c8b9190612554565b341015610c9757600080fd5b610cb6565b81600e54610caa9190612554565b341015610cb657600080fd5b60015b828111610ce557610cd384610cce8385612528565b61186e565b80610cdd816125f1565b915050610cb9565b50505050565b610a48838383604051806020016040528060008152506112cb565b60606000610d138361108e565b905060008167ffffffffffffffff811115610d3057610d30612678565b604051908082528060200260200182016040528015610d59578160200160208202803683370190505b50905060005b82811015610da057610d718582610a7e565b828281518110610d8357610d83612662565b602090810291909101015280610d98816125f1565b915050610d5f565b509392505050565b600a546001600160a01b03163314610dd25760405162461bcd60e51b81526004016107f4906124a2565b600d55565b600a546001600160a01b03163314610e015760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b6000610e3060085490565b8210610e935760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f4565b60088281548110610ea657610ea6612662565b90600052602060002001549050919050565b600a546001600160a01b03163314610ee25760405162461bcd60e51b81526004016107f4906124a2565b60005b6002811015610f4857600160136000848460648110610f0657610f06612662565b602090810291909101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610f40816125f1565b915050610ee5565b5050565b600a546001600160a01b03163314610f765760405162461bcd60e51b81526004016107f4906124a2565b8051610f4890600b906020840190611ef0565b6000818152600260205260408120546001600160a01b0316806107c45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f4565b600b805461100d906125b6565b80601f0160208091040260200160405190810160405280929190818152602001828054611039906125b6565b80156110865780601f1061105b57610100808354040283529160200191611086565b820191906000526020600020905b81548152906001019060200180831161106957829003601f168201915b505050505081565b60006001600160a01b0382166110f95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461113f5760405162461bcd60e51b81526004016107f4906124a2565b6111496000611888565b565b600a546001600160a01b031633146111755760405162461bcd60e51b81526004016107f4906124a2565b601055565b600a546001600160a01b031633146111a45760405162461bcd60e51b81526004016107f4906124a2565b600e55565b60606001805461081f906125b6565b6001600160a01b0382163314156112115760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112a75760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b03166000908152601360205260409020805460ff19166001179055565b6112d533836115cc565b6112f15760405162461bcd60e51b81526004016107f4906124d7565b610ce5848484846118da565b600c805461100d906125b6565b6000818152600260205260409020546060906001600160a01b03166113895760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f4565b600061139361190d565b905060008151116113b357604051806020016040528060008152506113e1565b806113bd8461191c565b600c6040516020016113d1939291906122f8565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114125760405162461bcd60e51b81526004016107f4906124a2565b8051610f4890600c906020840190611ef0565b600a546001600160a01b0316331461144f5760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b03166000908152601360205260409020805460ff19169055565b600a546001600160a01b0316331461149a5760405162461bcd60e51b81526004016107f4906124a2565b6001600160a01b0381166114ff5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f4565b610bde81611888565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061153f57506001600160e01b03198216635b5e139f60e01b145b806107c457506301ffc9a760e01b6001600160e01b03198316146107c4565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159382610f89565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116455760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f4565b600061165083610f89565b9050806001600160a01b0316846001600160a01b0316148061168b5750836001600160a01b0316611680846108a2565b6001600160a01b0316145b806116bb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116d682610f89565b6001600160a01b03161461173e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f4565b6001600160a01b0382166117a05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f4565b6117ab838383611a1a565b6117b660008261155e565b6001600160a01b03831660009081526003602052604081208054600192906117df908490612573565b90915550506001600160a01b038216600090815260036020526040812080546001929061180d908490612528565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610f48828260405180602001604052806000815250611ad2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118e58484846116c3565b6118f184848484611b05565b610ce55760405162461bcd60e51b81526004016107f490612450565b6060600b805461081f906125b6565b6060816119405750506040805180820190915260018152600360fc1b602082015290565b8160005b811561196a5780611954816125f1565b91506119639050600a83612540565b9150611944565b60008167ffffffffffffffff81111561198557611985612678565b6040519080825280601f01601f1916602001820160405280156119af576020820181803683370190505b5090505b84156116bb576119c4600183612573565b91506119d1600a8661260c565b6119dc906030612528565b60f81b8183815181106119f1576119f1612662565b60200101906001600160f81b031916908160001a905350611a13600a86612540565b94506119b3565b6001600160a01b038316611a7557611a7081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611a98565b816001600160a01b0316836001600160a01b031614611a9857611a988382611c12565b6001600160a01b038216611aaf57610a4881611caf565b826001600160a01b0316826001600160a01b031614610a4857610a488282611d5e565b611adc8383611da2565b611ae96000848484611b05565b610a485760405162461bcd60e51b81526004016107f490612450565b60006001600160a01b0384163b15611c0757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b499033908990889088906004016123bc565b602060405180830381600087803b158015611b6357600080fd5b505af1925050508015611b93575060408051601f3d908101601f19168201909252611b909181019061224d565b60015b611bed573d808015611bc1576040519150601f19603f3d011682016040523d82523d6000602084013e611bc6565b606091505b508051611be55760405162461bcd60e51b81526004016107f490612450565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116bb565b506001949350505050565b60006001611c1f8461108e565b611c299190612573565b600083815260076020526040902054909150808214611c7c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cc190600190612573565b60008381526009602052604081205460088054939450909284908110611ce957611ce9612662565b906000526020600020015490508060088381548110611d0a57611d0a612662565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d4257611d4261264c565b6001900381819060005260206000200160009055905550505050565b6000611d698361108e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611df85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f4565b6000818152600260205260409020546001600160a01b031615611e5d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f4565b611e6960008383611a1a565b6001600160a01b0382166000908152600360205260408120805460019290611e92908490612528565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611efc906125b6565b90600052602060002090601f016020900481019282611f1e5760008555611f64565b82601f10611f3757805160ff1916838001178555611f64565b82800160010185558215611f64579182015b82811115611f64578251825591602001919060010190611f49565b50611f70929150611f74565b5090565b5b80821115611f705760008155600101611f75565b600067ffffffffffffffff80841115611fa457611fa4612678565b604051601f8501601f19908116603f01168101908282118183101715611fcc57611fcc612678565b81604052809350858152868686011115611fe557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461201657600080fd5b919050565b8035801515811461201657600080fd5b60006020828403121561203d57600080fd5b6113e182611fff565b6000806040838503121561205957600080fd5b61206283611fff565b915061207060208401611fff565b90509250929050565b60008060006060848603121561208e57600080fd5b61209784611fff565b92506120a560208501611fff565b9150604084013590509250925092565b600080600080608085870312156120cb57600080fd5b6120d485611fff565b93506120e260208601611fff565b925060408501359150606085013567ffffffffffffffff81111561210557600080fd5b8501601f8101871361211657600080fd5b61212587823560208401611f89565b91505092959194509250565b6000806040838503121561214457600080fd5b61214d83611fff565b91506120706020840161201b565b6000806040838503121561216e57600080fd5b61217783611fff565b946020939093013593505050565b6000610c8080838503121561219957600080fd5b83601f8401126121a857600080fd5b60405181810181811067ffffffffffffffff821117156121ca576121ca612678565b60405280848381018710156121de57600080fd5b600093505b606484101561220a576121f581611fff565b825260019390930192602091820191016121e3565b509095945050505050565b60006020828403121561222757600080fd5b6113e18261201b565b60006020828403121561224257600080fd5b81356113e18161268e565b60006020828403121561225f57600080fd5b81516113e18161268e565b60006020828403121561227c57600080fd5b813567ffffffffffffffff81111561229357600080fd5b8201601f810184136122a457600080fd5b6116bb84823560208401611f89565b6000602082840312156122c557600080fd5b5035919050565b600081518084526122e481602086016020860161258a565b601f01601f19169290920160200192915050565b60008451602061230b8285838a0161258a565b85519184019161231e8184848a0161258a565b8554920191600090600181811c908083168061233b57607f831692505b85831081141561235957634e487b7160e01b85526022600452602485fd5b80801561236d576001811461237e576123ab565b60ff198516885283880195506123ab565b60008b81526020902060005b858110156123a35781548a82015290840190880161238a565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ef908301846122cc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561243157835183529284019291840191600101612415565b50909695505050505050565b6020815260006113e160208301846122cc565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561253b5761253b612620565b500190565b60008261254f5761254f612636565b500490565b600081600019048311821515161561256e5761256e612620565b500290565b60008282101561258557612585612620565b500390565b60005b838110156125a557818101518382015260200161258d565b83811115610ce55750506000910152565b600181811c908216806125ca57607f821691505b602082108114156125eb57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561260557612605612620565b5060010190565b60008261261b5761261b612636565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bde57600080fdfea2646970667358221220df4a8d0bef0b3bd63fbab5a13e54f613296b23c4ca1da14b16851686e102ee4364736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x251 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x55F804B3 GT PUSH2 0x139 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xB6 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x7A JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x6B0 JUMPI DUP1 PUSH4 0xD936547E EQ PUSH2 0x6C6 JUMPI DUP1 PUSH4 0xDA3EF23F EQ PUSH2 0x6F6 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x716 JUMPI DUP1 PUSH4 0xED931E17 EQ PUSH2 0x75F JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x77F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x61B JUMPI DUP1 PUSH4 0xB2F3E85E EQ PUSH2 0x63B JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x65B JUMPI DUP1 PUSH4 0xC6682862 EQ PUSH2 0x67B JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x690 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x715018A6 GT PUSH2 0xFD JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x593 JUMPI DUP1 PUSH4 0x7F00C7A6 EQ PUSH2 0x5A8 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x5C8 JUMPI DUP1 PUSH4 0x8FDCF942 EQ PUSH2 0x5E6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x606 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x504 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x524 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x53E JUMPI DUP1 PUSH4 0x6C0360EB EQ PUSH2 0x55E JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x573 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F745C59 GT PUSH2 0x1D2 JUMPI DUP1 PUSH4 0x42842E0E GT PUSH2 0x196 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x437 JUMPI DUP1 PUSH4 0x438B6300 EQ PUSH2 0x457 JUMPI DUP1 PUSH4 0x44A0D68A EQ PUSH2 0x484 JUMPI DUP1 PUSH4 0x4A4C560D EQ PUSH2 0x4A4 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x4C4 JUMPI DUP1 PUSH4 0x546857C7 EQ PUSH2 0x4E4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x3AC JUMPI DUP1 PUSH4 0x30B2264E EQ PUSH2 0x3CC JUMPI DUP1 PUSH4 0x30CC7AE0 EQ PUSH2 0x3FC JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x41C JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x424 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x13FAEDE6 GT PUSH2 0x219 JUMPI DUP1 PUSH4 0x13FAEDE6 EQ PUSH2 0x327 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x34B JUMPI DUP1 PUSH4 0x239C70AE EQ PUSH2 0x360 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x376 JUMPI DUP1 PUSH4 0x2A23D07D EQ PUSH2 0x396 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x256 JUMPI DUP1 PUSH4 0x2329A29 EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x2AD JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2CF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x307 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x262 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x271 CALLDATASIZE PUSH1 0x4 PUSH2 0x2230 JUMP JUMPDEST PUSH2 0x79F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x2A6 CALLDATASIZE PUSH1 0x4 PUSH2 0x2215 JUMP JUMPDEST PUSH2 0x7CA JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x810 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x282 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EF PUSH2 0x2EA CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x8A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x282 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x313 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x322 CALLDATASIZE PUSH1 0x4 PUSH2 0x215B JUMP JUMPDEST PUSH2 0x937 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x333 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x282 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x8 SLOAD PUSH2 0x33D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH1 0x10 SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x382 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x391 CALLDATASIZE PUSH1 0x4 PUSH2 0x2079 JUMP JUMPDEST PUSH2 0xA4D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH1 0xE SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH2 0x3C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x215B JUMP JUMPDEST PUSH2 0xA7E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x3E7 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x408 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x417 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0xB14 JUMP JUMPDEST PUSH2 0x2AB PUSH2 0xB5F JUMP JUMPDEST PUSH2 0x2AB PUSH2 0x432 CALLDATASIZE PUSH1 0x4 PUSH2 0x215B JUMP JUMPDEST PUSH2 0xBE1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x443 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x452 CALLDATASIZE PUSH1 0x4 PUSH2 0x2079 JUMP JUMPDEST PUSH2 0xCEB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x463 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x477 PUSH2 0x472 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0xD06 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x282 SWAP2 SWAP1 PUSH2 0x23F9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x490 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x49F CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0xDA8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x4BF CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0xDD7 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH2 0x4DF CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0xE25 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x4FF CALLDATASIZE PUSH1 0x4 PUSH2 0x2185 JUMP JUMPDEST PUSH2 0xEB8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x510 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x51F CALLDATASIZE PUSH1 0x4 PUSH2 0x226A JUMP JUMPDEST PUSH2 0xF4C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x530 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x11 SLOAD PUSH2 0x276 SWAP1 PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x54A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EF PUSH2 0x559 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0xF89 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x56A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x1000 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x57F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH2 0x58E CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0x108E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x59F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x1115 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x5C3 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x114B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x2EF JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5F2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x601 CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x117A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x612 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x11A9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x627 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x636 CALLDATASIZE PUSH1 0x4 PUSH2 0x2131 JUMP JUMPDEST PUSH2 0x11B8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x647 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x656 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0x127D JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x667 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x676 CALLDATASIZE PUSH1 0x4 PUSH2 0x20B5 JUMP JUMPDEST PUSH2 0x12CB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x687 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x12FD JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x69C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C2 PUSH2 0x6AB CALLDATASIZE PUSH1 0x4 PUSH2 0x22B3 JUMP JUMPDEST PUSH2 0x130A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x33D PUSH1 0xF SLOAD DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x6E1 CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x702 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x711 CALLDATASIZE PUSH1 0x4 PUSH2 0x226A JUMP JUMPDEST PUSH2 0x13E8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x722 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x276 PUSH2 0x731 CALLDATASIZE PUSH1 0x4 PUSH2 0x2046 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x77A CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0x1425 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2AB PUSH2 0x79A CALLDATASIZE PUSH1 0x4 PUSH2 0x202B JUMP JUMPDEST PUSH2 0x1470 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x780E9D63 PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x7C4 JUMPI POP PUSH2 0x7C4 DUP3 PUSH2 0x150E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x7FD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x11 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x81F SWAP1 PUSH2 0x25B6 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 0x84B SWAP1 PUSH2 0x25B6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x898 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x86D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x898 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 0x87B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x91B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x942 DUP3 PUSH2 0xF89 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x9B0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x21 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x9CC JUMPI POP PUSH2 0x9CC DUP2 CALLER PUSH2 0x731 JUMP JUMPDEST PUSH2 0xA3E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x38 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH2 0xA48 DUP4 DUP4 PUSH2 0x155E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xA57 CALLER DUP3 PUSH2 0x15CC JUMP JUMPDEST PUSH2 0xA73 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24D7 JUMP JUMPDEST PUSH2 0xA48 DUP4 DUP4 DUP4 PUSH2 0x16C3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA89 DUP4 PUSH2 0x108E JUMP JUMPDEST DUP3 LT PUSH2 0xAEB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2B PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x44 DUP3 ADD MSTORE PUSH11 0x74206F6620626F756E6473 PUSH1 0xA8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xB3E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xB89 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x0 SWAP1 CALLER SWAP1 SELFBALANCE SWAP1 DUP4 DUP2 DUP2 DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0xBCB 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 0xBD0 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0xBDE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBEC PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x11 SLOAD SWAP1 SWAP2 POP PUSH1 0xFF AND ISZERO PUSH2 0xBFF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xC0C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x10 SLOAD DUP3 GT ISZERO PUSH2 0xC1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xF SLOAD PUSH2 0xC28 DUP4 DUP4 PUSH2 0x2528 JUMP JUMPDEST GT ISZERO PUSH2 0xC33 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xCB6 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ PUSH2 0xCB6 JUMPI CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND ISZERO ISZERO PUSH1 0x1 EQ PUSH2 0xC9C JUMPI DUP2 PUSH1 0xD SLOAD PUSH2 0xC8B SWAP2 SWAP1 PUSH2 0x2554 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xC97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xCB6 JUMP JUMPDEST DUP2 PUSH1 0xE SLOAD PUSH2 0xCAA SWAP2 SWAP1 PUSH2 0x2554 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xCB6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 JUMPDEST DUP3 DUP2 GT PUSH2 0xCE5 JUMPI PUSH2 0xCD3 DUP5 PUSH2 0xCCE DUP4 DUP6 PUSH2 0x2528 JUMP JUMPDEST PUSH2 0x186E JUMP JUMPDEST DUP1 PUSH2 0xCDD DUP2 PUSH2 0x25F1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCB9 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xA48 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x12CB JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xD13 DUP4 PUSH2 0x108E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD30 JUMPI PUSH2 0xD30 PUSH2 0x2678 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xD59 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xDA0 JUMPI PUSH2 0xD71 DUP6 DUP3 PUSH2 0xA7E JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xD83 JUMPI PUSH2 0xD83 PUSH2 0x2662 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE DUP1 PUSH2 0xD98 DUP2 PUSH2 0x25F1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xD5F JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xDD2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0xD SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xE01 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x12 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE30 PUSH1 0x8 SLOAD SWAP1 JUMP JUMPDEST DUP3 LT PUSH2 0xE93 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x7574206F6620626F756E6473 PUSH1 0xA0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xEA6 JUMPI PUSH2 0xEA6 PUSH2 0x2662 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xEE2 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x0 JUMPDEST PUSH1 0x2 DUP2 LT ISZERO PUSH2 0xF48 JUMPI PUSH1 0x1 PUSH1 0x13 PUSH1 0x0 DUP5 DUP5 PUSH1 0x64 DUP2 LT PUSH2 0xF06 JUMPI PUSH2 0xF06 PUSH2 0x2662 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP2 ISZERO ISZERO SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE DUP1 PUSH2 0xF40 DUP2 PUSH2 0x25F1 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xEE5 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0xF76 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST DUP1 MLOAD PUSH2 0xF48 SWAP1 PUSH1 0xB SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x7C4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH2 0x100D SWAP1 PUSH2 0x25B6 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 0x1039 SWAP1 PUSH2 0x25B6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1086 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x105B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1086 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 0x1069 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x10F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x44 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x113F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH2 0x1149 PUSH1 0x0 PUSH2 0x1888 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1175 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x10 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x11A4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0xE SSTORE JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x81F SWAP1 PUSH2 0x25B6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND CALLER EQ ISZERO PUSH2 0x1211 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x19 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x7F4 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE SWAP3 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD SWAP1 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x12A7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0x1 OR SWAP1 SSTORE JUMP JUMPDEST PUSH2 0x12D5 CALLER DUP4 PUSH2 0x15CC JUMP JUMPDEST PUSH2 0x12F1 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24D7 JUMP JUMPDEST PUSH2 0xCE5 DUP5 DUP5 DUP5 DUP5 PUSH2 0x18DA JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD PUSH2 0x100D SWAP1 PUSH2 0x25B6 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x60 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1389 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2F PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x44 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1393 PUSH2 0x190D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x13B3 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x13E1 JUMP JUMPDEST DUP1 PUSH2 0x13BD DUP5 PUSH2 0x191C JUMP JUMPDEST PUSH1 0xC PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x13D1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x22F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1412 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST DUP1 MLOAD PUSH2 0xF48 SWAP1 PUSH1 0xC SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH2 0x1EF0 JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x144F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x13 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND SWAP1 SSTORE JUMP JUMPDEST PUSH1 0xA SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x149A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x24A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x14FF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH2 0xBDE DUP2 PUSH2 0x1888 JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x153F JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x7C4 JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ PUSH2 0x7C4 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x1593 DUP3 PUSH2 0xF89 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1645 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x44 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1650 DUP4 PUSH2 0xF89 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x168B JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1680 DUP5 PUSH2 0x8A2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x16BB JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE SWAP3 SWAP1 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x16D6 DUP3 PUSH2 0xF89 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x173E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x29 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x17A0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 DUP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH2 0x17AB DUP4 DUP4 DUP4 PUSH2 0x1A1A JUMP JUMPDEST PUSH2 0x17B6 PUSH1 0x0 DUP3 PUSH2 0x155E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x17DF SWAP1 DUP5 SWAP1 PUSH2 0x2573 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x180D SWAP1 DUP5 SWAP1 PUSH2 0x2528 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0xF48 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1AD2 JUMP JUMPDEST PUSH1 0xA DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR SWAP1 SWAP4 SSTORE PUSH1 0x40 MLOAD SWAP2 AND SWAP2 SWAP1 DUP3 SWAP1 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP1 PUSH1 0x0 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x18E5 DUP5 DUP5 DUP5 PUSH2 0x16C3 JUMP JUMPDEST PUSH2 0x18F1 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1B05 JUMP JUMPDEST PUSH2 0xCE5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x2450 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xB DUP1 SLOAD PUSH2 0x81F SWAP1 PUSH2 0x25B6 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x1940 JUMPI POP POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x196A JUMPI DUP1 PUSH2 0x1954 DUP2 PUSH2 0x25F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x1963 SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x2540 JUMP JUMPDEST SWAP2 POP PUSH2 0x1944 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1985 JUMPI PUSH2 0x1985 PUSH2 0x2678 JUMP 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 0x19AF JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x16BB JUMPI PUSH2 0x19C4 PUSH1 0x1 DUP4 PUSH2 0x2573 JUMP JUMPDEST SWAP2 POP PUSH2 0x19D1 PUSH1 0xA DUP7 PUSH2 0x260C JUMP JUMPDEST PUSH2 0x19DC SWAP1 PUSH1 0x30 PUSH2 0x2528 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x19F1 JUMPI PUSH2 0x19F1 PUSH2 0x2662 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x1A13 PUSH1 0xA DUP7 PUSH2 0x2540 JUMP JUMPDEST SWAP5 POP PUSH2 0x19B3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1A75 JUMPI PUSH2 0x1A70 DUP2 PUSH1 0x8 DUP1 SLOAD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP3 SWAP1 SSTORE PUSH1 0x1 DUP3 ADD DUP4 SSTORE SWAP2 SWAP1 SWAP2 MSTORE PUSH32 0xF3F7A9FE364FAAB93B216DA50A3214154F22A0A2B415B23A84C8169E8B636EE3 ADD SSTORE JUMP JUMPDEST PUSH2 0x1A98 JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1A98 JUMPI PUSH2 0x1A98 DUP4 DUP3 PUSH2 0x1C12 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1AAF JUMPI PUSH2 0xA48 DUP2 PUSH2 0x1CAF JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xA48 JUMPI PUSH2 0xA48 DUP3 DUP3 PUSH2 0x1D5E JUMP JUMPDEST PUSH2 0x1ADC DUP4 DUP4 PUSH2 0x1DA2 JUMP JUMPDEST PUSH2 0x1AE9 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x1B05 JUMP JUMPDEST PUSH2 0xA48 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x2450 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0x1C07 JUMPI PUSH1 0x40 MLOAD PUSH4 0xA85BD01 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND SWAP1 PUSH4 0x150B7A02 SWAP1 PUSH2 0x1B49 SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x23BC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B63 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1B93 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0x1B90 SWAP2 DUP2 ADD SWAP1 PUSH2 0x224D JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1BED JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1BC1 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 0x1BC6 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0x1BE5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7F4 SWAP1 PUSH2 0x2450 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x16BB JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x1C1F DUP5 PUSH2 0x108E JUMP JUMPDEST PUSH2 0x1C29 SWAP2 SWAP1 PUSH2 0x2573 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 SWAP2 POP DUP1 DUP3 EQ PUSH2 0x1C7C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 SLOAD DUP5 DUP5 MSTORE DUP2 DUP5 KECCAK256 DUP2 SWAP1 SSTORE DUP4 MSTORE PUSH1 0x7 SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST POP PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x7 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 DUP5 SWAP1 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP5 AND DUP4 MSTORE PUSH1 0x6 DUP2 MSTORE DUP4 DUP4 KECCAK256 SWAP2 DUP4 MSTORE MSTORE SWAP1 DUP2 KECCAK256 SSTORE JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x1CC1 SWAP1 PUSH1 0x1 SWAP1 PUSH2 0x2573 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x9 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x8 DUP1 SLOAD SWAP4 SWAP5 POP SWAP1 SWAP3 DUP5 SWAP1 DUP2 LT PUSH2 0x1CE9 JUMPI PUSH2 0x1CE9 PUSH2 0x2662 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x1D0A JUMPI PUSH2 0x1D0A PUSH2 0x2662 JUMP JUMPDEST PUSH1 0x0 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP1 DUP4 KECCAK256 SWAP1 SWAP2 ADD SWAP3 SWAP1 SWAP3 SSTORE DUP3 DUP2 MSTORE PUSH1 0x9 SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP5 SWAP1 SSTORE DUP6 DUP3 MSTORE DUP2 KECCAK256 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x1D42 JUMPI PUSH2 0x1D42 PUSH2 0x264C JUMP JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D69 DUP4 PUSH2 0x108E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP5 MSTORE DUP3 MSTORE DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE SWAP4 DUP3 MSTORE PUSH1 0x7 SWAP1 MSTORE SWAP2 SWAP1 SWAP2 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1DF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO PUSH2 0x1E5D JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1C PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x7F4 JUMP JUMPDEST PUSH2 0x1E69 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x1E92 SWAP1 DUP5 SWAP1 PUSH2 0x2528 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP4 SWAP3 SWAP1 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP1 DUP3 SWAP1 LOG4 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1EFC SWAP1 PUSH2 0x25B6 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1F1E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1F64 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1F37 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1F64 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1F64 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1F64 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1F49 JUMP JUMPDEST POP PUSH2 0x1F70 SWAP3 SWAP2 POP PUSH2 0x1F74 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1F70 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x1F75 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP5 GT ISZERO PUSH2 0x1FA4 JUMPI PUSH2 0x1FA4 PUSH2 0x2678 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP6 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP3 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x1FCC JUMPI PUSH2 0x1FCC PUSH2 0x2678 JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP1 SWAP4 POP DUP6 DUP2 MSTORE DUP7 DUP7 DUP7 ADD GT ISZERO PUSH2 0x1FE5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 DUP6 PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP8 DUP4 ADD ADD MSTORE POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2016 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x2016 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x203D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13E1 DUP3 PUSH2 0x1FFF JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2059 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2062 DUP4 PUSH2 0x1FFF JUMP JUMPDEST SWAP2 POP PUSH2 0x2070 PUSH1 0x20 DUP5 ADD PUSH2 0x1FFF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x208E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2097 DUP5 PUSH2 0x1FFF JUMP JUMPDEST SWAP3 POP PUSH2 0x20A5 PUSH1 0x20 DUP6 ADD PUSH2 0x1FFF JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x20CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x20D4 DUP6 PUSH2 0x1FFF JUMP JUMPDEST SWAP4 POP PUSH2 0x20E2 PUSH1 0x20 DUP7 ADD PUSH2 0x1FFF JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2105 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 ADD PUSH1 0x1F DUP2 ADD DUP8 SGT PUSH2 0x2116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2125 DUP8 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1F89 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 0x2144 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x214D DUP4 PUSH2 0x1FFF JUMP JUMPDEST SWAP2 POP PUSH2 0x2070 PUSH1 0x20 DUP5 ADD PUSH2 0x201B JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x216E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2177 DUP4 PUSH2 0x1FFF JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC80 DUP1 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x21A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x40 MLOAD DUP2 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x21CA JUMPI PUSH2 0x21CA PUSH2 0x2678 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP1 DUP5 DUP4 DUP2 ADD DUP8 LT ISZERO PUSH2 0x21DE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP4 POP JUMPDEST PUSH1 0x64 DUP5 LT ISZERO PUSH2 0x220A JUMPI PUSH2 0x21F5 DUP2 PUSH2 0x1FFF JUMP JUMPDEST DUP3 MSTORE PUSH1 0x1 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x20 SWAP2 DUP3 ADD SWAP2 ADD PUSH2 0x21E3 JUMP JUMPDEST POP SWAP1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2227 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x13E1 DUP3 PUSH2 0x201B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2242 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x13E1 DUP2 PUSH2 0x268E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x225F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x13E1 DUP2 PUSH2 0x268E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x227C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2293 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x22A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x16BB DUP5 DUP3 CALLDATALOAD PUSH1 0x20 DUP5 ADD PUSH2 0x1F89 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x22E4 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x258A JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 MLOAD PUSH1 0x20 PUSH2 0x230B DUP3 DUP6 DUP4 DUP11 ADD PUSH2 0x258A JUMP JUMPDEST DUP6 MLOAD SWAP2 DUP5 ADD SWAP2 PUSH2 0x231E DUP2 DUP5 DUP5 DUP11 ADD PUSH2 0x258A JUMP JUMPDEST DUP6 SLOAD SWAP3 ADD SWAP2 PUSH1 0x0 SWAP1 PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP1 DUP4 AND DUP1 PUSH2 0x233B JUMPI PUSH1 0x7F DUP4 AND SWAP3 POP JUMPDEST DUP6 DUP4 LT DUP2 EQ ISZERO PUSH2 0x2359 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP6 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 DUP6 REVERT JUMPDEST DUP1 DUP1 ISZERO PUSH2 0x236D JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x237E JUMPI PUSH2 0x23AB JUMP JUMPDEST PUSH1 0xFF NOT DUP6 AND DUP9 MSTORE DUP4 DUP9 ADD SWAP6 POP PUSH2 0x23AB JUMP JUMPDEST PUSH1 0x0 DUP12 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x23A3 JUMPI DUP2 SLOAD DUP11 DUP3 ADD MSTORE SWAP1 DUP5 ADD SWAP1 DUP9 ADD PUSH2 0x238A JUMP JUMPDEST POP POP DUP4 DUP9 ADD SWAP6 POP JUMPDEST POP SWAP4 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0x23EF SWAP1 DUP4 ADD DUP5 PUSH2 0x22CC JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP3 MLOAD DUP3 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP2 SWAP1 DUP5 DUP3 ADD SWAP1 PUSH1 0x40 DUP6 ADD SWAP1 DUP5 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2431 JUMPI DUP4 MLOAD DUP4 MSTORE SWAP3 DUP5 ADD SWAP3 SWAP2 DUP5 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x2415 JUMP JUMPDEST POP SWAP1 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x13E1 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x22CC JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP2 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x253B JUMPI PUSH2 0x253B PUSH2 0x2620 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x254F JUMPI PUSH2 0x254F PUSH2 0x2636 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 NOT DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x256E JUMPI PUSH2 0x256E PUSH2 0x2620 JUMP JUMPDEST POP MUL SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x2585 JUMPI PUSH2 0x2585 PUSH2 0x2620 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x25A5 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x258D JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xCE5 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x25CA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x25EB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x2605 JUMPI PUSH2 0x2605 PUSH2 0x2620 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x261B JUMPI PUSH2 0x261B PUSH2 0x2636 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xBDE JUMPI PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF 0x4A DUP14 SIGNEXTEND 0xEF SIGNEXTEND EXTCODESIZE 0xD6 EXTCODEHASH 0xBA 0xB5 LOG1 RETURNDATACOPY SLOAD 0xF6 SGT 0x29 PUSH12 0x23C4CA1DA14B16851686E102 0xEE NUMBER PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "162:4091:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:290:5;;;;;;;;;;-1:-1:-1;910:290:5;;;;;:::i;:::-;;:::i;:::-;;;8637:14:13;;8630:22;8612:41;;8600:2;8585:18;910:290:5;;;;;;;;3366:77:0;;;;;;;;;;-1:-1:-1;3366:77:0;;;;;:::i;:::-;;:::i;:::-;;2614:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4247:295::-;;;;;;;;;;-1:-1:-1;4247:295:2;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7298:32:13;;;7280:51;;7268:2;7253:18;4247:295:2;7134:203:13;3785:401:2;;;;;;;;;;-1:-1:-1;3785:401:2;;;;;:::i;:::-;;:::i;320:32:0:-;;;;;;;;;;;;;;;;;;;16241:25:13;;;16229:2;16214:18;320:32:0;16095:177:13;1681:111:5;;;;;;;;;;-1:-1:-1;1768:10:5;:17;1681:111;;439:33:0;;;;;;;;;;;;;;;;5261:364:2;;;;;;;;;;-1:-1:-1;5261:364:2;;;;;:::i;:::-;;:::i;358:39:0:-;;;;;;;;;;;;;;;;1279:331:5;;;;;;;;;;-1:-1:-1;1279:331:5;;;;;:::i;:::-;;:::i;559:46:0:-;;;;;;;;;;-1:-1:-1;559:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;3552:104;;;;;;;;;;-1:-1:-1;3552:104:0;;;;;:::i;:::-;;:::i;4064:187::-;;;:::i;968:785::-;;;;;;:::i;:::-;;:::i;5691:179:2:-;;;;;;;;;;-1:-1:-1;5691:179:2;;;;;:::i;:::-;;:::i;1759:379:0:-;;;;;;;;;;-1:-1:-1;1759:379:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2786:84::-;;;;;;;;;;-1:-1:-1;2786:84:0;;;;;:::i;:::-;;:::i;3449:97::-;;;;;;;;;;-1:-1:-1;3449:97:0;;;;;:::i;:::-;;:::i;1864:308:5:-;;;;;;;;;;-1:-1:-1;1864:308:5;;;;;:::i;:::-;;:::i;3769:178:0:-;;;;;;;;;;-1:-1:-1;3769:178:0;;;;;:::i;:::-;;:::i;3106:102::-;;;;;;;;;;-1:-1:-1;3106:102:0;;;;;:::i;:::-;;:::i;478:26::-;;;;;;;;;;-1:-1:-1;478:26:0;;;;;;;;2239:313:2;;;;;;;;;;-1:-1:-1;2239:313:2;;;;;:::i;:::-;;:::i;250:21:0:-;;;;;;;;;;;;;:::i;1899:283:2:-;;;;;;;;;;-1:-1:-1;1899:283:2;;;;;:::i;:::-;;:::i;1627:92:1:-;;;;;;;;;;;;;:::i;2980:120:0:-;;;;;;;;;;-1:-1:-1;2980:120:0;;;;;:::i;:::-;;:::i;995:85:1:-;;;;;;;;;;-1:-1:-1;1067:6:1;;-1:-1:-1;;;;;1067:6:1;995:85;;2876:98:0;;;;;;;;;;-1:-1:-1;2876:98:0;;;;;:::i;:::-;;:::i;2776:102:2:-;;;;;;;;;;;;;:::i;4609:318::-;;;;;;;;;;-1:-1:-1;4609:318:2;;;;;:::i;:::-;;:::i;3662:101:0:-;;;;;;;;;;-1:-1:-1;3662:101:0;;;;;:::i;:::-;;:::i;5936:354:2:-;;;;;;;;;;-1:-1:-1;5936:354:2;;;;;:::i;:::-;;:::i;277:37:0:-;;;;;;;;;;;;;:::i;2144:619::-;;;;;;;;;;-1:-1:-1;2144:619:0;;;;;:::i;:::-;;:::i;403:30::-;;;;;;;;;;;;;;;;510:43;;;;;;;;;;-1:-1:-1;510:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;3214:146;;;;;;;;;;-1:-1:-1;3214:146:0;;;;;:::i;:::-;;:::i;4993:206:2:-;;;;;;;;;;-1:-1:-1;4993:206:2;;;;;:::i;:::-;-1:-1:-1;;;;;5157:25:2;;;5130:4;5157:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4993:206;3953:105:0;;;;;;;;;;-1:-1:-1;3953:105:0;;;;;:::i;:::-;;:::i;1868:223:1:-;;;;;;;;;;-1:-1:-1;1868:223:1;;;;;:::i;:::-;;:::i;910:290:5:-;1052:4;-1:-1:-1;;;;;;1091:50:5;;-1:-1:-1;;;1091:50:5;;:102;;;1157:36;1181:11;1157:23;:36::i;:::-;1072:121;910:290;-1:-1:-1;;910:290:5:o;3366:77:0:-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;;;;;;;;;3421:6:0::1;:15:::0;;-1:-1:-1;;3421:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;3366:77::o;2614:98:2:-;2668:13;2700:5;2693:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2614:98;:::o;4247:295::-;4363:7;7884:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7884:16:2;4386:107;;;;-1:-1:-1;;;4386:107:2;;13464:2:13;4386:107:2;;;13446:21:13;13503:2;13483:18;;;13476:30;13542:34;13522:18;;;13515:62;-1:-1:-1;;;13593:18:13;;;13586:42;13645:19;;4386:107:2;13262:408:13;4386:107:2;-1:-1:-1;4511:24:2;;;;:15;:24;;;;;;-1:-1:-1;;;;;4511:24:2;;4247:295::o;3785:401::-;3865:13;3881:23;3896:7;3881:14;:23::i;:::-;3865:39;;3928:5;-1:-1:-1;;;;;3922:11:2;:2;-1:-1:-1;;;;;3922:11:2;;;3914:57;;;;-1:-1:-1;;;3914:57:2;;15064:2:13;3914:57:2;;;15046:21:13;15103:2;15083:18;;;15076:30;15142:34;15122:18;;;15115:62;-1:-1:-1;;;15193:18:13;;;15186:31;15234:19;;3914:57:2;14862:397:13;3914:57:2;666:10:9;-1:-1:-1;;;;;4003:21:2;;;;:62;;-1:-1:-1;4028:37:2;4045:5;666:10:9;4993:206:2;:::i;4028:37::-;3982:165;;;;-1:-1:-1;;;3982:165:2;;11857:2:13;3982:165:2;;;11839:21:13;11896:2;11876:18;;;11869:30;11935:34;11915:18;;;11908:62;12006:26;11986:18;;;11979:54;12050:19;;3982:165:2;11655:420:13;3982:165:2;4158:21;4167:2;4171:7;4158:8;:21::i;:::-;3855:331;3785:401;;:::o;5261:364::-;5463:41;666:10:9;5496:7:2;5463:18;:41::i;:::-;5442:137;;;;-1:-1:-1;;;5442:137:2;;;;;;;:::i;:::-;5590:28;5600:4;5606:2;5610:7;5590:9;:28::i;1279:331:5:-;1416:7;1468:23;1485:5;1468:16;:23::i;:::-;1460:5;:31;1439:121;;;;-1:-1:-1;;;1439:121:5;;9090:2:13;1439:121:5;;;9072:21:13;9129:2;9109:18;;;9102:30;9168:34;9148:18;;;9141:62;-1:-1:-1;;;9219:18:13;;;9212:41;9270:19;;1439:121:5;8888:407:13;1439:121:5;-1:-1:-1;;;;;;1577:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1279:331::o;3552:104:0:-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;3623:18:0::1;3644:5;3623:18:::0;;;:11:::1;:18;::::0;;;;:26;;-1:-1:-1;;3623:26:0::1;::::0;;3552:104::o;4064:187::-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;4138:80:0::1;::::0;4120:12:::1;::::0;4146:10:::1;::::0;4183:21:::1;::::0;4120:12;4138:80;4120:12;4138:80;4183:21;4146:10;4138:80:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4119:99;;;4236:7;4228:16;;;::::0;::::1;;4109:142;4064:187::o:0;968:785::-;1041:14;1058:13;1768:10:5;:17;;1681:111;1058:13:0;1090:6;;1041:30;;-1:-1:-1;1090:6:0;;1089:7;1081:16;;;;;;1129:1;1115:11;:15;1107:24;;;;;;1164:13;;1149:11;:28;;1141:37;;;;;;1220:9;;1196:20;1205:11;1196:6;:20;:::i;:::-;:33;;1188:42;;;;;;1067:6:1;;-1:-1:-1;;;;;1067:6:1;1245:10:0;:21;1241:402;;1298:10;1286:23;;;;:11;:23;;;;;;;;:31;;:23;:31;1282:351;;1356:10;1341:26;;;;:14;:26;;;;;;;;:34;;:26;:34;1337:282;;1464:11;1457:4;;:18;;;;:::i;:::-;1444:9;:31;;1436:40;;;;;;1337:282;;;1588:11;1574;;:25;;;;:::i;:::-;1561:9;:38;;1553:47;;;;;;1670:1;1653:94;1678:11;1673:1;:16;1653:94;;1710:26;1720:3;1725:10;1734:1;1725:6;:10;:::i;:::-;1710:9;:26::i;:::-;1691:3;;;;:::i;:::-;;;;1653:94;;;;1031:722;968:785;;:::o;5691:179:2:-;5824:39;5841:4;5847:2;5851:7;5824:39;;;;;;;;;;;;:16;:39::i;1759:379:0:-;1843:16;1875:23;1901:17;1911:6;1901:9;:17::i;:::-;1875:43;;1928:25;1970:15;1956:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1956:30:0;;1928:58;;2001:9;1996:111;2016:15;2012:1;:19;1996:111;;;2066:30;2086:6;2094:1;2066:19;:30::i;:::-;2052:8;2061:1;2052:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;2033:3;;;;:::i;:::-;;;;1996:111;;;-1:-1:-1;2123:8:0;1759:379;-1:-1:-1;;;1759:379:0:o;2786:84::-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;2848:4:0::1;:15:::0;2786:84::o;3449:97::-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;3514:18:0::1;;::::0;;;:11:::1;:18;::::0;;;;:25;;-1:-1:-1;;3514:25:0::1;3535:4;3514:25;::::0;;3449:97::o;1864:308:5:-;1979:7;2031:30;1768:10;:17;;1681:111;2031:30;2023:5;:38;2002:129;;;;-1:-1:-1;;;2002:129:5;;15884:2:13;2002:129:5;;;15866:21:13;15923:2;15903:18;;;15896:30;15962:34;15942:18;;;15935:62;-1:-1:-1;;;16013:18:13;;;16006:42;16065:19;;2002:129:5;15682:408:13;2002:129:5;2148:10;2159:5;2148:17;;;;;;;;:::i;:::-;;;;;;;;;2141:24;;1864:308;;;:::o;3769:178:0:-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;3857:9:0::1;3852:89;3876:1;3872;:5;3852:89;;;3926:4;3898:14;:25;3913:6;3920:1;3913:9;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;3898:25:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;3898:25:0;:32;;-1:-1:-1;;3898:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;3879:3;::::1;::::0;::::1;:::i;:::-;;;;3852:89;;;;3769:178:::0;:::o;3106:102::-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;3180:21:0;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;2239:313:2:-:0;2351:7;2390:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2390:16:2;2437:19;2416:107;;;;-1:-1:-1;;;2416:107:2;;12693:2:13;2416:107:2;;;12675:21:13;12732:2;12712:18;;;12705:30;12771:34;12751:18;;;12744:62;-1:-1:-1;;;12822:18:13;;;12815:39;12871:19;;2416:107:2;12491:405:13;250:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1899:283:2:-;2011:7;-1:-1:-1;;;;;2055:19:2;;2034:108;;;;-1:-1:-1;;;2034:108:2;;12282:2:13;2034:108:2;;;12264:21:13;12321:2;12301:18;;;12294:30;12360:34;12340:18;;;12333:62;-1:-1:-1;;;12411:18:13;;;12404:40;12461:19;;2034:108:2;12080:406:13;2034:108:2;-1:-1:-1;;;;;;2159:16:2;;;;;:9;:16;;;;;;;1899:283::o;1627:92:1:-;1067:6;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;1691:21:::1;1709:1;1691:9;:21::i;:::-;1627:92::o:0;2980:120:0:-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;3060:13:0::1;:33:::0;2980:120::o;2876:98::-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;2945:11:0::1;:22:::0;2876:98::o;2776:102:2:-;2832:13;2864:7;2857:14;;;;;:::i;4609:318::-;-1:-1:-1;;;;;4739:24:2;;666:10:9;4739:24:2;;4731:62;;;;-1:-1:-1;;;4731:62:2;;11090:2:13;4731:62:2;;;11072:21:13;11129:2;11109:18;;;11102:30;11168:27;11148:18;;;11141:55;11213:18;;4731:62:2;10888:349:13;4731:62:2;666:10:9;4804:32:2;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4804:42:2;;;;;;;;;;;;:53;;-1:-1:-1;;4804:53:2;;;;;;;;;;4872:48;;8612:41:13;;;4804:42:2;;666:10:9;4872:48:2;;8585:18:13;4872:48:2;;;;;;;4609:318;;:::o;3662:101:0:-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;3728:21:0::1;;::::0;;;:14:::1;:21;::::0;;;;:28;;-1:-1:-1;;3728:28:0::1;3752:4;3728:28;::::0;;3662:101::o;5936:354:2:-;6118:41;666:10:9;6151:7:2;6118:18;:41::i;:::-;6097:137;;;;-1:-1:-1;;;6097:137:2;;;;;;;:::i;:::-;6244:39;6258:4;6264:2;6268:7;6277:5;6244:13;:39::i;277:37:0:-;;;;;;;:::i;2144:619::-;7861:4:2;7884:16;;;:7;:16;;;;;;2257:13:0;;-1:-1:-1;;;;;7884:16:2;2286:110:0;;;;-1:-1:-1;;;2286:110:0;;14648:2:13;2286:110:0;;;14630:21:13;14687:2;14667:18;;;14660:30;14726:34;14706:18;;;14699:62;-1:-1:-1;;;14777:18:13;;;14770:45;14832:19;;2286:110:0;14446:411:13;2286:110:0;2407:28;2438:10;:8;:10::i;:::-;2407:41;;2508:1;2483:14;2477:28;:32;:279;;;;;;;;;;;;;;;;;2598:14;2638:18;:7;:16;:18::i;:::-;2682:13;2556:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2477:279;2458:298;2144:619;-1:-1:-1;;;2144:619:0:o;3214:146::-;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;3320:33:0;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;3953:105::-:0;1067:6:1;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;4022:21:0::1;4046:5;4022:21:::0;;;:14:::1;:21;::::0;;;;:29;;-1:-1:-1;;4022:29:0::1;::::0;;3953:105::o;1868:223:1:-;1067:6;;-1:-1:-1;;;;;1067:6:1;666:10:9;1207:23:1;1199:68;;;;-1:-1:-1;;;1199:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;1969:22:1;::::1;1948:107;;;::::0;-1:-1:-1;;;1948:107:1;;9921:2:13;1948:107:1::1;::::0;::::1;9903:21:13::0;9960:2;9940:18;;;9933:30;9999:34;9979:18;;;9972:62;-1:-1:-1;;;10050:18:13;;;10043:36;10096:19;;1948:107:1::1;9719:402:13::0;1948:107:1::1;2065:19;2075:8;2065:9;:19::i;718:377:8:-:0;1034:20;1080:8;;;718:377::o;1496:344:2:-;1638:4;-1:-1:-1;;;;;;1677:40:2;;-1:-1:-1;;;1677:40:2;;:104;;-1:-1:-1;;;;;;;1733:48:2;;-1:-1:-1;;;1733:48:2;1677:104;:156;;;-1:-1:-1;;;;;;;;;;915:40:11;;;1797:36:2;763:199:11;11775:171:2;11849:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11849:29:2;-1:-1:-1;;;;;11849:29:2;;;;;;;;:24;;11902:23;11849:24;11902:14;:23::i;:::-;-1:-1:-1;;;;;11893:46:2;;;;;;;;;;;11775:171;;:::o;8079:438::-;8204:4;7884:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7884:16:2;8224:107;;;;-1:-1:-1;;;8224:107:2;;11444:2:13;8224:107:2;;;11426:21:13;11483:2;11463:18;;;11456:30;11522:34;11502:18;;;11495:62;-1:-1:-1;;;11573:18:13;;;11566:42;11625:19;;8224:107:2;11242:408:13;8224:107:2;8341:13;8357:23;8372:7;8357:14;:23::i;:::-;8341:39;;8409:5;-1:-1:-1;;;;;8398:16:2;:7;-1:-1:-1;;;;;8398:16:2;;:63;;;;8454:7;-1:-1:-1;;;;;8430:31:2;:20;8442:7;8430:11;:20::i;:::-;-1:-1:-1;;;;;8430:31:2;;8398:63;:111;;;-1:-1:-1;;;;;;5157:25:2;;;5130:4;5157:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8477:32;8390:120;8079:438;-1:-1:-1;;;;8079:438:2:o;11070:594::-;11237:4;-1:-1:-1;;;;;11210:31:2;:23;11225:7;11210:14;:23::i;:::-;-1:-1:-1;;;;;11210:31:2;;11189:119;;;;-1:-1:-1;;;11189:119:2;;14238:2:13;11189:119:2;;;14220:21:13;14277:2;14257:18;;;14250:30;14316:34;14296:18;;;14289:62;-1:-1:-1;;;14367:18:13;;;14360:39;14416:19;;11189:119:2;14036:405:13;11189:119:2;-1:-1:-1;;;;;11326:16:2;;11318:65;;;;-1:-1:-1;;;11318:65:2;;10685:2:13;11318:65:2;;;10667:21:13;10724:2;10704:18;;;10697:30;10763:34;10743:18;;;10736:62;-1:-1:-1;;;10814:18:13;;;10807:34;10858:19;;11318:65:2;10483:400:13;11318:65:2;11394:39;11415:4;11421:2;11425:7;11394:20;:39::i;:::-;11495:29;11512:1;11516:7;11495:8;:29::i;:::-;-1:-1:-1;;;;;11535:15:2;;;;;;:9;:15;;;;;:20;;11554:1;;11535:15;:20;;11554:1;;11535:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11565:13:2;;;;;;:9;:13;;;;;:18;;11582:1;;11565:13;:18;;11582:1;;11565:18;:::i;:::-;;;;-1:-1:-1;;11593:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11593:21:2;-1:-1:-1;;;;;11593:21:2;;;;;;;;;11630:27;;11593:16;;11630:27;;;;;;;11070:594;;;:::o;8847:108::-;8922:26;8932:2;8936:7;8922:26;;;;;;;;;;;;:9;:26::i;2097:169:1:-;2171:6;;;-1:-1:-1;;;;;2187:17:1;;;-1:-1:-1;;;;;;2187:17:1;;;;;;;2219:40;;2171:6;;;2187:17;2171:6;;2219:40;;2152:16;;2219:40;2142:124;2097:169;:::o;7152:341:2:-;7303:28;7313:4;7319:2;7323:7;7303:9;:28::i;:::-;7362:48;7385:4;7391:2;7395:7;7404:5;7362:22;:48::i;:::-;7341:145;;;;-1:-1:-1;;;7341:145:2;;;;;;;:::i;842:106:0:-;902:13;934:7;927:14;;;;;:::i;275:703:10:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:10;;;;;;;;;;;;-1:-1:-1;;;574:10:10;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:10;;-1:-1:-1;720:2:10;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:10;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:10;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:10;;;;;;;;-1:-1:-1;919:11:10;928:2;919:11;;:::i;:::-;;;791:150;;2768:572:5;-1:-1:-1;;;;;2967:18:5;;2963:183;;3001:40;3033:7;4149:10;:17;;4122:24;;;;:15;:24;;;;;:44;;;4176:24;;;;;;;;;;;;4046:161;3001:40;2963:183;;;3070:2;-1:-1:-1;;;;;3062:10:5;:4;-1:-1:-1;;;;;3062:10:5;;3058:88;;3088:47;3121:4;3127:7;3088:32;:47::i;:::-;-1:-1:-1;;;;;3159:16:5;;3155:179;;3191:45;3228:7;3191:36;:45::i;3155:179::-;3263:4;-1:-1:-1;;;;;3257:10:5;:2;-1:-1:-1;;;;;3257:10:5;;3253:81;;3283:40;3311:2;3315:7;3283:27;:40::i;9176:311:2:-;9301:18;9307:2;9311:7;9301:5;:18::i;:::-;9350:54;9381:1;9385:2;9389:7;9398:5;9350:22;:54::i;:::-;9329:151;;;;-1:-1:-1;;;9329:151:2;;;;;;;:::i;12499:950::-;12649:4;-1:-1:-1;;;;;12669:13:2;;1034:20:8;1080:8;12665:778:2;;12720:170;;-1:-1:-1;;;12720:170:2;;-1:-1:-1;;;;;12720:36:2;;;;;:170;;666:10:9;;12812:4:2;;12838:7;;12867:5;;12720:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12720:170:2;;;;;;;;-1:-1:-1;;12720:170:2;;;;;;;;;;;;:::i;:::-;;;12700:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13069:13:2;;13065:312;;13111:106;;-1:-1:-1;;;13111:106:2;;;;;;;:::i;13065:312::-;13329:6;13323:13;13314:6;13310:2;13306:15;13299:38;12700:691;-1:-1:-1;;;;;;12952:51:2;-1:-1:-1;;;12952:51:2;;-1:-1:-1;12945:58:2;;12665:778;-1:-1:-1;13428:4:2;12499:950;;;;;;:::o;4824:982:5:-;5098:22;5148:1;5123:22;5140:4;5123:16;:22::i;:::-;:26;;;;:::i;:::-;5159:18;5180:26;;;:17;:26;;;;;;5098:51;;-1:-1:-1;5310:28:5;;;5306:323;;-1:-1:-1;;;;;5376:18:5;;5354:19;5376:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5425:30;;;;;;:44;;;5541:30;;:17;:30;;;;;:43;;;5306:323;-1:-1:-1;5722:26:5;;;;:17;:26;;;;;;;;5715:33;;;-1:-1:-1;;;;;5765:18:5;;;;;:12;:18;;;;;:34;;;;;;;5758:41;4824:982::o;6094:1061::-;6368:10;:17;6343:22;;6368:21;;6388:1;;6368:21;:::i;:::-;6399:18;6420:24;;;:15;:24;;;;;;6788:10;:26;;6343:46;;-1:-1:-1;6420:24:5;;6343:46;;6788:26;;;;;;:::i;:::-;;;;;;;;;6766:48;;6850:11;6825:10;6836;6825:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6929:28;;;:15;:28;;;;;;;:41;;;7098:24;;;;;7091:31;7132:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6165:990;;;6094:1061;:::o;3634:217::-;3718:14;3735:20;3752:2;3735:16;:20::i;:::-;-1:-1:-1;;;;;3765:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3809:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3634:217:5:o;9809:372:2:-;-1:-1:-1;;;;;9888:16:2;;9880:61;;;;-1:-1:-1;;;9880:61:2;;13103:2:13;9880:61:2;;;13085:21:13;;;13122:18;;;13115:30;13181:34;13161:18;;;13154:62;13233:18;;9880:61:2;12901:356:13;9880:61:2;7861:4;7884:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7884:16:2;:30;9951:58;;;;-1:-1:-1;;;9951:58:2;;10328:2:13;9951:58:2;;;10310:21:13;10367:2;10347:18;;;10340:30;10406;10386:18;;;10379:58;10454:18;;9951:58:2;10126:352:13;9951:58:2;10020:45;10049:1;10053:2;10057:7;10020:20;:45::i;:::-;-1:-1:-1;;;;;10076:13:2;;;;;;:9;:13;;;;;:18;;10093:1;;10076:13;:18;;10093:1;;10076:18;:::i;:::-;;;;-1:-1:-1;;10104:16:2;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10104:21:2;-1:-1:-1;;;;;10104:21:2;;;;;;;;10141:33;;10104:16;;;10141:33;;10104:16;;10141:33;9809:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:13;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:13;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:13;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:13;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:13:o;2971:825::-;3055:6;3086:4;3131:2;3119:9;3110:7;3106:23;3102:32;3099:52;;;3147:1;3144;3137:12;3099:52;3196:7;3189:4;3178:9;3174:20;3170:34;3160:62;;3218:1;3215;3208:12;3160:62;3251:2;3245:9;3293:2;3285:6;3281:15;3362:6;3350:10;3347:22;3326:18;3314:10;3311:34;3308:62;3305:88;;;3373:18;;:::i;:::-;3409:2;3402:22;3444:6;3470:9;3494:18;;;3491:31;-1:-1:-1;3488:51:13;;;3535:1;3532;3525:12;3488:51;3557:1;3548:10;;3567:198;3581:4;3578:1;3575:11;3567:198;;;3640:23;3659:3;3640:23;:::i;:::-;3628:36;;3601:1;3594:9;;;;;3687:4;3711:12;;;;3743;3567:198;;;-1:-1:-1;3784:6:13;;2971:825;-1:-1:-1;;;;;2971:825:13:o;3801:180::-;3857:6;3910:2;3898:9;3889:7;3885:23;3881:32;3878:52;;;3926:1;3923;3916:12;3878:52;3949:26;3965:9;3949:26;:::i;3986:245::-;4044:6;4097:2;4085:9;4076:7;4072:23;4068:32;4065:52;;;4113:1;4110;4103:12;4065:52;4152:9;4139:23;4171:30;4195:5;4171:30;:::i;4236:249::-;4305:6;4358:2;4346:9;4337:7;4333:23;4329:32;4326:52;;;4374:1;4371;4364:12;4326:52;4406:9;4400:16;4425:30;4449:5;4425:30;:::i;4490:450::-;4559:6;4612:2;4600:9;4591:7;4587:23;4583:32;4580:52;;;4628:1;4625;4618:12;4580:52;4668:9;4655:23;4701:18;4693:6;4690:30;4687:50;;;4733:1;4730;4723:12;4687:50;4756:22;;4809:4;4801:13;;4797:27;-1:-1:-1;4787:55:13;;4838:1;4835;4828:12;4787:55;4861:73;4926:7;4921:2;4908:16;4903:2;4899;4895:11;4861:73;:::i;4945:180::-;5004:6;5057:2;5045:9;5036:7;5032:23;5028:32;5025:52;;;5073:1;5070;5063:12;5025:52;-1:-1:-1;5096:23:13;;4945:180;-1:-1:-1;4945:180:13:o;5130:257::-;5171:3;5209:5;5203:12;5236:6;5231:3;5224:19;5252:63;5308:6;5301:4;5296:3;5292:14;5285:4;5278:5;5274:16;5252:63;:::i;:::-;5369:2;5348:15;-1:-1:-1;;5344:29:13;5335:39;;;;5376:4;5331:50;;5130:257;-1:-1:-1;;5130:257:13:o;5392:1527::-;5616:3;5654:6;5648:13;5680:4;5693:51;5737:6;5732:3;5727:2;5719:6;5715:15;5693:51;:::i;:::-;5807:13;;5766:16;;;;5829:55;5807:13;5766:16;5851:15;;;5829:55;:::i;:::-;5973:13;;5906:20;;;5946:1;;6033;6055:18;;;;6108;;;;6135:93;;6213:4;6203:8;6199:19;6187:31;;6135:93;6276:2;6266:8;6263:16;6243:18;6240:40;6237:167;;;-1:-1:-1;;;6303:33:13;;6359:4;6356:1;6349:15;6389:4;6310:3;6377:17;6237:167;6420:18;6447:110;;;;6571:1;6566:328;;;;6413:481;;6447:110;-1:-1:-1;;6482:24:13;;6468:39;;6527:20;;;;-1:-1:-1;6447:110:13;;6566:328;16350:1;16343:14;;;16387:4;16374:18;;6661:1;6675:169;6689:8;6686:1;6683:15;6675:169;;;6771:14;;6756:13;;;6749:37;6814:16;;;;6706:10;;6675:169;;;6679:3;;6875:8;6868:5;6864:20;6857:27;;6413:481;-1:-1:-1;6910:3:13;;5392:1527;-1:-1:-1;;;;;;;;;;;5392:1527:13:o;7342:488::-;-1:-1:-1;;;;;7611:15:13;;;7593:34;;7663:15;;7658:2;7643:18;;7636:43;7710:2;7695:18;;7688:34;;;7758:3;7753:2;7738:18;;7731:31;;;7536:4;;7779:45;;7804:19;;7796:6;7779:45;:::i;:::-;7771:53;7342:488;-1:-1:-1;;;;;;7342:488:13:o;7835:632::-;8006:2;8058:21;;;8128:13;;8031:18;;;8150:22;;;7977:4;;8006:2;8229:15;;;;8203:2;8188:18;;;7977:4;8272:169;8286:6;8283:1;8280:13;8272:169;;;8347:13;;8335:26;;8416:15;;;;8381:12;;;;8308:1;8301:9;8272:169;;;-1:-1:-1;8458:3:13;;7835:632;-1:-1:-1;;;;;;7835:632:13:o;8664:219::-;8813:2;8802:9;8795:21;8776:4;8833:44;8873:2;8862:9;8858:18;8850:6;8833:44;:::i;9300:414::-;9502:2;9484:21;;;9541:2;9521:18;;;9514:30;9580:34;9575:2;9560:18;;9553:62;-1:-1:-1;;;9646:2:13;9631:18;;9624:48;9704:3;9689:19;;9300:414::o;13675:356::-;13877:2;13859:21;;;13896:18;;;13889:30;13955:34;13950:2;13935:18;;13928:62;14022:2;14007:18;;13675:356::o;15264:413::-;15466:2;15448:21;;;15505:2;15485:18;;;15478:30;15544:34;15539:2;15524:18;;15517:62;-1:-1:-1;;;15610:2:13;15595:18;;15588:47;15667:3;15652:19;;15264:413::o;16403:128::-;16443:3;16474:1;16470:6;16467:1;16464:13;16461:39;;;16480:18;;:::i;:::-;-1:-1:-1;16516:9:13;;16403:128::o;16536:120::-;16576:1;16602;16592:35;;16607:18;;:::i;:::-;-1:-1:-1;16641:9:13;;16536:120::o;16661:168::-;16701:7;16767:1;16763;16759:6;16755:14;16752:1;16749:21;16744:1;16737:9;16730:17;16726:45;16723:71;;;16774:18;;:::i;:::-;-1:-1:-1;16814:9:13;;16661:168::o;16834:125::-;16874:4;16902:1;16899;16896:8;16893:34;;;16907:18;;:::i;:::-;-1:-1:-1;16944:9:13;;16834:125::o;16964:258::-;17036:1;17046:113;17060:6;17057:1;17054:13;17046:113;;;17136:11;;;17130:18;17117:11;;;17110:39;17082:2;17075:10;17046:113;;;17177:6;17174:1;17171:13;17168:48;;;-1:-1:-1;;17212:1:13;17194:16;;17187:27;16964:258::o;17227:380::-;17306:1;17302:12;;;;17349;;;17370:61;;17424:4;17416:6;17412:17;17402:27;;17370:61;17477:2;17469:6;17466:14;17446:18;17443:38;17440:161;;;17523:10;17518:3;17514:20;17511:1;17504:31;17558:4;17555:1;17548:15;17586:4;17583:1;17576:15;17440:161;;17227:380;;;:::o;17612:135::-;17651:3;-1:-1:-1;;17672:17:13;;17669:43;;;17692:18;;:::i;:::-;-1:-1:-1;17739:1:13;17728:13;;17612:135::o;17752:112::-;17784:1;17810;17800:35;;17815:18;;:::i;:::-;-1:-1:-1;17849:9:13;;17752:112::o;17869:127::-;17930:10;17925:3;17921:20;17918:1;17911:31;17961:4;17958:1;17951:15;17985:4;17982:1;17975:15;18001:127;18062:10;18057:3;18053:20;18050:1;18043:31;18093:4;18090:1;18083:15;18117:4;18114:1;18107:15;18133:127;18194:10;18189:3;18185:20;18182:1;18175:31;18225:4;18222:1;18215:15;18249:4;18246:1;18239:15;18265:127;18326:10;18321:3;18317:20;18314:1;18307:31;18357:4;18354:1;18347:15;18381:4;18378:1;18371:15;18397:127;18458:10;18453:3;18449:20;18446:1;18439:31;18489:4;18486:1;18479:15;18513:4;18510:1;18503:15;18529:131;-1:-1:-1;;;;;;18603:32:13;;18593:43;;18583:71;;18650:1;18647;18640:12"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1989200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"add100PresaleUsers(address[100])": "infinite",
"addPresaleUser(address)": "26817",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2723",
"baseExtension()": "infinite",
"baseURI()": "infinite",
"cost()": "2341",
"getApproved(uint256)": "4805",
"isApprovedForAll(address,address)": "infinite",
"maxMintAmount()": "2385",
"maxSupply()": "2339",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "2420",
"ownerOf(uint256)": "2646",
"pause(bool)": "26738",
"paused()": "2367",
"presaleCost()": "2429",
"presaleWallets(address)": "2588",
"removePresaleUser(address)": "26876",
"removeWhitelistUser(address)": "26834",
"renounceOwnership()": "28162",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"setBaseExtension(string)": "infinite",
"setBaseURI(string)": "infinite",
"setCost(uint256)": "24553",
"setPresaleCost(uint256)": "24575",
"setmaxMintAmount(uint256)": "24531",
"supportsInterface(bytes4)": "infinite",
"symbol()": "infinite",
"tokenByIndex(uint256)": "6848",
"tokenOfOwnerByIndex(address,uint256)": "4976",
"tokenURI(uint256)": "infinite",
"totalSupply()": "2360",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "28466",
"walletOfOwner(address)": "infinite",
"whitelistUser(address)": "26861",
"whitelisted(address)": "2586",
"withdraw()": "infinite"
},
"internal": {
"_baseURI()": "infinite"
}
},
"methodIdentifiers": {
"add100PresaleUsers(address[100])": "546857c7",
"addPresaleUser(address)": "b2f3e85e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"baseExtension()": "c6682862",
"baseURI()": "6c0360eb",
"cost()": "13faede6",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"maxMintAmount()": "239c70ae",
"maxSupply()": "d5abeb01",
"mint(address,uint256)": "40c10f19",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"ownerOf(uint256)": "6352211e",
"pause(bool)": "02329a29",
"paused()": "5c975abb",
"presaleCost()": "2a23d07d",
"presaleWallets(address)": "30b2264e",
"removePresaleUser(address)": "ed931e17",
"removeWhitelistUser(address)": "30cc7ae0",
"renounceOwnership()": "715018a6",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"setBaseExtension(string)": "da3ef23f",
"setBaseURI(string)": "55f804b3",
"setCost(uint256)": "44a0d68a",
"setPresaleCost(uint256)": "8fdcf942",
"setmaxMintAmount(uint256)": "7f00c7a6",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenByIndex(uint256)": "4f6ccce7",
"tokenOfOwnerByIndex(address,uint256)": "2f745c59",
"tokenURI(uint256)": "c87b56dd",
"totalSupply()": "18160ddd",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b",
"walletOfOwner(address)": "438b6300",
"whitelistUser(address)": "4a4c560d",
"whitelisted(address)": "d936547e",
"withdraw()": "3ccfd60b"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "string",
"name": "_symbol",
"type": "string"
},
{
"internalType": "string",
"name": "_initBaseURI",
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address[100]",
"name": "_users",
"type": "address[100]"
}
],
"name": "add100PresaleUsers",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "addPresaleUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"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": [],
"name": "baseExtension",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "baseURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "cost",
"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": "maxMintAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "maxSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_mintAmount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_state",
"type": "bool"
}
],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "presaleCost",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "presaleWallets",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "removePresaleUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "removeWhitelistUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"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": "string",
"name": "_newBaseExtension",
"type": "string"
}
],
"name": "setBaseExtension",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_newBaseURI",
"type": "string"
}
],
"name": "setBaseURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newCost",
"type": "uint256"
}
],
"name": "setCost",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newCost",
"type": "uint256"
}
],
"name": "setPresaleCost",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newmaxMintAmount",
"type": "uint256"
}
],
"name": "setmaxMintAmount",
"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": "index",
"type": "uint256"
}
],
"name": "tokenByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenOfOwnerByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "walletOfOwner",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "whitelistUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "whitelisted",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "withdraw",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "string",
"name": "_symbol",
"type": "string"
},
{
"internalType": "string",
"name": "_initBaseURI",
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address[100]",
"name": "_users",
"type": "address[100]"
}
],
"name": "add100PresaleUsers",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "addPresaleUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"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": [],
"name": "baseExtension",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "baseURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "cost",
"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": "maxMintAmount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "maxSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_mintAmount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bool",
"name": "_state",
"type": "bool"
}
],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "presaleCost",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "presaleWallets",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "removePresaleUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "removeWhitelistUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"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": "string",
"name": "_newBaseExtension",
"type": "string"
}
],
"name": "setBaseExtension",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_newBaseURI",
"type": "string"
}
],
"name": "setBaseURI",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newCost",
"type": "uint256"
}
],
"name": "setCost",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newCost",
"type": "uint256"
}
],
"name": "setPresaleCost",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_newmaxMintAmount",
"type": "uint256"
}
],
"name": "setmaxMintAmount",
"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": "index",
"type": "uint256"
}
],
"name": "tokenByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenOfOwnerByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
}
],
"name": "walletOfOwner",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_user",
"type": "address"
}
],
"name": "whitelistUser",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "whitelisted",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "withdraw",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"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}."
},
"tokenByIndex(uint256)": {
"details": "See {IERC721Enumerable-tokenByIndex}."
},
"tokenOfOwnerByIndex(address,uint256)": {
"details": "See {IERC721Enumerable-tokenOfOwnerByIndex}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"totalSupply()": {
"details": "See {IERC721Enumerable-totalSupply}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/DevPunksNFT.sol": "DevPunksNFT"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/DevPunksNFT.sol": {
"keccak256": "0xe5d3a6f2c0bded3f176bc1bf86bd29d78b0c160d753c5f42b78e6688592363d2",
"license": "MIT",
"urls": [
"bzz-raw://5d95a6213dba9ea432323b953bd9492acebecf2a16ed0fa4623942739ab4945c",
"dweb:/ipfs/QmPoUdC2idRX6KhfW2pW74oabjf9gf67A3u976kyst2vJp"
]
},
"contracts/access/Ownable.sol": {
"keccak256": "0x5c8ae508c9208b232eada2cf40a774371336fad5b9f3a921fdfdaa007bf23c5e",
"license": "MIT",
"urls": [
"bzz-raw://d1b9b62880e9b1c08ddb7c596fb467536564f27bee66034c345f190090823446",
"dweb:/ipfs/QmbSEv5iUqTVVUQyAFzBH6s2Yv3aPrs6dmvo9eH8CR1uac"
]
},
"contracts/token/ERC721/ERC721.sol": {
"keccak256": "0xb076b5cfa0ba4f3689371bc8786ebc1e69ace69cd4a9309bf2a952477b8901ad",
"license": "MIT",
"urls": [
"bzz-raw://72a63a915e2557440ee06079c3404a8099282dfd2f1220e36b5cf357a2b0ca2d",
"dweb:/ipfs/Qma51XR3Fsj7R2VrE64bAuDBNo47p7maFp8ZaEdFepDjxK"
]
},
"contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x1d4293852545da3dd6ebb67b83c70f7cb195a894e21e1fdecfd694af23130c98",
"license": "MIT",
"urls": [
"bzz-raw://d05f238031a2f61f3ae0bba61835264294cdd21044ffdda784b5aae7cbc6b6a3",
"dweb:/ipfs/QmYWYP2dWabgLJDg51scvV3BUdELkwwRxK94jQrZJMrBF6"
]
},
"contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9",
"license": "MIT",
"urls": [
"bzz-raw://0e604bcdcd5e5b2fb299ad09769cde6db19d5aa1929d1b5e939234a0f10d7eb8",
"dweb:/ipfs/Qmd8hXE3GZfBHuWx3RNiYgFW2ci7KvHtib8DiwzJ2dgo9V"
]
},
"contracts/token/ERC721/extensions/ERC721Enumerable.sol": {
"keccak256": "0xc350ba91d214420ce147bf28ad1bbb430f136685966e6b37da3d08e36581e0d6",
"license": "MIT",
"urls": [
"bzz-raw://339f67995b40613cabd635f74a2375ea249c0480b2bec724e03a12b1d8f03270",
"dweb:/ipfs/QmXpTDGYfE89ZVzVRGdN9xhnL4J9fJVpjcAq4LJVBK3PA9"
]
},
"contracts/token/ERC721/extensions/IERC721Enumerable.sol": {
"keccak256": "0xc468a3f8104b1261b7a671f82ae41bbe1df0ec8c60b6926c1338a259755df028",
"license": "MIT",
"urls": [
"bzz-raw://115ca0b1206bded849b20623e25530290a6f1d8ffa5e47650935aca18c294e79",
"dweb:/ipfs/QmYqeNPFeGDKPjgRi9BoFBm4bfgCEyoo96SkKtS1XLezaD"
]
},
"contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0xd32fb7f530a914b1083d10a6bed3a586f2451952fec04fe542bcc670a82f7ba5",
"license": "MIT",
"urls": [
"bzz-raw://af63ab940a34687c45f0ad84960b048fc5f49330c92ccb422db7822a444733b9",
"dweb:/ipfs/QmUShaQEu8HS1GjDnsMJQ8jkZEBrecn6NuDZ3pfjY1gVck"
]
},
"contracts/utils/Address.sol": {
"keccak256": "0xed90359d980ae160f092e585f61fb2f21f6ae02f46c17f695d9edf571d964bc6",
"license": "MIT",
"urls": [
"bzz-raw://c25ef7116c7e843b419602f4213aa263320adfec43e054b9225ba02874aed65b",
"dweb:/ipfs/QmNTKMM8AR594VFvRAg7QMe15cjBxAc7g9LMGLC6KK7gYN"
]
},
"contracts/utils/Context.sol": {
"keccak256": "0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f",
"license": "MIT",
"urls": [
"bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c",
"dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"
]
},
"contracts/utils/Strings.sol": {
"keccak256": "0x2161775355b4c96f4fcb1eee551b9301814ca4ccf06fbd89d69c7f4560013bc4",
"license": "MIT",
"urls": [
"bzz-raw://326b7d20563bdf5a8fb56568a9f829ae4b22f9427af9c48a00cb1688c59fe60a",
"dweb:/ipfs/QmUAF3ZbGmAAPBHQQP4ioKCQPwBdPbUu19NrQBowXKgGUa"
]
},
"contracts/utils/introspection/ERC165.sol": {
"keccak256": "0x93b1ce940e4e905752730be86b74d5f915097747868f7876e1de9af86afa6ad4",
"license": "MIT",
"urls": [
"bzz-raw://8a61ef44a444c0cb14d2c3c93c67290158571f4053a0867d117cfcab7ef39c07",
"dweb:/ipfs/QmNUM5trSZ82B9XzKTyfyrQ2zEMKKr77QydXExk7TA7t4v"
]
},
"contracts/utils/introspection/IERC165.sol": {
"keccak256": "0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4",
"license": "MIT",
"urls": [
"bzz-raw://796ab6e88af7bf0e78def0f059310c903af6a312b565344e0ff524a0f26e81c6",
"dweb:/ipfs/QmcsVgLgzWdor3UnAztUkXKNGcysm1MPneWksF72AvnwBx"
]
}
},
"version": 1
}
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "contracts/access/Ownable.sol";
contract DevPunksNFT is ERC721Enumerable, Ownable {
using Strings for uint256;
string public baseURI;
string public baseExtension = ".json";
uint256 public cost = 0.05 ether;
uint256 public presaleCost = 0.03 ether;
uint256 public maxSupply = 101;
uint256 public maxMintAmount = 20;
bool public paused = false;
mapping(address => bool) public whitelisted;
mapping(address => bool) public presaleWallets;
constructor(
string memory _name,
string memory _symbol,
string memory _initBaseURI
) ERC721(_name, _symbol) {
setBaseURI(_initBaseURI);
mint(msg.sender, 20);
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
// public
function mint(address _to, uint256 _mintAmount) public payable {
uint256 supply = totalSupply();
require(!paused);
require(_mintAmount > 0);
require(_mintAmount <= maxMintAmount);
require(supply + _mintAmount <= maxSupply);
if (msg.sender != owner()) {
if (whitelisted[msg.sender] != true) {
if (presaleWallets[msg.sender] != true) {
//general public
require(msg.value >= cost * _mintAmount);
} else {
//presale
require(msg.value >= presaleCost * _mintAmount);
}
}
}
for (uint256 i = 1; i <= _mintAmount; i++) {
_safeMint(_to, supply + i);
}
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](ownerTokenCount);
for (uint256 i; i < ownerTokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory currentBaseURI = _baseURI();
return
bytes(currentBaseURI).length > 0
? string(
abi.encodePacked(
currentBaseURI,
tokenId.toString(),
baseExtension
)
)
: "";
}
//only owner
function setCost(uint256 _newCost) public onlyOwner {
cost = _newCost;
}
function setPresaleCost(uint256 _newCost) public onlyOwner {
presaleCost = _newCost;
}
function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
maxMintAmount = _newmaxMintAmount;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function setBaseExtension(string memory _newBaseExtension)
public
onlyOwner
{
baseExtension = _newBaseExtension;
}
function pause(bool _state) public onlyOwner {
paused = _state;
}
function whitelistUser(address _user) public onlyOwner {
whitelisted[_user] = true;
}
function removeWhitelistUser(address _user) public onlyOwner {
whitelisted[_user] = false;
}
function addPresaleUser(address _user) public onlyOwner {
presaleWallets[_user] = true;
}
function add100PresaleUsers(address[100] memory _users) public onlyOwner {
for (uint256 i = 0; i < 2; i++) {
presaleWallets[_users[i]] = true;
}
}
function removePresaleUser(address _user) public onlyOwner {
presaleWallets[_user] = false;
}
function withdraw() public payable onlyOwner {
(bool success, ) = payable(msg.sender).call{
value: address(this).balance
}("");
require(success);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner)
public
view
virtual
override
returns (uint256)
{
require(
owner != address(0),
"ERC721: balance query for the zero address"
);
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId)
public
view
virtual
override
returns (address)
{
address owner = _owners[tokenId];
require(
owner != address(0),
"ERC721: owner query for nonexistent token"
);
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory baseURI = _baseURI();
return
bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
virtual
override
returns (address)
{
require(
_exists(tokenId),
"ERC721: approved query for nonexistent token"
);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(
_isApprovedOrOwner(_msgSender(), tokenId),
"ERC721: transfer caller is not owner nor approved"
);
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId)
internal
view
virtual
returns (bool)
{
require(
_exists(tokenId),
"ERC721: operator query for nonexistent token"
);
address owner = ERC721.ownerOf(tokenId);
return (spender == owner ||
getApproved(tokenId) == spender ||
isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @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 of token that is not own"
);
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert(
"ERC721: transfer to non ERC721Receiver implementer"
);
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(IERC165, ERC721)
returns (bool)
{
return
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
public
view
virtual
override
returns (uint256)
{
require(
index < ERC721.balanceOf(owner),
"ERC721Enumerable: owner index out of bounds"
);
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index)
public
view
virtual
override
returns (uint256)
{
require(
index < ERC721Enumerable.totalSupply(),
"ERC721Enumerable: global index out of bounds"
);
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
private
{
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index)
external
view
returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
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`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId)
external
view
returns (address operator);
/**
* @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 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);
/**
* @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;
}
// SPDX-License-Identifier: MIT
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 `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(bool success, ) = recipient.call{value: amount}("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return
functionCallWithValue(
target,
data,
value,
"Address: low-level call with value failed"
);
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(
address(this).balance >= value,
"Address: insufficient balance for call"
);
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(
data
);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data)
internal
view
returns (bytes memory)
{
return
functionStaticCall(
target,
data,
"Address: low-level static call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return
functionDelegateCall(
target,
data,
"Address: low-level delegate call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212200534ec1982bae8699c568fef264310fbddf78e885c48af1acb7cabc12eead87964736f6c63430008070033",
"opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SDIV CALLVALUE 0xEC NOT DUP3 0xBA 0xE8 PUSH10 0x9C568FEF264310FBDDF7 DUP15 DUP9 0x5C BASEFEE 0xAF BYTE 0xCB PUSH29 0xABC12EEAD87964736F6C63430008070033000000000000000000000000 ",
"sourceMap": "93:1913:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212200534ec1982bae8699c568fef264310fbddf78e885c48af1acb7cabc12eead87964736f6c63430008070033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SDIV CALLVALUE 0xEC NOT DUP3 0xBA 0xE8 PUSH10 0x9C568FEF264310FBDDF7 DUP15 DUP9 0x5C BASEFEE 0xAF BYTE 0xCB PUSH29 0xABC12EEAD87964736F6C63430008070033000000000000000000000000 ",
"sourceMap": "93:1913:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "97",
"totalCost": "17297"
},
"internal": {
"toHexString(uint256)": "infinite",
"toHexString(uint256,uint256)": "infinite",
"toString(uint256)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "String operations.",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/utils/Strings.sol": "Strings"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/utils/Strings.sol": {
"keccak256": "0x2161775355b4c96f4fcb1eee551b9301814ca4ccf06fbd89d69c7f4560013bc4",
"license": "MIT",
"urls": [
"bzz-raw://326b7d20563bdf5a8fb56568a9f829ae4b22f9427af9c48a00cb1688c59fe60a",
"dweb:/ipfs/QmUAF3ZbGmAAPBHQQP4ioKCQPwBdPbUu19NrQBowXKgGUa"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length)
internal
pure
returns (string memory)
{
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
{"compiler":{"version":"0.8.7+commit.e28d00a7"},"language":"Solidity","output":{"abi":[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[100]","name":"_users","type":"address[100]"}],"name":"add100PresaleUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addPresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removePresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}],"devdoc":{"kind":"dev","methods":{"approve(address,uint256)":{"details":"See {IERC721-approve}."},"balanceOf(address)":{"details":"See {IERC721-balanceOf}."},"getApproved(uint256)":{"details":"See {IERC721-getApproved}."},"isApprovedForAll(address,address)":{"details":"See {IERC721-isApprovedForAll}."},"name()":{"details":"See {IERC721Metadata-name}."},"owner()":{"details":"Returns the address of the current owner."},"ownerOf(uint256)":{"details":"See {IERC721-ownerOf}."},"renounceOwnership()":{"details":"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."},"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}."},"tokenByIndex(uint256)":{"details":"See {IERC721Enumerable-tokenByIndex}."},"tokenOfOwnerByIndex(address,uint256)":{"details":"See {IERC721Enumerable-tokenOfOwnerByIndex}."},"tokenURI(uint256)":{"details":"See {IERC721Metadata-tokenURI}."},"totalSupply()":{"details":"See {IERC721Enumerable-totalSupply}."},"transferFrom(address,address,uint256)":{"details":"See {IERC721-transferFrom}."},"transferOwnership(address)":{"details":"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."}},"version":1},"userdoc":{"kind":"user","methods":{},"version":1}},"settings":{"compilationTarget":{"contracts/DevPunksNFT.sol":"DevPunksNFT"},"evmVersion":"london","libraries":{},"metadata":{"bytecodeHash":"ipfs"},"optimizer":{"enabled":true,"runs":200},"remappings":[]},"sources":{"contracts/DevPunksNFT.sol":{"keccak256":"0xe5d3a6f2c0bded3f176bc1bf86bd29d78b0c160d753c5f42b78e6688592363d2","license":"MIT","urls":["bzz-raw://5d95a6213dba9ea432323b953bd9492acebecf2a16ed0fa4623942739ab4945c","dweb:/ipfs/QmPoUdC2idRX6KhfW2pW74oabjf9gf67A3u976kyst2vJp"]},"contracts/access/Ownable.sol":{"keccak256":"0x5c8ae508c9208b232eada2cf40a774371336fad5b9f3a921fdfdaa007bf23c5e","license":"MIT","urls":["bzz-raw://d1b9b62880e9b1c08ddb7c596fb467536564f27bee66034c345f190090823446","dweb:/ipfs/QmbSEv5iUqTVVUQyAFzBH6s2Yv3aPrs6dmvo9eH8CR1uac"]},"contracts/token/ERC721/ERC721.sol":{"keccak256":"0xb076b5cfa0ba4f3689371bc8786ebc1e69ace69cd4a9309bf2a952477b8901ad","license":"MIT","urls":["bzz-raw://72a63a915e2557440ee06079c3404a8099282dfd2f1220e36b5cf357a2b0ca2d","dweb:/ipfs/Qma51XR3Fsj7R2VrE64bAuDBNo47p7maFp8ZaEdFepDjxK"]},"contracts/token/ERC721/IERC721.sol":{"keccak256":"0x1d4293852545da3dd6ebb67b83c70f7cb195a894e21e1fdecfd694af23130c98","license":"MIT","urls":["bzz-raw://d05f238031a2f61f3ae0bba61835264294cdd21044ffdda784b5aae7cbc6b6a3","dweb:/ipfs/QmYWYP2dWabgLJDg51scvV3BUdELkwwRxK94jQrZJMrBF6"]},"contracts/token/ERC721/IERC721Receiver.sol":{"keccak256":"0xd9517254724276e2e8de3769183c1f738f445f0095c26fd9b86d3c6687e887b9","license":"MIT","urls":["bzz-raw://0e604bcdcd5e5b2fb299ad09769cde6db19d5aa1929d1b5e939234a0f10d7eb8","dweb:/ipfs/Qmd8hXE3GZfBHuWx3RNiYgFW2ci7KvHtib8DiwzJ2dgo9V"]},"contracts/token/ERC721/extensions/ERC721Enumerable.sol":{"keccak256":"0xc350ba91d214420ce147bf28ad1bbb430f136685966e6b37da3d08e36581e0d6","license":"MIT","urls":["bzz-raw://339f67995b40613cabd635f74a2375ea249c0480b2bec724e03a12b1d8f03270","dweb:/ipfs/QmXpTDGYfE89ZVzVRGdN9xhnL4J9fJVpjcAq4LJVBK3PA9"]},"contracts/token/ERC721/extensions/IERC721Enumerable.sol":{"keccak256":"0xc468a3f8104b1261b7a671f82ae41bbe1df0ec8c60b6926c1338a259755df028","license":"MIT","urls":["bzz-raw://115ca0b1206bded849b20623e25530290a6f1d8ffa5e47650935aca18c294e79","dweb:/ipfs/QmYqeNPFeGDKPjgRi9BoFBm4bfgCEyoo96SkKtS1XLezaD"]},"contracts/token/ERC721/extensions/IERC721Metadata.sol":{"keccak256":"0xd32fb7f530a914b1083d10a6bed3a586f2451952fec04fe542bcc670a82f7ba5","license":"MIT","urls":["bzz-raw://af63ab940a34687c45f0ad84960b048fc5f49330c92ccb422db7822a444733b9","dweb:/ipfs/QmUShaQEu8HS1GjDnsMJQ8jkZEBrecn6NuDZ3pfjY1gVck"]},"contracts/utils/Address.sol":{"keccak256":"0xed90359d980ae160f092e585f61fb2f21f6ae02f46c17f695d9edf571d964bc6","license":"MIT","urls":["bzz-raw://c25ef7116c7e843b419602f4213aa263320adfec43e054b9225ba02874aed65b","dweb:/ipfs/QmNTKMM8AR594VFvRAg7QMe15cjBxAc7g9LMGLC6KK7gYN"]},"contracts/utils/Context.sol":{"keccak256":"0x90565a39ae45c80f0468dc96c7b20d0afc3055f344c8203a0c9258239f350b9f","license":"MIT","urls":["bzz-raw://26e8b38a7ac8e7b4463af00cf7fff1bf48ae9875765bf4f7751e100124d0bc8c","dweb:/ipfs/QmWcsmkVr24xmmjfnBQZoemFniXjj3vwT78Cz6uqZW1Hux"]},"contracts/utils/Strings.sol":{"keccak256":"0x2161775355b4c96f4fcb1eee551b9301814ca4ccf06fbd89d69c7f4560013bc4","license":"MIT","urls":["bzz-raw://326b7d20563bdf5a8fb56568a9f829ae4b22f9427af9c48a00cb1688c59fe60a","dweb:/ipfs/QmUAF3ZbGmAAPBHQQP4ioKCQPwBdPbUu19NrQBowXKgGUa"]},"contracts/utils/introspection/ERC165.sol":{"keccak256":"0x93b1ce940e4e905752730be86b74d5f915097747868f7876e1de9af86afa6ad4","license":"MIT","urls":["bzz-raw://8a61ef44a444c0cb14d2c3c93c67290158571f4053a0867d117cfcab7ef39c07","dweb:/ipfs/QmNUM5trSZ82B9XzKTyfyrQ2zEMKKr77QydXExk7TA7t4v"]},"contracts/utils/introspection/IERC165.sol":{"keccak256":"0xa28007762d9da9db878dd421960c8cb9a10471f47ab5c1b3309bfe48e9e79ff4","license":"MIT","urls":["bzz-raw://796ab6e88af7bf0e78def0f059310c903af6a312b565344e0ff524a0f26e81c6","dweb:/ipfs/QmcsVgLgzWdor3UnAztUkXKNGcysm1MPneWksF72AvnwBx"]}},"version":1}
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithEthers script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
// 'web3Provider' is a remix global variable object
const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner()
let factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer);
let contract = await factory.deploy(...constructorArgs);
console.log('Contract Address: ', contract.address);
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
console.log('Deployment successful.')
} catch (e) {
console.log(e.message)
}
})()
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithWeb3 script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
const accounts = await web3.eth.getAccounts()
let contract = new web3.eth.Contract(metadata.abi)
contract = contract.deploy({
data: metadata.data.bytecode.object,
arguments: constructorArgs
})
const newContractInstance = await contract.send({
from: accounts[0],
gas: 1500000,
gasPrice: '30000000000'
})
console.log('Contract deployed at address: ', newContractInstance.options.address)
} catch (e) {
console.log(e.message)
}
})()
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "../contracts/3_Ballot.sol";
contract BallotTest {
bytes32[] proposalNames;
Ballot ballotToTest;
function beforeAll () public {
proposalNames.push(bytes32("candidate1"));
ballotToTest = new Ballot(proposalNames);
}
function checkWinningProposal () public {
ballotToTest.vote(0);
Assert.equal(ballotToTest.winningProposal(), uint(0), "proposal at index 0 should be the winning proposal");
Assert.equal(ballotToTest.winnerName(), bytes32("candidate1"), "candidate1 should be the winner name");
}
function checkWinninProposalWithReturnValue () public view returns (bool) {
return ballotToTest.winningProposal() == 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment