Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cagataycali/2d2e827e0c1993585c03310eff4f9e14 to your computer and use it in GitHub Desktop.
Save cagataycali/2d2e827e0c1993585c03310eff4f9e14 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.17+commit.8df45f5f.js&optimize=true&runs=200&gist=
{
"id": "624cb82b4d2b9fb17e49e7935d27841d",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.17",
"solcLongVersion": "0.8.17+commit.8df45f5f",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": {
"Ownable": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"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\":{\".deps/npm/@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\".deps/npm/@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": ".deps/npm/@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"Context": {
"abi": [],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/access/Ownable.sol",
"exportedSymbols": {
"Context": [
134
],
"Ownable": [
112
]
},
"id": 113,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "102:23:0"
},
{
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/Context.sol",
"file": "../utils/Context.sol",
"id": 2,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 113,
"sourceUnit": 135,
"src": "127:30:0",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": true,
"baseContracts": [
{
"baseName": {
"id": 4,
"name": "Context",
"nameLocations": [
"683:7:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 134,
"src": "683:7:0"
},
"id": 5,
"nodeType": "InheritanceSpecifier",
"src": "683:7:0"
}
],
"canonicalName": "Ownable",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "159:494:0",
"text": " @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n By default, the owner account will be the one that deploys the contract. This\n can later be changed with {transferOwnership}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner."
},
"fullyImplemented": true,
"id": 112,
"linearizedBaseContracts": [
112,
134
],
"name": "Ownable",
"nameLocation": "672:7:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "_owner",
"nameLocation": "713:6:0",
"nodeType": "VariableDeclaration",
"scope": 112,
"src": "697:22:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 6,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "697:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "private"
},
{
"anonymous": false,
"eventSelector": "8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
"id": 13,
"name": "OwnershipTransferred",
"nameLocation": "732:20:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 12,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 9,
"indexed": true,
"mutability": "mutable",
"name": "previousOwner",
"nameLocation": "769:13:0",
"nodeType": "VariableDeclaration",
"scope": 13,
"src": "753:29:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 8,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "753:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 11,
"indexed": true,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "800:8:0",
"nodeType": "VariableDeclaration",
"scope": 13,
"src": "784:24:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 10,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "784:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "752:57:0"
},
"src": "726:84:0"
},
{
"body": {
"id": 22,
"nodeType": "Block",
"src": "926:49:0",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 18,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 124,
"src": "955:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 19,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "955:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 17,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 111,
"src": "936:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 20,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "936:32:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 21,
"nodeType": "ExpressionStatement",
"src": "936:32:0"
}
]
},
"documentation": {
"id": 14,
"nodeType": "StructuredDocumentation",
"src": "816:91:0",
"text": " @dev Initializes the contract setting the deployer as the initial owner."
},
"id": 23,
"implemented": true,
"kind": "constructor",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 15,
"nodeType": "ParameterList",
"parameters": [],
"src": "923:2:0"
},
"returnParameters": {
"id": 16,
"nodeType": "ParameterList",
"parameters": [],
"src": "926:0:0"
},
"scope": 112,
"src": "912:63:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 30,
"nodeType": "Block",
"src": "1084:41:0",
"statements": [
{
"expression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 26,
"name": "_checkOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 54,
"src": "1094:11:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$__$",
"typeString": "function () view"
}
},
"id": 27,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1094:13:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 28,
"nodeType": "ExpressionStatement",
"src": "1094:13:0"
},
{
"id": 29,
"nodeType": "PlaceholderStatement",
"src": "1117:1:0"
}
]
},
"documentation": {
"id": 24,
"nodeType": "StructuredDocumentation",
"src": "981:77:0",
"text": " @dev Throws if called by any account other than the owner."
},
"id": 31,
"name": "onlyOwner",
"nameLocation": "1072:9:0",
"nodeType": "ModifierDefinition",
"parameters": {
"id": 25,
"nodeType": "ParameterList",
"parameters": [],
"src": "1081:2:0"
},
"src": "1063:62:0",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 39,
"nodeType": "Block",
"src": "1256:30:0",
"statements": [
{
"expression": {
"id": 37,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7,
"src": "1273:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 36,
"id": 38,
"nodeType": "Return",
"src": "1266:13:0"
}
]
},
"documentation": {
"id": 32,
"nodeType": "StructuredDocumentation",
"src": "1131:65:0",
"text": " @dev Returns the address of the current owner."
},
"functionSelector": "8da5cb5b",
"id": 40,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "owner",
"nameLocation": "1210:5:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 33,
"nodeType": "ParameterList",
"parameters": [],
"src": "1215:2:0"
},
"returnParameters": {
"id": 36,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 35,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 40,
"src": "1247:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 34,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1247:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1246:9:0"
},
"scope": 112,
"src": "1201:85:0",
"stateMutability": "view",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 53,
"nodeType": "Block",
"src": "1404:85:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 49,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 45,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 40,
"src": "1422:5:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 46,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1422:7:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 47,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 124,
"src": "1433:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 48,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1433:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "1422:23:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"id": 50,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1447:34:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"typeString": "literal_string \"Ownable: caller is not the owner\""
},
"value": "Ownable: caller is not the owner"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"typeString": "literal_string \"Ownable: caller is not the owner\""
}
],
"id": 44,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "1414:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 51,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1414:68:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 52,
"nodeType": "ExpressionStatement",
"src": "1414:68:0"
}
]
},
"documentation": {
"id": 41,
"nodeType": "StructuredDocumentation",
"src": "1292:62:0",
"text": " @dev Throws if the sender is not the owner."
},
"id": 54,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_checkOwner",
"nameLocation": "1368:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 42,
"nodeType": "ParameterList",
"parameters": [],
"src": "1379:2:0"
},
"returnParameters": {
"id": 43,
"nodeType": "ParameterList",
"parameters": [],
"src": "1404:0:0"
},
"scope": 112,
"src": "1359:130:0",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 67,
"nodeType": "Block",
"src": "1885:47:0",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "30",
"id": 63,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1922:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 62,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "1914:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 61,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1914:7:0",
"typeDescriptions": {}
}
},
"id": 64,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1914:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 60,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 111,
"src": "1895:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 65,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1895:30:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 66,
"nodeType": "ExpressionStatement",
"src": "1895:30:0"
}
]
},
"documentation": {
"id": 55,
"nodeType": "StructuredDocumentation",
"src": "1495:331:0",
"text": " @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions anymore. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby removing any functionality that is only available to the owner."
},
"functionSelector": "715018a6",
"id": 68,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 58,
"kind": "modifierInvocation",
"modifierName": {
"id": 57,
"name": "onlyOwner",
"nameLocations": [
"1875:9:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 31,
"src": "1875:9:0"
},
"nodeType": "ModifierInvocation",
"src": "1875:9:0"
}
],
"name": "renounceOwnership",
"nameLocation": "1840:17:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 56,
"nodeType": "ParameterList",
"parameters": [],
"src": "1857:2:0"
},
"returnParameters": {
"id": 59,
"nodeType": "ParameterList",
"parameters": [],
"src": "1885:0:0"
},
"scope": 112,
"src": "1831:101:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 90,
"nodeType": "Block",
"src": "2151:128:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 82,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 77,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 71,
"src": "2169:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "!=",
"rightExpression": {
"arguments": [
{
"hexValue": "30",
"id": 80,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2189:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 79,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "2181:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 78,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2181:7:0",
"typeDescriptions": {}
}
},
"id": 81,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2181:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2169:22:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373",
"id": 83,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2193:40:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"typeString": "literal_string \"Ownable: new owner is the zero address\""
},
"value": "Ownable: new owner is the zero address"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"typeString": "literal_string \"Ownable: new owner is the zero address\""
}
],
"id": 76,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "2161:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 84,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2161:73:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 85,
"nodeType": "ExpressionStatement",
"src": "2161:73:0"
},
{
"expression": {
"arguments": [
{
"id": 87,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 71,
"src": "2263:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 86,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 111,
"src": "2244:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 88,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2244:28:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 89,
"nodeType": "ExpressionStatement",
"src": "2244:28:0"
}
]
},
"documentation": {
"id": 69,
"nodeType": "StructuredDocumentation",
"src": "1938:138:0",
"text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."
},
"functionSelector": "f2fde38b",
"id": 91,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 74,
"kind": "modifierInvocation",
"modifierName": {
"id": 73,
"name": "onlyOwner",
"nameLocations": [
"2141:9:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 31,
"src": "2141:9:0"
},
"nodeType": "ModifierInvocation",
"src": "2141:9:0"
}
],
"name": "transferOwnership",
"nameLocation": "2090:17:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 72,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 71,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "2116:8:0",
"nodeType": "VariableDeclaration",
"scope": 91,
"src": "2108:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 70,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2108:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2107:18:0"
},
"returnParameters": {
"id": 75,
"nodeType": "ParameterList",
"parameters": [],
"src": "2151:0:0"
},
"scope": 112,
"src": "2081:198:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 110,
"nodeType": "Block",
"src": "2496:124:0",
"statements": [
{
"assignments": [
98
],
"declarations": [
{
"constant": false,
"id": 98,
"mutability": "mutable",
"name": "oldOwner",
"nameLocation": "2514:8:0",
"nodeType": "VariableDeclaration",
"scope": 110,
"src": "2506:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 97,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2506:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"id": 100,
"initialValue": {
"id": 99,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7,
"src": "2525:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "2506:25:0"
},
{
"expression": {
"id": 103,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 101,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7,
"src": "2541:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 102,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 94,
"src": "2550:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2541:17:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 104,
"nodeType": "ExpressionStatement",
"src": "2541:17:0"
},
{
"eventCall": {
"arguments": [
{
"id": 106,
"name": "oldOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 98,
"src": "2594:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"id": 107,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 94,
"src": "2604:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 105,
"name": "OwnershipTransferred",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 13,
"src": "2573:20:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
"typeString": "function (address,address)"
}
},
"id": 108,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2573:40:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 109,
"nodeType": "EmitStatement",
"src": "2568:45:0"
}
]
},
"documentation": {
"id": 92,
"nodeType": "StructuredDocumentation",
"src": "2285:143:0",
"text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."
},
"id": 111,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_transferOwnership",
"nameLocation": "2442:18:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 95,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 94,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "2469:8:0",
"nodeType": "VariableDeclaration",
"scope": 111,
"src": "2461:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 93,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2461:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2460:18:0"
},
"returnParameters": {
"id": 96,
"nodeType": "ParameterList",
"parameters": [],
"src": "2496:0:0"
},
"scope": 112,
"src": "2433:187:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "internal"
}
],
"scope": 113,
"src": "654:1968:0",
"usedErrors": []
}
],
"src": "102:2521:0"
},
"id": 0
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/Context.sol",
"exportedSymbols": {
"Context": [
134
]
},
"id": 135,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 114,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "86:23:1"
},
{
"abstract": true,
"baseContracts": [],
"canonicalName": "Context",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 115,
"nodeType": "StructuredDocumentation",
"src": "111:496:1",
"text": " @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."
},
"fullyImplemented": true,
"id": 134,
"linearizedBaseContracts": [
134
],
"name": "Context",
"nameLocation": "626:7:1",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 123,
"nodeType": "Block",
"src": "702:34:1",
"statements": [
{
"expression": {
"expression": {
"id": 120,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "719:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 121,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "723:6:1",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "719:10:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 119,
"id": 122,
"nodeType": "Return",
"src": "712:17:1"
}
]
},
"id": 124,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgSender",
"nameLocation": "649:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 116,
"nodeType": "ParameterList",
"parameters": [],
"src": "659:2:1"
},
"returnParameters": {
"id": 119,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 118,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 124,
"src": "693:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 117,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "693:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "692:9:1"
},
"scope": 134,
"src": "640:96:1",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 132,
"nodeType": "Block",
"src": "809:32:1",
"statements": [
{
"expression": {
"expression": {
"id": 129,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "826:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 130,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "830:4:1",
"memberName": "data",
"nodeType": "MemberAccess",
"src": "826:8:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes calldata"
}
},
"functionReturnParameters": 128,
"id": 131,
"nodeType": "Return",
"src": "819:15:1"
}
]
},
"id": 133,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgData",
"nameLocation": "751:8:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 125,
"nodeType": "ParameterList",
"parameters": [],
"src": "759:2:1"
},
"returnParameters": {
"id": 128,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 127,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 133,
"src": "793:14:1",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 126,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "793:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "792:16:1"
},
"scope": 134,
"src": "742:99:1",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
}
],
"scope": 135,
"src": "608:235:1",
"usedErrors": []
}
],
"src": "86:758:1"
},
"id": 1
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"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": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": "Ownable"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673",
"license": "MIT",
"urls": [
"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2",
"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_string_fromMemory": {
"entryPoint": 112,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 287,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"array_dataslot_string_storage": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_string_storage": {
"entryPoint": 453,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 536,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 393,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x41": {
"entryPoint": 90,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4144:10",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:10",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "46:95:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "63:1:10",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "70:3:10",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "75:10:10",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "66:3:10"
},
"nodeType": "YulFunctionCall",
"src": "66:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "56:6:10"
},
"nodeType": "YulFunctionCall",
"src": "56:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "56:31:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "103:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "106:4:10",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "96:6:10"
},
"nodeType": "YulFunctionCall",
"src": "96:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "96:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "127:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "130:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "120:6:10"
},
"nodeType": "YulFunctionCall",
"src": "120:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "120:15:10"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "14:127:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "210:776:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "259:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "268:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "271:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "261:6:10"
},
"nodeType": "YulFunctionCall",
"src": "261:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "261:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "238:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "246:4:10",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "234:3:10"
},
"nodeType": "YulFunctionCall",
"src": "234:17:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "253:3:10"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "230:3:10"
},
"nodeType": "YulFunctionCall",
"src": "230:27:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "223:6:10"
},
"nodeType": "YulFunctionCall",
"src": "223:35:10"
},
"nodeType": "YulIf",
"src": "220:55:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "284:23:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "300:6:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "294:5:10"
},
"nodeType": "YulFunctionCall",
"src": "294:13:10"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "288:2:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "316:28:10",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "334:2:10",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "338:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "330:3:10"
},
"nodeType": "YulFunctionCall",
"src": "330:10:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "342:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "326:3:10"
},
"nodeType": "YulFunctionCall",
"src": "326:18:10"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "320:2:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "367:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "369:16:10"
},
"nodeType": "YulFunctionCall",
"src": "369:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "369:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "359:2:10"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "363:2:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "356:2:10"
},
"nodeType": "YulFunctionCall",
"src": "356:10:10"
},
"nodeType": "YulIf",
"src": "353:36:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "398:17:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "412:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "408:3:10"
},
"nodeType": "YulFunctionCall",
"src": "408:7:10"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "402:2:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "424:23:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "444:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "438:5:10"
},
"nodeType": "YulFunctionCall",
"src": "438:9:10"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "428:6:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "456:71:10",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "478:6:10"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "502:2:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "506:4:10",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "498:3:10"
},
"nodeType": "YulFunctionCall",
"src": "498:13:10"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "513:2:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "494:3:10"
},
"nodeType": "YulFunctionCall",
"src": "494:22:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "518:2:10",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "490:3:10"
},
"nodeType": "YulFunctionCall",
"src": "490:31:10"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "523:2:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "486:3:10"
},
"nodeType": "YulFunctionCall",
"src": "486:40:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "474:3:10"
},
"nodeType": "YulFunctionCall",
"src": "474:53:10"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "460:10:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "586:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "588:16:10"
},
"nodeType": "YulFunctionCall",
"src": "588:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "588:18:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "545:10:10"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "557:2:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "542:2:10"
},
"nodeType": "YulFunctionCall",
"src": "542:18:10"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "565:10:10"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "577:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "562:2:10"
},
"nodeType": "YulFunctionCall",
"src": "562:22:10"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "539:2:10"
},
"nodeType": "YulFunctionCall",
"src": "539:46:10"
},
"nodeType": "YulIf",
"src": "536:72:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "624:2:10",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "628:10:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "617:6:10"
},
"nodeType": "YulFunctionCall",
"src": "617:22:10"
},
"nodeType": "YulExpressionStatement",
"src": "617:22:10"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "655:6:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "663:2:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "648:6:10"
},
"nodeType": "YulFunctionCall",
"src": "648:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "648:18:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "675:14:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "685:4:10",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "679:2:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "744:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "747:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "737:6:10"
},
"nodeType": "YulFunctionCall",
"src": "737:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "737:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "712:6:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "720:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "708:3:10"
},
"nodeType": "YulFunctionCall",
"src": "708:15:10"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "725:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "704:3:10"
},
"nodeType": "YulFunctionCall",
"src": "704:24:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "730:3:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "701:2:10"
},
"nodeType": "YulFunctionCall",
"src": "701:33:10"
},
"nodeType": "YulIf",
"src": "698:53:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "760:10:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "769:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "764:1:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "825:87:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "854:6:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "862:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "850:3:10"
},
"nodeType": "YulFunctionCall",
"src": "850:14:10"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "866:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "846:3:10"
},
"nodeType": "YulFunctionCall",
"src": "846:23:10"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "885:6:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "893:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "881:3:10"
},
"nodeType": "YulFunctionCall",
"src": "881:14:10"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "897:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "877:3:10"
},
"nodeType": "YulFunctionCall",
"src": "877:23:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "871:5:10"
},
"nodeType": "YulFunctionCall",
"src": "871:30:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "839:6:10"
},
"nodeType": "YulFunctionCall",
"src": "839:63:10"
},
"nodeType": "YulExpressionStatement",
"src": "839:63:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "790:1:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "793:2:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "787:2:10"
},
"nodeType": "YulFunctionCall",
"src": "787:9:10"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "797:19:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "799:15:10",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "808:1:10"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "811:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "804:3:10"
},
"nodeType": "YulFunctionCall",
"src": "804:10:10"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "799:1:10"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "783:3:10",
"statements": []
},
"src": "779:133:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "936:6:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "944:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "932:3:10"
},
"nodeType": "YulFunctionCall",
"src": "932:15:10"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "949:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "928:3:10"
},
"nodeType": "YulFunctionCall",
"src": "928:24:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "954:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "921:6:10"
},
"nodeType": "YulFunctionCall",
"src": "921:35:10"
},
"nodeType": "YulExpressionStatement",
"src": "921:35:10"
},
{
"nodeType": "YulAssignment",
"src": "965:15:10",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "974:6:10"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "965:5:10"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "184:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "192:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "200:5:10",
"type": ""
}
],
"src": "146:840:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:444:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1155:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1164:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1167:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1157:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1157:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1157:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1130:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1139:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1126:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1126:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1151:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1122:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1122:32:10"
},
"nodeType": "YulIf",
"src": "1119:52:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1180:30:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1200:9:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1194:5:10"
},
"nodeType": "YulFunctionCall",
"src": "1194:16:10"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1184:6:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1219:28:10",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1237:2:10",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1241:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1233:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1233:10:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1245:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1229:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1229:18:10"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1223:2:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1274:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1283:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1276:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1276:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1276:12:10"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1262:6:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1270:2:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1259:2:10"
},
"nodeType": "YulFunctionCall",
"src": "1259:14:10"
},
"nodeType": "YulIf",
"src": "1256:34:10"
},
{
"nodeType": "YulAssignment",
"src": "1299:71:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1342:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1353:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1338:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1338:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1362:7:10"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1309:28:10"
},
"nodeType": "YulFunctionCall",
"src": "1309:61:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1299:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1379:41:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1405:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1416:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1401:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1401:18:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1395:5:10"
},
"nodeType": "YulFunctionCall",
"src": "1395:25:10"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1383:8:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1449:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1458:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1461:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1451:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1451:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1451:12:10"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1435:8:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1445:2:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1432:2:10"
},
"nodeType": "YulFunctionCall",
"src": "1432:16:10"
},
"nodeType": "YulIf",
"src": "1429:36:10"
},
{
"nodeType": "YulAssignment",
"src": "1474:73:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1517:9:10"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1528:8:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1513:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1513:24:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1539:7:10"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1484:28:10"
},
"nodeType": "YulFunctionCall",
"src": "1484:63:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1474:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1067:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1078:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1090:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1098:6:10",
"type": ""
}
],
"src": "991:562:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:325:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:22:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1637:1:10",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1640:4:10"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "1633:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1633:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1623:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1654:38:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1684:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1690:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1680:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1680:12:10"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1658:18:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1731:31:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1733:27:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1747:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1755:4:10",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1743:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1743:17:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1733:6:10"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1711:18:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1704:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1704:26:10"
},
"nodeType": "YulIf",
"src": "1701:61:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1821:111:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1842:1:10",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1849:3:10",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1854:10:10",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1845:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1845:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1835:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1835:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "1835:31:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1886:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1889:4:10",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1879:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1879:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "1879:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1914:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1917:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1907:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1907:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "1907:15:10"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1777:18:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1800:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1808:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1797:2:10"
},
"nodeType": "YulFunctionCall",
"src": "1797:14:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1774:2:10"
},
"nodeType": "YulFunctionCall",
"src": "1774:38:10"
},
"nodeType": "YulIf",
"src": "1771:161:10"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1593:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1602:6:10",
"type": ""
}
],
"src": "1558:380:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1999:65:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2016:1:10",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "2019:3:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2009:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2009:14:10"
},
"nodeType": "YulExpressionStatement",
"src": "2009:14:10"
},
{
"nodeType": "YulAssignment",
"src": "2032:26:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2050:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2053:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "2040:9:10"
},
"nodeType": "YulFunctionCall",
"src": "2040:18:10"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2032:4:10"
}
]
}
]
},
"name": "array_dataslot_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "1982:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1990:4:10",
"type": ""
}
],
"src": "1943:121:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2150:464:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2183:425:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2197:11:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2207:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "2201:2:10",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2228:2:10"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2232:5:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2221:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2221:17:10"
},
"nodeType": "YulExpressionStatement",
"src": "2221:17:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2251:31:10",
"value": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2273:2:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2277:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "2263:9:10"
},
"nodeType": "YulFunctionCall",
"src": "2263:19:10"
},
"variables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2255:4:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2295:57:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2318:4:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2328:1:10",
"type": "",
"value": "5"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2335:10:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2347:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2331:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2331:19:10"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2324:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2324:27:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2314:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2314:38:10"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2299:11:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2389:23:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2391:19:10",
"value": {
"name": "data",
"nodeType": "YulIdentifier",
"src": "2406:4:10"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "2391:11:10"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2371:10:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2383:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2368:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2368:20:10"
},
"nodeType": "YulIf",
"src": "2365:47:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2425:41:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2439:4:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2449:1:10",
"type": "",
"value": "5"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2456:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2461:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2452:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2452:12:10"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2445:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2445:20:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2435:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2435:31:10"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "2429:2:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2479:24:10",
"value": {
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "2492:11:10"
},
"variables": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2483:5:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2577:21:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2586:5:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2593:2:10"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2579:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2579:17:10"
},
"nodeType": "YulExpressionStatement",
"src": "2579:17:10"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2527:5:10"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "2534:2:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2524:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2524:13:10"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2538:26:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2540:22:10",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2553:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2560:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2549:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2549:13:10"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2540:5:10"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2520:3:10",
"statements": []
},
"src": "2516:82:10"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2166:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2171:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2163:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2163:11:10"
},
"nodeType": "YulIf",
"src": "2160:448:10"
}
]
},
"name": "clean_up_bytearray_end_slots_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2122:5:10",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2129:3:10",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2134:10:10",
"type": ""
}
],
"src": "2069:545:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2704:81:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2714:65:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2729:4:10"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2747:1:10",
"type": "",
"value": "3"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2750:3:10"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2743:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2743:11:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2760:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2756:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2756:6:10"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2739:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2739:24:10"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2735:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2735:29:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2725:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2725:40:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2771:1:10",
"type": "",
"value": "1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2774:3:10"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2767:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2767:11:10"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2722:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2722:57:10"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "2714:4:10"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2681:4:10",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2687:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "2695:4:10",
"type": ""
}
],
"src": "2619:166:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2886:1256:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2896:24:10",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2916:3:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2910:5:10"
},
"nodeType": "YulFunctionCall",
"src": "2910:10:10"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "2900:6:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2963:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2965:16:10"
},
"nodeType": "YulFunctionCall",
"src": "2965:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "2965:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "2935:6:10"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2951:2:10",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2955:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2947:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2947:10:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2959:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2943:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2943:18:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2932:2:10"
},
"nodeType": "YulFunctionCall",
"src": "2932:30:10"
},
"nodeType": "YulIf",
"src": "2929:56:10"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3038:4:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3076:4:10"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "3070:5:10"
},
"nodeType": "YulFunctionCall",
"src": "3070:11:10"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "3044:25:10"
},
"nodeType": "YulFunctionCall",
"src": "3044:38:10"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3084:6:10"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_string_storage",
"nodeType": "YulIdentifier",
"src": "2994:43:10"
},
"nodeType": "YulFunctionCall",
"src": "2994:97:10"
},
"nodeType": "YulExpressionStatement",
"src": "2994:97:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3100:18:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3117:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "3104:9:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3127:23:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3146:4:10",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "srcOffset_1",
"nodeType": "YulTypedName",
"src": "3131:11:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3159:24:10",
"value": {
"name": "srcOffset_1",
"nodeType": "YulIdentifier",
"src": "3172:11:10"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3159:9:10"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "3229:656:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3243:35:10",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3262:6:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3274:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3270:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3270:7:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3258:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3258:20:10"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "3247:7:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3291:49:10",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3335:4:10"
}
],
"functionName": {
"name": "array_dataslot_string_storage",
"nodeType": "YulIdentifier",
"src": "3305:29:10"
},
"nodeType": "YulFunctionCall",
"src": "3305:35:10"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "3295:6:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3353:10:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3362:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3357:1:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3440:172:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "3465:6:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3483:3:10"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3488:9:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3479:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3479:19:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3473:5:10"
},
"nodeType": "YulFunctionCall",
"src": "3473:26:10"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "3458:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3458:42:10"
},
"nodeType": "YulExpressionStatement",
"src": "3458:42:10"
},
{
"nodeType": "YulAssignment",
"src": "3517:24:10",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "3531:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3539:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3527:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3527:14:10"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "3517:6:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3558:40:10",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3575:9:10"
},
{
"name": "srcOffset_1",
"nodeType": "YulIdentifier",
"src": "3586:11:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3571:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3571:27:10"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3558:9:10"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3387:1:10"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "3390:7:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3384:2:10"
},
"nodeType": "YulFunctionCall",
"src": "3384:14:10"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3399:28:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3401:24:10",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3410:1:10"
},
{
"name": "srcOffset_1",
"nodeType": "YulIdentifier",
"src": "3413:11:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3406:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3406:19:10"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3401:1:10"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3380:3:10",
"statements": []
},
"src": "3376:236:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3660:166:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3678:43:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3705:3:10"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3710:9:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3701:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3701:19:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3695:5:10"
},
"nodeType": "YulFunctionCall",
"src": "3695:26:10"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "3682:9:10",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "3745:6:10"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "3757:9:10"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3784:1:10",
"type": "",
"value": "3"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3787:6:10"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3780:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3780:14:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3796:3:10",
"type": "",
"value": "248"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3776:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3776:24:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3806:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3802:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3802:6:10"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3772:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3772:37:10"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3768:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3768:42:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3753:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3753:58:10"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "3738:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3738:74:10"
},
"nodeType": "YulExpressionStatement",
"src": "3738:74:10"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "3631:7:10"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3640:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3628:2:10"
},
"nodeType": "YulFunctionCall",
"src": "3628:19:10"
},
"nodeType": "YulIf",
"src": "3625:201:10"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3846:4:10"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3860:1:10",
"type": "",
"value": "1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3863:6:10"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3856:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3856:14:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3872:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3852:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3852:22:10"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "3839:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3839:36:10"
},
"nodeType": "YulExpressionStatement",
"src": "3839:36:10"
}
]
},
"nodeType": "YulCase",
"src": "3222:663:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3227:1:10",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "3902:234:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3916:14:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3929:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3920:5:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3965:67:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3983:35:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4002:3:10"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4007:9:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3998:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3998:19:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3992:5:10"
},
"nodeType": "YulFunctionCall",
"src": "3992:26:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3983:5:10"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3946:6:10"
},
"nodeType": "YulIf",
"src": "3943:89:10"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4052:4:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4111:5:10"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4118:6:10"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "4058:52:10"
},
"nodeType": "YulFunctionCall",
"src": "4058:67:10"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4045:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4045:81:10"
},
"nodeType": "YulExpressionStatement",
"src": "4045:81:10"
}
]
},
"nodeType": "YulCase",
"src": "3894:242:10",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3202:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3210:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3199:2:10"
},
"nodeType": "YulFunctionCall",
"src": "3199:14:10"
},
"nodeType": "YulSwitch",
"src": "3192:944:10"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2871:4:10",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2877:3:10",
"type": ""
}
],
"src": "2790:1352:10"
}
]
},
"contents": "{\n { }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\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 let _4 := 0x20\n if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n let i := 0\n for { } lt(i, _1) { i := add(i, _4) }\n {\n mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n }\n mstore(add(add(memPtr, _1), _4), 0)\n array := memPtr\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { 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 }\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 array_dataslot_string_storage(ptr) -> data\n {\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n }\n function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n {\n if gt(len, 31)\n {\n let _1 := 0\n mstore(_1, array)\n let data := keccak256(_1, 0x20)\n let deleteStart := add(data, shr(5, add(startIndex, 31)))\n if lt(startIndex, 0x20) { deleteStart := data }\n let _2 := add(data, shr(5, add(len, 31)))\n let start := deleteStart\n for { } lt(start, _2) { start := add(start, 1) }\n { sstore(start, _1) }\n }\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n {\n used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n {\n let newLen := mload(src)\n if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n let srcOffset := 0\n let srcOffset_1 := 0x20\n srcOffset := srcOffset_1\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(31))\n let dstPtr := array_dataslot_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, srcOffset_1) }\n {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, srcOffset_1)\n }\n if lt(loopEnd, newLen)\n {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n }\n sstore(slot, add(shl(1, newLen), 1))\n }\n default {\n let value := 0\n if newLen\n {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n}",
"id": 10,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040516200149d3803806200149d83398101604081905262000034916200011f565b600062000042838262000218565b50600162000051828262000218565b505050620002e4565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200008257600080fd5b81516001600160401b03808211156200009f576200009f6200005a565b604051601f8301601f19908116603f01168101908282118183101715620000ca57620000ca6200005a565b81604052838152602092508683858801011115620000e757600080fd5b600091505b838210156200010b5785820183015181830184015290820190620000ec565b600093810190920192909252949350505050565b600080604083850312156200013357600080fd5b82516001600160401b03808211156200014b57600080fd5b620001598683870162000070565b935060208501519150808211156200017057600080fd5b506200017f8582860162000070565b9150509250929050565b600181811c908216806200019e57607f821691505b602082108103620001bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021357600081815260208120601f850160051c81016020861015620001ee5750805b601f850160051c820191505b818110156200020f57828155600101620001fa565b5050505b505050565b81516001600160401b038111156200023457620002346200005a565b6200024c8162000245845462000189565b84620001c5565b602080601f8311600181146200028457600084156200026b5750858301515b600019600386901b1c1916600185901b1785556200020f565b600085815260208120601f198616915b82811015620002b55788860151825594840194600190910190840162000294565b5085821015620002d45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6111a980620002f46000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101b3578063b88d4fde146101c6578063c87b56dd146101d9578063e985e9c5146101ec57600080fd5b80636352211e1461017757806370a082311461018a57806395d89b41146101ab57600080fd5b806301ffc9a7146100d457806306fdde03146100fc578063081812fc14610111578063095ea7b31461013c57806323b872dd1461015157806342842e0e14610164575b600080fd5b6100e76100e2366004610cf9565b6101ff565b60405190151581526020015b60405180910390f35b610104610251565b6040516100f39190610d66565b61012461011f366004610d79565b6102e3565b6040516001600160a01b0390911681526020016100f3565b61014f61014a366004610dae565b61030a565b005b61014f61015f366004610dd8565b610424565b61014f610172366004610dd8565b610455565b610124610185366004610d79565b610470565b61019d610198366004610e14565b6104d0565b6040519081526020016100f3565b610104610556565b61014f6101c1366004610e2f565b610565565b61014f6101d4366004610e81565b610574565b6101046101e7366004610d79565b6105ac565b6100e76101fa366004610f5d565b610620565b60006001600160e01b031982166380ac58cd60e01b148061023057506001600160e01b03198216635b5e139f60e01b145b8061024b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461026090610f90565b80601f016020809104026020016040519081016040528092919081815260200182805461028c90610f90565b80156102d95780601f106102ae576101008083540402835291602001916102d9565b820191906000526020600020905b8154815290600101906020018083116102bc57829003601f168201915b5050505050905090565b60006102ee8261064e565b506000908152600460205260409020546001600160a01b031690565b600061031582610470565b9050806001600160a01b0316836001600160a01b0316036103875760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806103a357506103a38133610620565b6104155760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161037e565b61041f83836106b0565b505050565b61042e338261071e565b61044a5760405162461bcd60e51b815260040161037e90610fca565b61041f83838361077d565b61041f83838360405180602001604052806000815250610574565b6000818152600260205260408120546001600160a01b03168061024b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161037e565b60006001600160a01b03821661053a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161037e565b506001600160a01b031660009081526003602052604090205490565b60606001805461026090610f90565b6105703383836108ee565b5050565b61057e338361071e565b61059a5760405162461bcd60e51b815260040161037e90610fca565b6105a6848484846109bc565b50505050565b60606105b78261064e565b60006105ce60408051602081019091526000815290565b905060008151116105ee5760405180602001604052806000815250610619565b806105f8846109ef565b604051602001610609929190611017565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000818152600260205260409020546001600160a01b03166106ad5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161037e565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906106e582610470565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061072a83610470565b9050806001600160a01b0316846001600160a01b0316148061075157506107518185610620565b806107755750836001600160a01b031661076a846102e3565b6001600160a01b0316145b949350505050565b826001600160a01b031661079082610470565b6001600160a01b0316146107b65760405162461bcd60e51b815260040161037e90611046565b6001600160a01b0382166108185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161037e565b6108258383836001610a82565b826001600160a01b031661083882610470565b6001600160a01b03161461085e5760405162461bcd60e51b815260040161037e90611046565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361094f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161037e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6109c784848461077d565b6109d384848484610b0a565b6105a65760405162461bcd60e51b815260040161037e9061108b565b606060006109fc83610c0b565b600101905060008167ffffffffffffffff811115610a1c57610a1c610e6b565b6040519080825280601f01601f191660200182016040528015610a46576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610a5057509392505050565b60018111156105a6576001600160a01b03841615610ac8576001600160a01b03841660009081526003602052604081208054839290610ac29084906110f3565b90915550505b6001600160a01b038316156105a6576001600160a01b03831660009081526003602052604081208054839290610aff908490611106565b909155505050505050565b60006001600160a01b0384163b15610c0057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610b4e903390899088908890600401611119565b6020604051808303816000875af1925050508015610b89575060408051601f3d908101601f19168201909252610b8691810190611156565b60015b610be6573d808015610bb7576040519150601f19603f3d011682016040523d82523d6000602084013e610bbc565b606091505b508051600003610bde5760405162461bcd60e51b815260040161037e9061108b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610775565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610c4a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310610c76576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310610c9457662386f26fc10000830492506010015b6305f5e1008310610cac576305f5e100830492506008015b6127108310610cc057612710830492506004015b60648310610cd2576064830492506002015b600a831061024b5760010192915050565b6001600160e01b0319811681146106ad57600080fd5b600060208284031215610d0b57600080fd5b813561061981610ce3565b60005b83811015610d31578181015183820152602001610d19565b50506000910152565b60008151808452610d52816020860160208601610d16565b601f01601f19169290920160200192915050565b6020815260006106196020830184610d3a565b600060208284031215610d8b57600080fd5b5035919050565b80356001600160a01b0381168114610da957600080fd5b919050565b60008060408385031215610dc157600080fd5b610dca83610d92565b946020939093013593505050565b600080600060608486031215610ded57600080fd5b610df684610d92565b9250610e0460208501610d92565b9150604084013590509250925092565b600060208284031215610e2657600080fd5b61061982610d92565b60008060408385031215610e4257600080fd5b610e4b83610d92565b915060208301358015158114610e6057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610e9757600080fd5b610ea085610d92565b9350610eae60208601610d92565b925060408501359150606085013567ffffffffffffffff80821115610ed257600080fd5b818701915087601f830112610ee657600080fd5b813581811115610ef857610ef8610e6b565b604051601f8201601f19908116603f01168101908382118183101715610f2057610f20610e6b565b816040528281528a6020848701011115610f3957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610f7057600080fd5b610f7983610d92565b9150610f8760208401610d92565b90509250929050565b600181811c90821680610fa457607f821691505b602082108103610fc457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008351611029818460208801610d16565b83519083019061103d818360208801610d16565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561024b5761024b6110dd565b8082018082111561024b5761024b6110dd565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061114c90830184610d3a565b9695505050505050565b60006020828403121561116857600080fd5b815161061981610ce356fea26469706673582212202577add31e31ce7bfd9494224a545351562bb69d18ee643dbd2b71d7d8d6efbd64736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x149D CODESIZE SUB DUP1 PUSH3 0x149D DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x11F JUMP JUMPDEST PUSH1 0x0 PUSH3 0x42 DUP4 DUP3 PUSH3 0x218 JUMP JUMPDEST POP PUSH1 0x1 PUSH3 0x51 DUP3 DUP3 PUSH3 0x218 JUMP JUMPDEST POP POP POP PUSH3 0x2E4 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x9F JUMPI PUSH3 0x9F PUSH3 0x5A 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 0xCA JUMPI PUSH3 0xCA PUSH3 0x5A JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0xE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x10B JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0xEC JUMP JUMPDEST PUSH1 0x0 SWAP4 DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x159 DUP7 DUP4 DUP8 ADD PUSH3 0x70 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x170 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x17F DUP6 DUP3 DUP7 ADD PUSH3 0x70 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x19E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x1BF 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 0x1F DUP3 GT ISZERO PUSH3 0x213 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x1EE JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x20F JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1FA JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x234 JUMPI PUSH3 0x234 PUSH3 0x5A JUMP JUMPDEST PUSH3 0x24C DUP2 PUSH3 0x245 DUP5 SLOAD PUSH3 0x189 JUMP JUMPDEST DUP5 PUSH3 0x1C5 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x284 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x26B JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x20F JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x2B5 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x294 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x2D4 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x11A9 DUP1 PUSH3 0x2F4 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x164 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xCF9 JUMP JUMPDEST PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x251 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xD66 JUMP JUMPDEST PUSH2 0x124 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x2E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xDAE JUMP JUMPDEST PUSH2 0x30A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14F PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xDD8 JUMP JUMPDEST PUSH2 0x424 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xDD8 JUMP JUMPDEST PUSH2 0x455 JUMP JUMPDEST PUSH2 0x124 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x470 JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0xE14 JUMP JUMPDEST PUSH2 0x4D0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x556 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xE2F JUMP JUMPDEST PUSH2 0x565 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1D4 CALLDATASIZE PUSH1 0x4 PUSH2 0xE81 JUMP JUMPDEST PUSH2 0x574 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x1E7 CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x5AC JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0xF5D JUMP JUMPDEST PUSH2 0x620 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x230 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x24B JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x260 SWAP1 PUSH2 0xF90 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 0x28C SWAP1 PUSH2 0xF90 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2AE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D9 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 0x2BC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EE DUP3 PUSH2 0x64E 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 0x315 DUP3 PUSH2 0x470 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x387 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 JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x3A3 JUMPI POP PUSH2 0x3A3 DUP2 CALLER PUSH2 0x620 JUMP JUMPDEST PUSH2 0x415 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x37E JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 PUSH2 0x6B0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x42E CALLER DUP3 PUSH2 0x71E JUMP JUMPDEST PUSH2 0x44A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 DUP4 PUSH2 0x77D JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x574 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 0x24B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x37E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x53A 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 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3634B21037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x37E 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 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x260 SWAP1 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x570 CALLER DUP4 DUP4 PUSH2 0x8EE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x57E CALLER DUP4 PUSH2 0x71E JUMP JUMPDEST PUSH2 0x59A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH2 0x5A6 DUP5 DUP5 DUP5 DUP5 PUSH2 0x9BC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x5B7 DUP3 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5CE PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x5EE JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x619 JUMP JUMPDEST DUP1 PUSH2 0x5F8 DUP5 PUSH2 0x9EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x609 SWAP3 SWAP2 SWAP1 PUSH2 0x1017 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 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 PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x6AD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x37E JUMP JUMPDEST POP 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 0x6E5 DUP3 PUSH2 0x470 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 DUP1 PUSH2 0x72A DUP4 PUSH2 0x470 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 0x751 JUMPI POP PUSH2 0x751 DUP2 DUP6 PUSH2 0x620 JUMP JUMPDEST DUP1 PUSH2 0x775 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x76A DUP5 PUSH2 0x2E3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x790 DUP3 PUSH2 0x470 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x1046 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x818 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 0x37E JUMP JUMPDEST PUSH2 0x825 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xA82 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x838 DUP3 PUSH2 0x470 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x85E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x1046 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND DUP1 DUP7 MSTORE PUSH1 0x3 DUP6 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x0 NOT ADD SWAP1 SSTORE SWAP1 DUP8 AND DUP1 DUP7 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP7 DUP7 MSTORE PUSH1 0x2 SWAP1 SWAP5 MSTORE DUP3 DUP6 KECCAK256 DUP1 SLOAD SWAP1 SWAP3 AND DUP5 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP5 SWAP4 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x94F 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 0x37E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x9C7 DUP5 DUP5 DUP5 PUSH2 0x77D JUMP JUMPDEST PUSH2 0x9D3 DUP5 DUP5 DUP5 DUP5 PUSH2 0xB0A JUMP JUMPDEST PUSH2 0x5A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x108B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x9FC DUP4 PUSH2 0xC0B JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA1C JUMPI PUSH2 0xA1C PUSH2 0xE6B 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 0xA46 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH1 0x0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0xA50 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x5A6 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0xAC8 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xAC2 SWAP1 DUP5 SWAP1 PUSH2 0x10F3 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x5A6 JUMPI 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 DUP4 SWAP3 SWAP1 PUSH2 0xAFF SWAP1 DUP5 SWAP1 PUSH2 0x1106 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0xC00 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 0xB4E SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1119 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xB89 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB86 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1156 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xBE6 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xBB7 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 0xBBC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0xBDE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x108B 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 0x775 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0xC4A JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0xC76 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0xC94 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0xCAC JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0xCC0 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0xCD2 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x24B JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x6AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD0B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x619 DUP2 PUSH2 0xCE3 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD31 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xD19 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xD52 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xD16 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x619 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD3A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xDA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDCA DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xDED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDF6 DUP5 PUSH2 0xD92 JUMP JUMPDEST SWAP3 POP PUSH2 0xE04 PUSH1 0x20 DUP6 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x619 DUP3 PUSH2 0xD92 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE42 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE4B DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xE97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEA0 DUP6 PUSH2 0xD92 JUMP JUMPDEST SWAP4 POP PUSH2 0xEAE PUSH1 0x20 DUP7 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xED2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xEE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xEF8 JUMPI PUSH2 0xEF8 PUSH2 0xE6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0xF20 JUMPI PUSH2 0xF20 PUSH2 0xE6B JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0xF39 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF79 DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH2 0xF87 PUSH1 0x20 DUP5 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xFA4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xFC4 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x2D SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH13 0x1C881BDC88185C1C1C9BDD9959 PUSH1 0x9A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x1029 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0xD16 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x103D DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0xD16 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x37BBB732B9 PUSH1 0xD9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x24B JUMPI PUSH2 0x24B PUSH2 0x10DD JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x24B JUMPI PUSH2 0x24B PUSH2 0x10DD 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 0x114C SWAP1 DUP4 ADD DUP5 PUSH2 0xD3A JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1168 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x619 DUP2 PUSH2 0xCE3 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x25 PUSH24 0xADD31E31CE7BFD9494224A545351562BB69D18EE643DBD2B PUSH18 0xD7D8D6EFBD64736F6C634300081100330000 ",
"sourceMap": "628:16327:0:-:0;;;1390:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1456:5;:13;1464:5;1456;:13;:::i;:::-;-1:-1:-1;1479:7:0;:17;1489:7;1479;:17;:::i;:::-;;1390:113;;628:16327;;14:127:10;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:840;200:5;253:3;246:4;238:6;234:17;230:27;220:55;;271:1;268;261:12;220:55;294:13;;-1:-1:-1;;;;;356:10:10;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:10;;;518:2;490:31;486:40;474:53;;;542:18;;;562:22;;;539:46;536:72;;;588:18;;:::i;:::-;628:10;624:2;617:22;663:2;655:6;648:18;685:4;675:14;;730:3;725:2;720;712:6;708:15;704:24;701:33;698:53;;;747:1;744;737:12;698:53;769:1;760:10;;779:133;793:2;790:1;787:9;779:133;;;881:14;;;877:23;;871:30;850:14;;;846:23;;839:63;804:10;;;;779:133;;;954:1;932:15;;;928:24;;;921:35;;;;936:6;146:840;-1:-1:-1;;;;146:840:10:o;991:562::-;1090:6;1098;1151:2;1139:9;1130:7;1126:23;1122:32;1119:52;;;1167:1;1164;1157:12;1119:52;1194:16;;-1:-1:-1;;;;;1259:14:10;;;1256:34;;;1286:1;1283;1276:12;1256:34;1309:61;1362:7;1353:6;1342:9;1338:22;1309:61;:::i;:::-;1299:71;;1416:2;1405:9;1401:18;1395:25;1379:41;;1445:2;1435:8;1432:16;1429:36;;;1461:1;1458;1451:12;1429:36;;1484:63;1539:7;1528:8;1517:9;1513:24;1484:63;:::i;:::-;1474:73;;;991:562;;;;;:::o;1558:380::-;1637:1;1633:12;;;;1680;;;1701:61;;1755:4;1747:6;1743:17;1733:27;;1701:61;1808:2;1800:6;1797:14;1777:18;1774:38;1771:161;;1854:10;1849:3;1845:20;1842:1;1835:31;1889:4;1886:1;1879:15;1917:4;1914:1;1907:15;1771:161;;1558:380;;;:::o;2069:545::-;2171:2;2166:3;2163:11;2160:448;;;2207:1;2232:5;2228:2;2221:17;2277:4;2273:2;2263:19;2347:2;2335:10;2331:19;2328:1;2324:27;2318:4;2314:38;2383:4;2371:10;2368:20;2365:47;;;-1:-1:-1;2406:4:10;2365:47;2461:2;2456:3;2452:12;2449:1;2445:20;2439:4;2435:31;2425:41;;2516:82;2534:2;2527:5;2524:13;2516:82;;;2579:17;;;2560:1;2549:13;2516:82;;;2520:3;;;2160:448;2069:545;;;:::o;2790:1352::-;2910:10;;-1:-1:-1;;;;;2932:30:10;;2929:56;;;2965:18;;:::i;:::-;2994:97;3084:6;3044:38;3076:4;3070:11;3044:38;:::i;:::-;3038:4;2994:97;:::i;:::-;3146:4;;3210:2;3199:14;;3227:1;3222:663;;;;3929:1;3946:6;3943:89;;;-1:-1:-1;3998:19:10;;;3992:26;3943:89;-1:-1:-1;;2747:1:10;2743:11;;;2739:24;2735:29;2725:40;2771:1;2767:11;;;2722:57;4045:81;;3192:944;;3222:663;2016:1;2009:14;;;2053:4;2040:18;;-1:-1:-1;;3258:20:10;;;3376:236;3390:7;3387:1;3384:14;3376:236;;;3479:19;;;3473:26;3458:42;;3571:27;;;;3539:1;3527:14;;;;3406:19;;3376:236;;;3380:3;3640:6;3631:7;3628:19;3625:201;;;3701:19;;;3695:26;-1:-1:-1;;3784:1:10;3780:14;;;3796:3;3776:24;3772:37;3768:42;3753:58;3738:74;;3625:201;-1:-1:-1;;;;;3872:1:10;3856:14;;;3852:22;3839:36;;-1:-1:-1;2790:1352:10:o;:::-;628:16327:0;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_943": {
"entryPoint": null,
"id": 943,
"parameterSlots": 4,
"returnSlots": 0
},
"@_approve_776": {
"entryPoint": 1712,
"id": 776,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_213": {
"entryPoint": null,
"id": 213,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_930": {
"entryPoint": 2690,
"id": 930,
"parameterSlots": 4,
"returnSlots": 0
},
"@_checkOnERC721Received_884": {
"entryPoint": 2826,
"id": 884,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_445": {
"entryPoint": null,
"id": 445,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_479": {
"entryPoint": 1822,
"id": 479,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_1447": {
"entryPoint": null,
"id": 1447,
"parameterSlots": 0,
"returnSlots": 1
},
"@_ownerOf_427": {
"entryPoint": null,
"id": 427,
"parameterSlots": 1,
"returnSlots": 1
},
"@_requireMinted_822": {
"entryPoint": 1614,
"id": 822,
"parameterSlots": 1,
"returnSlots": 0
},
"@_safeTransfer_414": {
"entryPoint": 2492,
"id": 414,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_808": {
"entryPoint": 2286,
"id": 808,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_752": {
"entryPoint": 1917,
"id": 752,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_256": {
"entryPoint": 778,
"id": 256,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_117": {
"entryPoint": 1232,
"id": 117,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_274": {
"entryPoint": 739,
"id": 274,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_309": {
"entryPoint": 1568,
"id": 309,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1123": {
"entryPoint": null,
"id": 1123,
"parameterSlots": 1,
"returnSlots": 1
},
"@log10_2370": {
"entryPoint": 3083,
"id": 2370,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_155": {
"entryPoint": 593,
"id": 155,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_145": {
"entryPoint": 1136,
"id": 145,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_355": {
"entryPoint": 1109,
"id": 355,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_385": {
"entryPoint": 1396,
"id": 385,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_291": {
"entryPoint": 1381,
"id": 291,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1655": {
"entryPoint": null,
"id": 1655,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_93": {
"entryPoint": 511,
"id": 93,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_165": {
"entryPoint": 1366,
"id": 165,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1515": {
"entryPoint": 2543,
"id": 1515,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_204": {
"entryPoint": 1452,
"id": 204,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_336": {
"entryPoint": 1060,
"id": 336,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 3474,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3604,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 3933,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 3544,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 3713,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 3631,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 3502,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 3321,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 4438,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 3449,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_string": {
"entryPoint": 3386,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 4119,
"id": null,
"parameterSlots": 3,
"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": 4377,
"id": null,
"parameterSlots": 5,
"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": 3430,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4042,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4235,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4166,
"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_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__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_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__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
},
"checked_add_t_uint256": {
"entryPoint": 4358,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 4339,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 3350,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 3984,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 4317,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 3691,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_bytes4": {
"entryPoint": 3299,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:10527:10",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:10",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "58:87:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "123:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "132:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "125:6:10"
},
"nodeType": "YulFunctionCall",
"src": "125:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "125:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "81:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "92:5:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "103:3:10",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "108:10:10",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "99:3:10"
},
"nodeType": "YulFunctionCall",
"src": "99:20:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "88:3:10"
},
"nodeType": "YulFunctionCall",
"src": "88:32:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "78:2:10"
},
"nodeType": "YulFunctionCall",
"src": "78:43:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "71:6:10"
},
"nodeType": "YulFunctionCall",
"src": "71:51:10"
},
"nodeType": "YulIf",
"src": "68:71:10"
}
]
},
"name": "validator_revert_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "47:5:10",
"type": ""
}
],
"src": "14:131:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "219:176:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "265:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "277:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "267:6:10"
},
"nodeType": "YulFunctionCall",
"src": "267:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "267:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "240:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "249:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "236:3:10"
},
"nodeType": "YulFunctionCall",
"src": "236:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "261:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "232:3:10"
},
"nodeType": "YulFunctionCall",
"src": "232:32:10"
},
"nodeType": "YulIf",
"src": "229:52:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "290:36:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "316:9:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "303:12:10"
},
"nodeType": "YulFunctionCall",
"src": "303:23:10"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "294:5:10",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "359:5:10"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "335:23:10"
},
"nodeType": "YulFunctionCall",
"src": "335:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "335:30:10"
},
{
"nodeType": "YulAssignment",
"src": "374:15:10",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "384:5:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "374:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "185:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "196:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "208:6:10",
"type": ""
}
],
"src": "150:245:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "495:92:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "505:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "517:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "528:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "513:3:10"
},
"nodeType": "YulFunctionCall",
"src": "513:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "505:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "547:9:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "572:6:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "565:6:10"
},
"nodeType": "YulFunctionCall",
"src": "565:14:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "558:6:10"
},
"nodeType": "YulFunctionCall",
"src": "558:22:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "540:6:10"
},
"nodeType": "YulFunctionCall",
"src": "540:41:10"
},
"nodeType": "YulExpressionStatement",
"src": "540:41:10"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "464:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "475:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "486:4:10",
"type": ""
}
],
"src": "400:187:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "658:184:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "668:10:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "672:1:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "737:63:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "762:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "767:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "758:3:10"
},
"nodeType": "YulFunctionCall",
"src": "758:11:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "781:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "786:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "777:3:10"
},
"nodeType": "YulFunctionCall",
"src": "777:11:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "771:5:10"
},
"nodeType": "YulFunctionCall",
"src": "771:18:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "751:6:10"
},
"nodeType": "YulFunctionCall",
"src": "751:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "751:39:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "698:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "701:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "695:2:10"
},
"nodeType": "YulFunctionCall",
"src": "695:13:10"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "709:19:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "711:15:10",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "720:1:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "723:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "716:3:10"
},
"nodeType": "YulFunctionCall",
"src": "716:10:10"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "711:1:10"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "691:3:10",
"statements": []
},
"src": "687:113:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "820:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "825:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "816:3:10"
},
"nodeType": "YulFunctionCall",
"src": "816:16:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "834:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "809:6:10"
},
"nodeType": "YulFunctionCall",
"src": "809:27:10"
},
"nodeType": "YulExpressionStatement",
"src": "809:27:10"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "636:3:10",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "641:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:10",
"type": ""
}
],
"src": "592:250:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "897:221:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "907:26:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "927:5:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "921:5:10"
},
"nodeType": "YulFunctionCall",
"src": "921:12:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "911:6:10",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "949:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "954:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "942:6:10"
},
"nodeType": "YulFunctionCall",
"src": "942:19:10"
},
"nodeType": "YulExpressionStatement",
"src": "942:19:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1009:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1016:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1005:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1005:16:10"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1027:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1032:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1023:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1023:14:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1039:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "970:34:10"
},
"nodeType": "YulFunctionCall",
"src": "970:76:10"
},
"nodeType": "YulExpressionStatement",
"src": "970:76:10"
},
{
"nodeType": "YulAssignment",
"src": "1055:57:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1070:3:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1083:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1091:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1079:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1079:15:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1100:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1096:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1096:7:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1075:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1075:29:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1066:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1066:39:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1107:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1062:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1062:50:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1055:3:10"
}
]
}
]
},
"name": "abi_encode_string",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "874:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "881:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "889:3:10",
"type": ""
}
],
"src": "847:271:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1244:99:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1261:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1272:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1254:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1254:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "1254:21:10"
},
{
"nodeType": "YulAssignment",
"src": "1284:53:10",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1310:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1322:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1333:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1318:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1318:18:10"
}
],
"functionName": {
"name": "abi_encode_string",
"nodeType": "YulIdentifier",
"src": "1292:17:10"
},
"nodeType": "YulFunctionCall",
"src": "1292:45:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1284:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1213:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1224:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1235:4:10",
"type": ""
}
],
"src": "1123:220:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1418:110:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1464:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1473:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1476:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1466:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1466:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1466:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1439:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1448:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1435:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1435:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1460:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1431:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1431:32:10"
},
"nodeType": "YulIf",
"src": "1428:52:10"
},
{
"nodeType": "YulAssignment",
"src": "1489:33:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1512:9:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1499:12:10"
},
"nodeType": "YulFunctionCall",
"src": "1499:23:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1489:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1384:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1395:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1407:6:10",
"type": ""
}
],
"src": "1348:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1634:102:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1644:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1656:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1667:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1652:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1652:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1644:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1686:9:10"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1701:6:10"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1717:3:10",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1722:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1713:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1713:11:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1726:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1709:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1709:19:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1697:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1697:32:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1679:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1679:51:10"
},
"nodeType": "YulExpressionStatement",
"src": "1679:51:10"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1603:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1614:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1625:4:10",
"type": ""
}
],
"src": "1533:203:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1790:124:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1800:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1822:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1809:12:10"
},
"nodeType": "YulFunctionCall",
"src": "1809:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1800:5:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1892:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1901:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1904:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1894:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1894:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "1894:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1851:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1862:5:10"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1877:3:10",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1882:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1873:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1873:11:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1886:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1869:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1869:19:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1858:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1858:31:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1848:2:10"
},
"nodeType": "YulFunctionCall",
"src": "1848:42:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1841:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1841:50:10"
},
"nodeType": "YulIf",
"src": "1838:70:10"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1769:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1780:5:10",
"type": ""
}
],
"src": "1741:173:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2006:167:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2052:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2061:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2064:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2054:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2054:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "2054:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2027:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2036:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2023:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2023:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2048:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2019:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2019:32:10"
},
"nodeType": "YulIf",
"src": "2016:52:10"
},
{
"nodeType": "YulAssignment",
"src": "2077:39:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2106:9:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2087:18:10"
},
"nodeType": "YulFunctionCall",
"src": "2087:29:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2077:6:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2125:42:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2152:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2163:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2148:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2148:18:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2135:12:10"
},
"nodeType": "YulFunctionCall",
"src": "2135:32:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2125:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1964:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1975:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1987:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1995:6:10",
"type": ""
}
],
"src": "1919:254:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2282:224:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2328:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2337:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2340:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2330:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2330:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "2330:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2303:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2312:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2299:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2299:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2324:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2295:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2295:32:10"
},
"nodeType": "YulIf",
"src": "2292:52:10"
},
{
"nodeType": "YulAssignment",
"src": "2353:39:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2382:9:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2363:18:10"
},
"nodeType": "YulFunctionCall",
"src": "2363:29:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2353:6:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2401:48:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2434:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2445:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2430:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2430:18:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2411:18:10"
},
"nodeType": "YulFunctionCall",
"src": "2411:38:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2401:6:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2458:42:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2485:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2496:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2481:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2481:18:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2468:12:10"
},
"nodeType": "YulFunctionCall",
"src": "2468:32:10"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2458:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2232:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2243:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2255:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2263:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2271:6:10",
"type": ""
}
],
"src": "2178:328:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2581:116:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2627:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2636:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2639:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2629:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2629:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "2629:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2602:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2611:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2598:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2598:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2623:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2594:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2594:32:10"
},
"nodeType": "YulIf",
"src": "2591:52:10"
},
{
"nodeType": "YulAssignment",
"src": "2652:39:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2681:9:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2662:18:10"
},
"nodeType": "YulFunctionCall",
"src": "2662:29:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2652:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2547:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2558:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2570:6:10",
"type": ""
}
],
"src": "2511:186:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2803:76:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2813:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2825:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2836:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2821:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2821:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2813:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2855:9:10"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2866:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2848:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2848:25:10"
},
"nodeType": "YulExpressionStatement",
"src": "2848:25:10"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2772:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2783:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2794:4:10",
"type": ""
}
],
"src": "2702:177:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2968:263:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3014:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3023:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3026:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3016:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3016:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "3016:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2989:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2998:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2985:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2985:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3010:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2981:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2981:32:10"
},
"nodeType": "YulIf",
"src": "2978:52:10"
},
{
"nodeType": "YulAssignment",
"src": "3039:39:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3068:9:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3049:18:10"
},
"nodeType": "YulFunctionCall",
"src": "3049:29:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3039:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3087:45:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3117:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3128:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3113:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3113:18:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3100:12:10"
},
"nodeType": "YulFunctionCall",
"src": "3100:32:10"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3091:5:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3185:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3194:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3197:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3187:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3187:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "3187:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3154:5:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3175:5:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3168:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3168:13:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3161:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3161:21:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3151:2:10"
},
"nodeType": "YulFunctionCall",
"src": "3151:32:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3144:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3144:40:10"
},
"nodeType": "YulIf",
"src": "3141:60:10"
},
{
"nodeType": "YulAssignment",
"src": "3210:15:10",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3220:5:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3210:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2926:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2937:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2949:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2957:6:10",
"type": ""
}
],
"src": "2884:347:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3268:95:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3285:1:10",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3292:3:10",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3297:10:10",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3288:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3288:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3278:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3278:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "3278:31:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3325:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3328:4:10",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3318:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3318:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "3318:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3349:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3352:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3342:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3342:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "3342:15:10"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3236:127:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3498:1008:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3545:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3554:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3557:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3547:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3547:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "3547:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3519:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3528:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3515:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3515:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3540:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3511:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3511:33:10"
},
"nodeType": "YulIf",
"src": "3508:53:10"
},
{
"nodeType": "YulAssignment",
"src": "3570:39:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3599:9:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3580:18:10"
},
"nodeType": "YulFunctionCall",
"src": "3580:29:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3570:6:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3618:48:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3651:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3662:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3647:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3647:18:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3628:18:10"
},
"nodeType": "YulFunctionCall",
"src": "3628:38:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3618:6:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3675:42:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3702:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3713:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3698:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3698:18:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3685:12:10"
},
"nodeType": "YulFunctionCall",
"src": "3685:32:10"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3675:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3726:46:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3757:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3768:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3753:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3753:18:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3740:12:10"
},
"nodeType": "YulFunctionCall",
"src": "3740:32:10"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3730:6:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3781:28:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3791:18:10",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "3785:2:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3836:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3845:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3848:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3838:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3838:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "3838:12:10"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3824:6:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3832:2:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3821:2:10"
},
"nodeType": "YulFunctionCall",
"src": "3821:14:10"
},
"nodeType": "YulIf",
"src": "3818:34:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3861:32:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3875:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3886:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3871:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3871:22:10"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "3865:2:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3941:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3950:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3953:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3943:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3943:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "3943:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "3920:2:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3924:4:10",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3916:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3916:13:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3931:7:10"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3912:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3912:27:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3905:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3905:35:10"
},
"nodeType": "YulIf",
"src": "3902:55:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3966:26:10",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "3989:2:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3976:12:10"
},
"nodeType": "YulFunctionCall",
"src": "3976:16:10"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "3970:2:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4015:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4017:16:10"
},
"nodeType": "YulFunctionCall",
"src": "4017:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "4017:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "4007:2:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4011:2:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4004:2:10"
},
"nodeType": "YulFunctionCall",
"src": "4004:10:10"
},
"nodeType": "YulIf",
"src": "4001:36:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4046:17:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4060:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4056:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4056:7:10"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "4050:2:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4072:23:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4092:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4086:5:10"
},
"nodeType": "YulFunctionCall",
"src": "4086:9:10"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4076:6:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:71:10",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4126:6:10"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "4150:2:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4154:4:10",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4146:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4146:13:10"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "4161:2:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4142:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4142:22:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4166:2:10",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4138:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4138:31:10"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "4171:2:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4134:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4134:40:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4122:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4122:53:10"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "4108:10:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4234:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4236:16:10"
},
"nodeType": "YulFunctionCall",
"src": "4236:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "4236:18:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4193:10:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4205:2:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4190:2:10"
},
"nodeType": "YulFunctionCall",
"src": "4190:18:10"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4213:10:10"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4225:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4210:2:10"
},
"nodeType": "YulFunctionCall",
"src": "4210:22:10"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4187:2:10"
},
"nodeType": "YulFunctionCall",
"src": "4187:46:10"
},
"nodeType": "YulIf",
"src": "4184:72:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4272:2:10",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4276:10:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4265:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4265:22:10"
},
"nodeType": "YulExpressionStatement",
"src": "4265:22:10"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4303:6:10"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "4311:2:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4296:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4296:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "4296:18:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4360:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4369:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4372:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4362:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4362:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "4362:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "4337:2:10"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "4341:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4333:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4333:11:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4346:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4329:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4329:20:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4351:7:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4326:2:10"
},
"nodeType": "YulFunctionCall",
"src": "4326:33:10"
},
"nodeType": "YulIf",
"src": "4323:53:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4402:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4410:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4398:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4398:15:10"
},
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "4419:2:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4423:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4415:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4415:11:10"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "4428:2:10"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "4385:12:10"
},
"nodeType": "YulFunctionCall",
"src": "4385:46:10"
},
"nodeType": "YulExpressionStatement",
"src": "4385:46:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4455:6:10"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "4463:2:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4451:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4451:15:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4468:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4447:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4447:24:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4473:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4440:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4440:35:10"
},
"nodeType": "YulExpressionStatement",
"src": "4440:35:10"
},
{
"nodeType": "YulAssignment",
"src": "4484:16:10",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4494:6:10"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4484:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3440:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3451:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3463:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3471:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3479:6:10",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3487:6:10",
"type": ""
}
],
"src": "3368:1138:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4598:173:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4644:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4653:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4656:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4646:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4646:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "4646:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4619:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4628:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4615:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4615:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4640:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4611:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4611:32:10"
},
"nodeType": "YulIf",
"src": "4608:52:10"
},
{
"nodeType": "YulAssignment",
"src": "4669:39:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4698:9:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "4679:18:10"
},
"nodeType": "YulFunctionCall",
"src": "4679:29:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4669:6:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4717:48:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4750:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4761:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4746:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4746:18:10"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "4727:18:10"
},
"nodeType": "YulFunctionCall",
"src": "4727:38:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4717:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4556:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4567:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4579:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4587:6:10",
"type": ""
}
],
"src": "4511:260:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4831:325:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4841:22:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4855:1:10",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4858:4:10"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "4851:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4851:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4841:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4872:38:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4902:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4908:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4898:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4898:12:10"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4876:18:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4949:31:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4951:27:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4965:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4973:4:10",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4961:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4961:17:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4951:6:10"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4929:18:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4922:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4922:26:10"
},
"nodeType": "YulIf",
"src": "4919:61:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5039:111:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5060:1:10",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5067:3:10",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5072:10:10",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5063:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5063:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5053:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5053:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "5053:31:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5104:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5107:4:10",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5097:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5097:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "5097:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5132:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5135:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5125:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5125:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "5125:15:10"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4995:18:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5018:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5026:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5015:2:10"
},
"nodeType": "YulFunctionCall",
"src": "5015:14:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4992:2:10"
},
"nodeType": "YulFunctionCall",
"src": "4992:38:10"
},
"nodeType": "YulIf",
"src": "4989:161:10"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4811:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4820:6:10",
"type": ""
}
],
"src": "4776:380:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5335:223:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5352:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5363:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5345:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5345:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "5345:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5386:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5397:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5382:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5382:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5402:2:10",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5375:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5375:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "5375:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5425:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5436:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5421:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5421:18:10"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5441:34:10",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5414:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5414:62:10"
},
"nodeType": "YulExpressionStatement",
"src": "5414:62:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5496:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5507:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5492:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5492:18:10"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5512:3:10",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5485:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5485:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "5485:31:10"
},
{
"nodeType": "YulAssignment",
"src": "5525:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5537:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5548:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5533:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5533:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5525:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5312:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5326:4:10",
"type": ""
}
],
"src": "5161:397:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5737:251:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5754:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5765:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5747:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5747:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "5747:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5788:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5799:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5784:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5784:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5804:2:10",
"type": "",
"value": "61"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5777:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5777:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "5777:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5827:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5838:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5823:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5823:18:10"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5843:34:10",
"type": "",
"value": "ERC721: approve caller is not to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5816:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5816:62:10"
},
"nodeType": "YulExpressionStatement",
"src": "5816:62:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5898:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5909:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5894:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5894:18:10"
},
{
"hexValue": "6b656e206f776e6572206f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5914:31:10",
"type": "",
"value": "ken owner or approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5887:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5887:59:10"
},
"nodeType": "YulExpressionStatement",
"src": "5887:59:10"
},
{
"nodeType": "YulAssignment",
"src": "5955:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5967:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5978:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5963:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5963:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5955:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5714:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5728:4:10",
"type": ""
}
],
"src": "5563:425:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6167:235:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6184:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6195:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6177:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6177:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "6177:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6218:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6229:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6214:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6214:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6234:2:10",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6207:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6207:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "6207:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6257:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6268:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6253:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6253:18:10"
},
{
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6273:34:10",
"type": "",
"value": "ERC721: caller is not token owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6246:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6246:62:10"
},
"nodeType": "YulExpressionStatement",
"src": "6246:62:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6328:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6339:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6324:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6324:18:10"
},
{
"hexValue": "72206f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6344:15:10",
"type": "",
"value": "r or approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6317:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6317:43:10"
},
"nodeType": "YulExpressionStatement",
"src": "6317:43:10"
},
{
"nodeType": "YulAssignment",
"src": "6369:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6381:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6392:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6377:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6377:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6369:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6144:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6158:4:10",
"type": ""
}
],
"src": "5993:409:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6581:174:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6598:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6609:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6591:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6591:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "6591:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6632:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6643:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6628:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6628:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6648:2:10",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6621:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6621:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "6621:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6671:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6682:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6667:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6667:18:10"
},
{
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6687:26:10",
"type": "",
"value": "ERC721: invalid token ID"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6660:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6660:54:10"
},
"nodeType": "YulExpressionStatement",
"src": "6660:54:10"
},
{
"nodeType": "YulAssignment",
"src": "6723:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6735:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6746:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6731:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6731:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6723:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6558:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6572:4:10",
"type": ""
}
],
"src": "6407:348:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6934:231:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6951:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6962:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6944:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6944:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "6944:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6985:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6996:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6981:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6981:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7001:2:10",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6974:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6974:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "6974:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7024:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7035:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7020:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7020:18:10"
},
{
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7040:34:10",
"type": "",
"value": "ERC721: address zero is not a va"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7013:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7013:62:10"
},
"nodeType": "YulExpressionStatement",
"src": "7013:62:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7095:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7106:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7091:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7091:18:10"
},
{
"hexValue": "6c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7111:11:10",
"type": "",
"value": "lid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7084:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7084:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "7084:39:10"
},
{
"nodeType": "YulAssignment",
"src": "7132:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7144:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7155:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7140:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7140:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7132:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6911:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6925:4:10",
"type": ""
}
],
"src": "6760:405:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7357:309:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7367:27:10",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7387:6:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7381:5:10"
},
"nodeType": "YulFunctionCall",
"src": "7381:13:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7371:6:10",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7442:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7450:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7438:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7438:17:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7457:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7462:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "7403:34:10"
},
"nodeType": "YulFunctionCall",
"src": "7403:66:10"
},
"nodeType": "YulExpressionStatement",
"src": "7403:66:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "7478:29:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7495:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7500:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7491:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7491:16:10"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "7482:5:10",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7516:29:10",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7538:6:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7532:5:10"
},
"nodeType": "YulFunctionCall",
"src": "7532:13:10"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "7520:8:10",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7593:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7601:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7589:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7589:17:10"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "7608:5:10"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "7615:8:10"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "7554:34:10"
},
"nodeType": "YulFunctionCall",
"src": "7554:70:10"
},
"nodeType": "YulExpressionStatement",
"src": "7554:70:10"
},
{
"nodeType": "YulAssignment",
"src": "7633:27:10",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "7644:5:10"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "7651:8:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7640:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7640:20:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7633:3:10"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7325:3:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7330:6:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7338:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7349:3:10",
"type": ""
}
],
"src": "7170:496:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7845:227:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7862:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7873:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7855:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7855:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "7855:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7896:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7907:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7892:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7892:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7912:2:10",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7885:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7885:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "7885:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7935:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7946:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7931:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7931:18:10"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7951:34:10",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7924:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7924:62:10"
},
"nodeType": "YulExpressionStatement",
"src": "7924:62:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8006:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8017:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8002:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8002:18:10"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8022:7:10",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7995:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7995:35:10"
},
"nodeType": "YulExpressionStatement",
"src": "7995:35:10"
},
{
"nodeType": "YulAssignment",
"src": "8039:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8051:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8062:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8047:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8047:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8039:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7822:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7836:4:10",
"type": ""
}
],
"src": "7671:401:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8251:226:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8268:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8279:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8261:6:10"
},
"nodeType": "YulFunctionCall",
"src": "8261:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "8261:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8302:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8313:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8298:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8298:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8318:2:10",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8291:6:10"
},
"nodeType": "YulFunctionCall",
"src": "8291:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "8291:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8341:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8352:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8337:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8337:18:10"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8357:34:10",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8330:6:10"
},
"nodeType": "YulFunctionCall",
"src": "8330:62:10"
},
"nodeType": "YulExpressionStatement",
"src": "8330:62:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8412:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8423:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8408:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8408:18:10"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8428:6:10",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8401:6:10"
},
"nodeType": "YulFunctionCall",
"src": "8401:34:10"
},
"nodeType": "YulExpressionStatement",
"src": "8401:34:10"
},
{
"nodeType": "YulAssignment",
"src": "8444:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8456:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8467:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8452:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8452:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8444:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8228:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8242:4:10",
"type": ""
}
],
"src": "8077:400:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8656:175:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8673:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8684:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8666:6:10"
},
"nodeType": "YulFunctionCall",
"src": "8666:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "8666:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8707:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8718:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8703:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8703:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8723:2:10",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8696:6:10"
},
"nodeType": "YulFunctionCall",
"src": "8696:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "8696:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8746:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8757:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8742:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8742:18:10"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "8762:27:10",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8735:6:10"
},
"nodeType": "YulFunctionCall",
"src": "8735:55:10"
},
"nodeType": "YulExpressionStatement",
"src": "8735:55:10"
},
{
"nodeType": "YulAssignment",
"src": "8799:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8811:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8822:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8807:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8807:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8799:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8633:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8647:4:10",
"type": ""
}
],
"src": "8482:349:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9010:240:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9027:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9038:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9020:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9020:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "9020:21:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9061:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9072:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9057:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9057:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9077:2:10",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9050:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9050:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "9050:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9100:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9111:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9096:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9096:18:10"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9116:34:10",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9089:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9089:62:10"
},
"nodeType": "YulExpressionStatement",
"src": "9089:62:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9171:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9182:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9167:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9167:18:10"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9187:20:10",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9160:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9160:48:10"
},
"nodeType": "YulExpressionStatement",
"src": "9160:48:10"
},
{
"nodeType": "YulAssignment",
"src": "9217:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9229:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9240:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9225:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9225:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9217:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8987:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9001:4:10",
"type": ""
}
],
"src": "8836:414:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9287:95:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9304:1:10",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9311:3:10",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9316:10:10",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "9307:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9307:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9297:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9297:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "9297:31:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9344:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9347:4:10",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9337:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9337:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "9337:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9368:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9371:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9361:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9361:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "9361:15:10"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "9255:127:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9419:95:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9436:1:10",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9443:3:10",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9448:10:10",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "9439:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9439:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9429:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9429:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "9429:31:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9476:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9479:4:10",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9469:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9469:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "9469:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9500:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9503:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9493:6:10"
},
"nodeType": "YulFunctionCall",
"src": "9493:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "9493:15:10"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "9387:127:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9568:79:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9578:17:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9590:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9593:1:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9586:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9586:9:10"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "9578:4:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9619:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9621:16:10"
},
"nodeType": "YulFunctionCall",
"src": "9621:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "9621:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "9610:4:10"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9616:1:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9607:2:10"
},
"nodeType": "YulFunctionCall",
"src": "9607:11:10"
},
"nodeType": "YulIf",
"src": "9604:37:10"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9550:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9553:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "9559:4:10",
"type": ""
}
],
"src": "9519:128:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9700:77:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9710:16:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9721:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9724:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9717:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9717:9:10"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9710:3:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9749:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9751:16:10"
},
"nodeType": "YulFunctionCall",
"src": "9751:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "9751:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9741:1:10"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "9744:3:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9738:2:10"
},
"nodeType": "YulFunctionCall",
"src": "9738:10:10"
},
"nodeType": "YulIf",
"src": "9735:36:10"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "9683:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "9686:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "9692:3:10",
"type": ""
}
],
"src": "9652:125:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9985:286:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9995:29:10",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10013:3:10",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10018:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "10009:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10009:11:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10022:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10005:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10005:19:10"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "9999:2:10",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10040:9:10"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10055:6:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "10063:2:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10051:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10051:15:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10033:6:10"
},
"nodeType": "YulFunctionCall",
"src": "10033:34:10"
},
"nodeType": "YulExpressionStatement",
"src": "10033:34:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10087:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10098:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10083:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10083:18:10"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10107:6:10"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "10115:2:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10103:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10103:15:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10076:6:10"
},
"nodeType": "YulFunctionCall",
"src": "10076:43:10"
},
"nodeType": "YulExpressionStatement",
"src": "10076:43:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10139:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10150:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10135:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10135:18:10"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "10155:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10128:6:10"
},
"nodeType": "YulFunctionCall",
"src": "10128:34:10"
},
"nodeType": "YulExpressionStatement",
"src": "10128:34:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10182:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10193:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10178:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10178:18:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10198:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10171:6:10"
},
"nodeType": "YulFunctionCall",
"src": "10171:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "10171:31:10"
},
{
"nodeType": "YulAssignment",
"src": "10211:54:10",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "10237:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10249:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10260:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10245:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10245:19:10"
}
],
"functionName": {
"name": "abi_encode_string",
"nodeType": "YulIdentifier",
"src": "10219:17:10"
},
"nodeType": "YulFunctionCall",
"src": "10219:46:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10211:4:10"
}
]
}
]
},
"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": "9930:9:10",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "9941:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9949:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9957:6:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9965:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9976:4:10",
"type": ""
}
],
"src": "9782:489:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10356:169:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10402:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10411:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10414:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10404:6:10"
},
"nodeType": "YulFunctionCall",
"src": "10404:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "10404:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10377:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10386:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10373:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10373:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10398:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10369:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10369:32:10"
},
"nodeType": "YulIf",
"src": "10366:52:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10427:29:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10446:9:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10440:5:10"
},
"nodeType": "YulFunctionCall",
"src": "10440:16:10"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10431:5:10",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10489:5:10"
}
],
"functionName": {
"name": "validator_revert_bytes4",
"nodeType": "YulIdentifier",
"src": "10465:23:10"
},
"nodeType": "YulFunctionCall",
"src": "10465:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "10465:30:10"
},
{
"nodeType": "YulAssignment",
"src": "10504:15:10",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "10514:5:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10504:6:10"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10322:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10333:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10345:6:10",
"type": ""
}
],
"src": "10276:249:10"
}
]
},
"contents": "{\n { }\n function validator_revert_bytes4(value)\n {\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\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_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 copy_memory_to_memory_with_cleanup(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 mstore(add(dst, length), 0)\n }\n function abi_encode_string(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n copy_memory_to_memory_with_cleanup(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_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_string(value0, add(headStart, 32))\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_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_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_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_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_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_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 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 let value := calldataload(add(headStart, 32))\n if iszero(eq(value, iszero(iszero(value)))) { revert(0, 0) }\n value1 := value\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\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 let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := calldataload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(0, 0) }\n calldatacopy(add(memPtr, 32), add(_2, 32), _3)\n mstore(add(add(memPtr, _3), 32), 0)\n value3 := memPtr\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 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 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_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 61)\n mstore(add(headStart, 64), \"ERC721: approve caller is not to\")\n mstore(add(headStart, 96), \"ken owner or approved for all\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC721: caller is not token owne\")\n mstore(add(headStart, 96), \"r or approved\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 24)\n mstore(add(headStart, 64), \"ERC721: invalid token ID\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__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: address zero is not a va\")\n mstore(add(headStart, 96), \"lid owner\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n {\n let length := mload(value0)\n copy_memory_to_memory_with_cleanup(add(value0, 0x20), pos, length)\n let end_1 := add(pos, length)\n let length_1 := mload(value1)\n copy_memory_to_memory_with_cleanup(add(value1, 0x20), end_1, length_1)\n end := add(end_1, length_1)\n }\n function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 37)\n mstore(add(headStart, 64), \"ERC721: transfer from incorrect \")\n mstore(add(headStart, 96), \"owner\")\n tail := add(headStart, 128)\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_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 panic_error_0x12()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n diff := sub(x, y)\n if gt(diff, x) { panic_error_0x11() }\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n sum := add(x, y)\n if gt(x, sum) { panic_error_0x11() }\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_string(value3, add(headStart, 128))\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}",
"id": 10,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101b3578063b88d4fde146101c6578063c87b56dd146101d9578063e985e9c5146101ec57600080fd5b80636352211e1461017757806370a082311461018a57806395d89b41146101ab57600080fd5b806301ffc9a7146100d457806306fdde03146100fc578063081812fc14610111578063095ea7b31461013c57806323b872dd1461015157806342842e0e14610164575b600080fd5b6100e76100e2366004610cf9565b6101ff565b60405190151581526020015b60405180910390f35b610104610251565b6040516100f39190610d66565b61012461011f366004610d79565b6102e3565b6040516001600160a01b0390911681526020016100f3565b61014f61014a366004610dae565b61030a565b005b61014f61015f366004610dd8565b610424565b61014f610172366004610dd8565b610455565b610124610185366004610d79565b610470565b61019d610198366004610e14565b6104d0565b6040519081526020016100f3565b610104610556565b61014f6101c1366004610e2f565b610565565b61014f6101d4366004610e81565b610574565b6101046101e7366004610d79565b6105ac565b6100e76101fa366004610f5d565b610620565b60006001600160e01b031982166380ac58cd60e01b148061023057506001600160e01b03198216635b5e139f60e01b145b8061024b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461026090610f90565b80601f016020809104026020016040519081016040528092919081815260200182805461028c90610f90565b80156102d95780601f106102ae576101008083540402835291602001916102d9565b820191906000526020600020905b8154815290600101906020018083116102bc57829003601f168201915b5050505050905090565b60006102ee8261064e565b506000908152600460205260409020546001600160a01b031690565b600061031582610470565b9050806001600160a01b0316836001600160a01b0316036103875760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806103a357506103a38133610620565b6104155760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161037e565b61041f83836106b0565b505050565b61042e338261071e565b61044a5760405162461bcd60e51b815260040161037e90610fca565b61041f83838361077d565b61041f83838360405180602001604052806000815250610574565b6000818152600260205260408120546001600160a01b03168061024b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161037e565b60006001600160a01b03821661053a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161037e565b506001600160a01b031660009081526003602052604090205490565b60606001805461026090610f90565b6105703383836108ee565b5050565b61057e338361071e565b61059a5760405162461bcd60e51b815260040161037e90610fca565b6105a6848484846109bc565b50505050565b60606105b78261064e565b60006105ce60408051602081019091526000815290565b905060008151116105ee5760405180602001604052806000815250610619565b806105f8846109ef565b604051602001610609929190611017565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000818152600260205260409020546001600160a01b03166106ad5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161037e565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906106e582610470565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061072a83610470565b9050806001600160a01b0316846001600160a01b0316148061075157506107518185610620565b806107755750836001600160a01b031661076a846102e3565b6001600160a01b0316145b949350505050565b826001600160a01b031661079082610470565b6001600160a01b0316146107b65760405162461bcd60e51b815260040161037e90611046565b6001600160a01b0382166108185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161037e565b6108258383836001610a82565b826001600160a01b031661083882610470565b6001600160a01b03161461085e5760405162461bcd60e51b815260040161037e90611046565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361094f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161037e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6109c784848461077d565b6109d384848484610b0a565b6105a65760405162461bcd60e51b815260040161037e9061108b565b606060006109fc83610c0b565b600101905060008167ffffffffffffffff811115610a1c57610a1c610e6b565b6040519080825280601f01601f191660200182016040528015610a46576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610a5057509392505050565b60018111156105a6576001600160a01b03841615610ac8576001600160a01b03841660009081526003602052604081208054839290610ac29084906110f3565b90915550505b6001600160a01b038316156105a6576001600160a01b03831660009081526003602052604081208054839290610aff908490611106565b909155505050505050565b60006001600160a01b0384163b15610c0057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610b4e903390899088908890600401611119565b6020604051808303816000875af1925050508015610b89575060408051601f3d908101601f19168201909252610b8691810190611156565b60015b610be6573d808015610bb7576040519150601f19603f3d011682016040523d82523d6000602084013e610bbc565b606091505b508051600003610bde5760405162461bcd60e51b815260040161037e9061108b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610775565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610c4a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310610c76576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310610c9457662386f26fc10000830492506010015b6305f5e1008310610cac576305f5e100830492506008015b6127108310610cc057612710830492506004015b60648310610cd2576064830492506002015b600a831061024b5760010192915050565b6001600160e01b0319811681146106ad57600080fd5b600060208284031215610d0b57600080fd5b813561061981610ce3565b60005b83811015610d31578181015183820152602001610d19565b50506000910152565b60008151808452610d52816020860160208601610d16565b601f01601f19169290920160200192915050565b6020815260006106196020830184610d3a565b600060208284031215610d8b57600080fd5b5035919050565b80356001600160a01b0381168114610da957600080fd5b919050565b60008060408385031215610dc157600080fd5b610dca83610d92565b946020939093013593505050565b600080600060608486031215610ded57600080fd5b610df684610d92565b9250610e0460208501610d92565b9150604084013590509250925092565b600060208284031215610e2657600080fd5b61061982610d92565b60008060408385031215610e4257600080fd5b610e4b83610d92565b915060208301358015158114610e6057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610e9757600080fd5b610ea085610d92565b9350610eae60208601610d92565b925060408501359150606085013567ffffffffffffffff80821115610ed257600080fd5b818701915087601f830112610ee657600080fd5b813581811115610ef857610ef8610e6b565b604051601f8201601f19908116603f01168101908382118183101715610f2057610f20610e6b565b816040528281528a6020848701011115610f3957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610f7057600080fd5b610f7983610d92565b9150610f8760208401610d92565b90509250929050565b600181811c90821680610fa457607f821691505b602082108103610fc457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008351611029818460208801610d16565b83519083019061103d818360208801610d16565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561024b5761024b6110dd565b8082018082111561024b5761024b6110dd565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061114c90830184610d3a565b9695505050505050565b60006020828403121561116857600080fd5b815161061981610ce356fea26469706673582212202577add31e31ce7bfd9494224a545351562bb69d18ee643dbd2b71d7d8d6efbd64736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x164 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xCF9 JUMP JUMPDEST PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x251 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xD66 JUMP JUMPDEST PUSH2 0x124 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x2E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xDAE JUMP JUMPDEST PUSH2 0x30A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14F PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xDD8 JUMP JUMPDEST PUSH2 0x424 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xDD8 JUMP JUMPDEST PUSH2 0x455 JUMP JUMPDEST PUSH2 0x124 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x470 JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0xE14 JUMP JUMPDEST PUSH2 0x4D0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x556 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xE2F JUMP JUMPDEST PUSH2 0x565 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1D4 CALLDATASIZE PUSH1 0x4 PUSH2 0xE81 JUMP JUMPDEST PUSH2 0x574 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x1E7 CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x5AC JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0xF5D JUMP JUMPDEST PUSH2 0x620 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x230 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x24B JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x260 SWAP1 PUSH2 0xF90 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 0x28C SWAP1 PUSH2 0xF90 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2AE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D9 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 0x2BC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EE DUP3 PUSH2 0x64E 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 0x315 DUP3 PUSH2 0x470 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x387 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 JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x3A3 JUMPI POP PUSH2 0x3A3 DUP2 CALLER PUSH2 0x620 JUMP JUMPDEST PUSH2 0x415 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x37E JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 PUSH2 0x6B0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x42E CALLER DUP3 PUSH2 0x71E JUMP JUMPDEST PUSH2 0x44A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 DUP4 PUSH2 0x77D JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x574 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 0x24B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x37E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x53A 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 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3634B21037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x37E 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 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x260 SWAP1 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x570 CALLER DUP4 DUP4 PUSH2 0x8EE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x57E CALLER DUP4 PUSH2 0x71E JUMP JUMPDEST PUSH2 0x59A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH2 0x5A6 DUP5 DUP5 DUP5 DUP5 PUSH2 0x9BC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x5B7 DUP3 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5CE PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x5EE JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x619 JUMP JUMPDEST DUP1 PUSH2 0x5F8 DUP5 PUSH2 0x9EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x609 SWAP3 SWAP2 SWAP1 PUSH2 0x1017 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 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 PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x6AD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x37E JUMP JUMPDEST POP 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 0x6E5 DUP3 PUSH2 0x470 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 DUP1 PUSH2 0x72A DUP4 PUSH2 0x470 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 0x751 JUMPI POP PUSH2 0x751 DUP2 DUP6 PUSH2 0x620 JUMP JUMPDEST DUP1 PUSH2 0x775 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x76A DUP5 PUSH2 0x2E3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x790 DUP3 PUSH2 0x470 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x1046 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x818 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 0x37E JUMP JUMPDEST PUSH2 0x825 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xA82 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x838 DUP3 PUSH2 0x470 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x85E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x1046 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND DUP1 DUP7 MSTORE PUSH1 0x3 DUP6 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x0 NOT ADD SWAP1 SSTORE SWAP1 DUP8 AND DUP1 DUP7 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP7 DUP7 MSTORE PUSH1 0x2 SWAP1 SWAP5 MSTORE DUP3 DUP6 KECCAK256 DUP1 SLOAD SWAP1 SWAP3 AND DUP5 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP5 SWAP4 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x94F 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 0x37E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x9C7 DUP5 DUP5 DUP5 PUSH2 0x77D JUMP JUMPDEST PUSH2 0x9D3 DUP5 DUP5 DUP5 DUP5 PUSH2 0xB0A JUMP JUMPDEST PUSH2 0x5A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x108B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x9FC DUP4 PUSH2 0xC0B JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA1C JUMPI PUSH2 0xA1C PUSH2 0xE6B 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 0xA46 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH1 0x0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0xA50 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x5A6 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0xAC8 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xAC2 SWAP1 DUP5 SWAP1 PUSH2 0x10F3 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x5A6 JUMPI 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 DUP4 SWAP3 SWAP1 PUSH2 0xAFF SWAP1 DUP5 SWAP1 PUSH2 0x1106 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0xC00 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 0xB4E SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1119 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xB89 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB86 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1156 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xBE6 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xBB7 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 0xBBC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0xBDE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x108B 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 0x775 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0xC4A JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0xC76 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0xC94 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0xCAC JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0xCC0 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0xCD2 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x24B JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x6AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD0B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x619 DUP2 PUSH2 0xCE3 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD31 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xD19 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xD52 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xD16 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x619 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD3A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xDA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDCA DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xDED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDF6 DUP5 PUSH2 0xD92 JUMP JUMPDEST SWAP3 POP PUSH2 0xE04 PUSH1 0x20 DUP6 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x619 DUP3 PUSH2 0xD92 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE42 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE4B DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xE97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEA0 DUP6 PUSH2 0xD92 JUMP JUMPDEST SWAP4 POP PUSH2 0xEAE PUSH1 0x20 DUP7 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xED2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xEE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xEF8 JUMPI PUSH2 0xEF8 PUSH2 0xE6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0xF20 JUMPI PUSH2 0xF20 PUSH2 0xE6B JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0xF39 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF79 DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH2 0xF87 PUSH1 0x20 DUP5 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xFA4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xFC4 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x2D SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH13 0x1C881BDC88185C1C1C9BDD9959 PUSH1 0x9A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x1029 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0xD16 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x103D DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0xD16 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x40 DUP3 ADD MSTORE PUSH5 0x37BBB732B9 PUSH1 0xD9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x24B JUMPI PUSH2 0x24B PUSH2 0x10DD JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x24B JUMPI PUSH2 0x24B PUSH2 0x10DD 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 0x114C SWAP1 DUP4 ADD DUP5 PUSH2 0xD3A JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1168 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x619 DUP2 PUSH2 0xCE3 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x25 PUSH24 0xADD31E31CE7BFD9494224A545351562BB69D18EE643DBD2B PUSH18 0xD7D8D6EFBD64736F6C634300081100330000 ",
"sourceMap": "628:16327:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300;;;;;;:::i;:::-;;:::i;:::-;;;565:14:10;;558:22;540:41;;528:2;513:18;1570:300:0;;;;;;;;2471:98;;;:::i;:::-;;;;;;;:::i;3935:167::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:10;;;1679:51;;1667:2;1652:18;3935:167:0;1533:203:10;3468:406:0;;;;;;:::i;:::-;;:::i;:::-;;4612:326;;;;;;:::i;:::-;;:::i;5004:179::-;;;;;;:::i;:::-;;:::i;2190:219::-;;;;;;:::i;:::-;;:::i;1929:204::-;;;;;;:::i;:::-;;:::i;:::-;;;2848:25:10;;;2836:2;2821:18;1929:204:0;2702:177:10;2633:102:0;;;:::i;4169:153::-;;;;;;:::i;:::-;;:::i;5249:314::-;;;;;;:::i;:::-;;:::i;2801:276::-;;;;;;:::i;:::-;;:::i;4388:162::-;;;;;;:::i;:::-;;:::i;1570:300::-;1672:4;-1:-1:-1;;;;;;1707:40:0;;-1:-1:-1;;;1707:40:0;;:104;;-1:-1:-1;;;;;;;1763:48:0;;-1:-1:-1;;;1763:48:0;1707:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:7;;;1827:36:0;1688:175;1570:300;-1:-1:-1;;1570:300:0:o;2471:98::-;2525:13;2557:5;2550:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2471:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;-1:-1:-1;4071:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;4071:24:0;;3935:167::o;3468:406::-;3548:13;3564:23;3579:7;3564:14;:23::i;:::-;3548:39;;3611:5;-1:-1:-1;;;;;3605:11:0;:2;-1:-1:-1;;;;;3605:11:0;;3597:57;;;;-1:-1:-1;;;3597:57:0;;5363:2:10;3597:57:0;;;5345:21:10;5402:2;5382:18;;;5375:30;5441:34;5421:18;;;5414:62;-1:-1:-1;;;5492:18:10;;;5485:31;5533:19;;3597:57:0;;;;;;;;;719:10:5;-1:-1:-1;;;;;3686:21:0;;;;:62;;-1:-1:-1;3711:37:0;3728:5;719:10:5;4388:162:0;:::i;3711:37::-;3665:170;;;;-1:-1:-1;;;3665:170:0;;5765:2:10;3665:170:0;;;5747:21:10;5804:2;5784:18;;;5777:30;5843:34;5823:18;;;5816:62;5914:31;5894:18;;;5887:59;5963:19;;3665:170:0;5563:425:10;3665:170:0;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3538:336;3468:406;;:::o;4612:326::-;4801:41;719:10:5;4834:7:0;4801:18;:41::i;:::-;4793:99;;;;-1:-1:-1;;;4793:99:0;;;;;;;:::i;:::-;4903:28;4913:4;4919:2;4923:7;4903:9;:28::i;5004:179::-;5137:39;5154:4;5160:2;5164:7;5137:39;;;;;;;;;;;;:16;:39::i;2190:219::-;2262:7;6930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6930:16:0;;2324:56;;;;-1:-1:-1;;;2324:56:0;;6609:2:10;2324:56:0;;;6591:21:10;6648:2;6628:18;;;6621:30;-1:-1:-1;;;6667:18:10;;;6660:54;6731:18;;2324:56:0;6407:348:10;1929:204:0;2001:7;-1:-1:-1;;;;;2028:19:0;;2020:73;;;;-1:-1:-1;;;2020:73:0;;6962:2:10;2020:73:0;;;6944:21:10;7001:2;6981:18;;;6974:30;7040:34;7020:18;;;7013:62;-1:-1:-1;;;7091:18:10;;;7084:39;7140:19;;2020:73:0;6760:405:10;2020:73:0;-1:-1:-1;;;;;;2110:16:0;;;;;:9;:16;;;;;;;1929:204::o;2633:102::-;2689:13;2721:7;2714:14;;;;;:::i;4169:153::-;4263:52;719:10:5;4296:8:0;4306;4263:18;:52::i;:::-;4169:153;;:::o;5249:314::-;5417:41;719:10:5;5450:7:0;5417:18;:41::i;:::-;5409:99;;;;-1:-1:-1;;;5409:99:0;;;;;;;:::i;:::-;5518:38;5532:4;5538:2;5542:7;5551:4;5518:13;:38::i;:::-;5249:314;;;;:::o;2801:276::-;2874:13;2899:23;2914:7;2899:14;:23::i;:::-;2933:21;2957:10;3395:9;;;;;;;;;-1:-1:-1;3395:9:0;;;3319:92;2957:10;2933:34;;3008:1;2990:7;2984:21;:25;:86;;;;;;;;;;;;;;;;;3036:7;3045:18;:7;:16;:18::i;:::-;3019:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2984:86;2977:93;2801:276;-1:-1:-1;;;2801:276:0:o;4388:162::-;-1:-1:-1;;;;;4508:25:0;;;4485:4;4508:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4388:162::o;13466:133::-;7321:4;6930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;6930:16:0;13539:53;;;;-1:-1:-1;;;13539:53:0;;6609:2:10;13539:53:0;;;6591:21:10;6648:2;6628:18;;;6621:30;-1:-1:-1;;;6667:18:10;;;6660:54;6731:18;;13539:53:0;6407:348:10;13539:53:0;13466:133;:::o;12768:171::-;12842:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12842:29:0;-1:-1:-1;;;;;12842:29:0;;;;;;;;:24;;12895:23;12842:24;12895:14;:23::i;:::-;-1:-1:-1;;;;;12886:46:0;;;;;;;;;;;12768:171;;:::o;7540:261::-;7633:4;7649:13;7665:23;7680:7;7665:14;:23::i;:::-;7649:39;;7717:5;-1:-1:-1;;;;;7706:16:0;:7;-1:-1:-1;;;;;7706:16:0;;:52;;;;7726:32;7743:5;7750:7;7726:16;:32::i;:::-;7706:87;;;;7786:7;-1:-1:-1;;;;;7762:31:0;:20;7774:7;7762:11;:20::i;:::-;-1:-1:-1;;;;;7762:31:0;;7706:87;7698:96;7540:261;-1:-1:-1;;;;7540:261:0:o;11423:1233::-;11577:4;-1:-1:-1;;;;;11550:31:0;:23;11565:7;11550:14;:23::i;:::-;-1:-1:-1;;;;;11550:31:0;;11542:81;;;;-1:-1:-1;;;11542:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11641:16:0;;11633:65;;;;-1:-1:-1;;;11633:65:0;;8279:2:10;11633:65:0;;;8261:21:10;8318:2;8298:18;;;8291:30;8357:34;8337:18;;;8330:62;-1:-1:-1;;;8408:18:10;;;8401:34;8452:19;;11633:65:0;8077:400:10;11633:65:0;11709:42;11730:4;11736:2;11740:7;11749:1;11709:20;:42::i;:::-;11878:4;-1:-1:-1;;;;;11851:31:0;:23;11866:7;11851:14;:23::i;:::-;-1:-1:-1;;;;;11851:31:0;;11843:81;;;;-1:-1:-1;;;11843:81:0;;;;;;;:::i;:::-;11993:24;;;;:15;:24;;;;;;;;11986:31;;-1:-1:-1;;;;;;11986:31:0;;;;;;-1:-1:-1;;;;;12461:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;12461:20:0;;;12495:13;;;;;;;;;:18;;11986:31;12495:18;;;12533:16;;;:7;:16;;;;;;:21;;;;;;;;;;12570:27;;12009:7;;12570:27;;;3538:336;3468:406;;:::o;13075:307::-;13225:8;-1:-1:-1;;;;;13216:17:0;:5;-1:-1:-1;;;;;13216:17:0;;13208:55;;;;-1:-1:-1;;;13208:55:0;;8684:2:10;13208:55:0;;;8666:21:10;8723:2;8703:18;;;8696:30;8762:27;8742:18;;;8735:55;8807:18;;13208:55:0;8482:349:10;13208:55:0;-1:-1:-1;;;;;13273:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13273:46:0;;;;;;;;;;13334:41;;540::10;;;13334::0;;513:18:10;13334:41:0;;;;;;;13075:307;;;:::o;6424:305::-;6574:28;6584:4;6590:2;6594:7;6574:9;:28::i;:::-;6620:47;6643:4;6649:2;6653:7;6662:4;6620:22;:47::i;:::-;6612:110;;;;-1:-1:-1;;;6612:110:0;;;;;;;:::i;415:696:6:-;471:13;520:14;537:17;548:5;537:10;:17::i;:::-;557:1;537:21;520:38;;572:20;606:6;595:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;595:18:6;-1:-1:-1;572:41:6;-1:-1:-1;733:28:6;;;749:2;733:28;788:280;-1:-1:-1;;819:5:6;-1:-1:-1;;;953:2:6;942:14;;937:30;819:5;924:44;1012:2;1003:11;;;-1:-1:-1;1032:21:6;788:280;1032:21;-1:-1:-1;1088:6:6;415:696;-1:-1:-1;;;415:696:6:o;15698:396:0:-;15882:1;15870:9;:13;15866:222;;;-1:-1:-1;;;;;15903:18:0;;;15899:85;;-1:-1:-1;;;;;15941:15:0;;;;;;:9;:15;;;;;:28;;15960:9;;15941:15;:28;;15960:9;;15941:28;:::i;:::-;;;;-1:-1:-1;;15899:85:0;-1:-1:-1;;;;;16001:16:0;;;15997:81;;-1:-1:-1;;;;;16037:13:0;;;;;;:9;:13;;;;;:26;;16054:9;;16037:13;:26;;16054:9;;16037:26;:::i;:::-;;;;-1:-1:-1;;15698:396:0;;;;:::o;14151:831::-;14300:4;-1:-1:-1;;;;;14320:13:0;;1465:19:4;:23;14316:660:0;;14355:71;;-1:-1:-1;;;14355:71:0;;-1:-1:-1;;;;;14355:36:0;;;;;:71;;719:10:5;;14406:4:0;;14412:7;;14421:4;;14355:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14355:71:0;;;;;;;;-1:-1:-1;;14355:71:0;;;;;;;;;;;;:::i;:::-;;;14351:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14593:6;:13;14610:1;14593:18;14589:321;;14635:60;;-1:-1:-1;;;14635:60:0;;;;;;;:::i;14589:321::-;14862:6;14856:13;14847:6;14843:2;14839:15;14832:38;14351:573;-1:-1:-1;;;;;;14476:51:0;-1:-1:-1;;;14476:51:0;;-1:-1:-1;14469:58:0;;14316:660;-1:-1:-1;14961:4:0;14151:831;;;;;;:::o;9889:890:9:-;9942:7;;-1:-1:-1;;;10017:15:9;;10013:99;;-1:-1:-1;;;10052:15:9;;;-1:-1:-1;10095:2:9;10085:12;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;-1:-1:-1;10207:2:9;10197:12;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;-1:-1:-1;10319:2:9;10309:12;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;-1:-1:-1;10429:1:9;10419:11;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;-1:-1:-1;10538:1:9;10528:11;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;-1:-1:-1;10647:1:9;10637:11;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;10766:6;9889:890;-1:-1:-1;;9889:890:9:o;14:131:10:-;-1:-1:-1;;;;;;88:32:10;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:10;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:10;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:10:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:10;;1348:180;-1:-1:-1;1348:180:10:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:10;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:10:o;2178:328::-;2255:6;2263;2271;2324:2;2312:9;2303:7;2299:23;2295:32;2292:52;;;2340:1;2337;2330:12;2292:52;2363:29;2382:9;2363:29;:::i;:::-;2353:39;;2411:38;2445:2;2434:9;2430:18;2411:38;:::i;:::-;2401:48;;2496:2;2485:9;2481:18;2468:32;2458:42;;2178:328;;;;;:::o;2511:186::-;2570:6;2623:2;2611:9;2602:7;2598:23;2594:32;2591:52;;;2639:1;2636;2629:12;2591:52;2662:29;2681:9;2662:29;:::i;2884:347::-;2949:6;2957;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3049:29;3068:9;3049:29;:::i;:::-;3039:39;;3128:2;3117:9;3113:18;3100:32;3175:5;3168:13;3161:21;3154:5;3151:32;3141:60;;3197:1;3194;3187:12;3141:60;3220:5;3210:15;;;2884:347;;;;;:::o;3236:127::-;3297:10;3292:3;3288:20;3285:1;3278:31;3328:4;3325:1;3318:15;3352:4;3349:1;3342:15;3368:1138;3463:6;3471;3479;3487;3540:3;3528:9;3519:7;3515:23;3511:33;3508:53;;;3557:1;3554;3547:12;3508:53;3580:29;3599:9;3580:29;:::i;:::-;3570:39;;3628:38;3662:2;3651:9;3647:18;3628:38;:::i;:::-;3618:48;;3713:2;3702:9;3698:18;3685:32;3675:42;;3768:2;3757:9;3753:18;3740:32;3791:18;3832:2;3824:6;3821:14;3818:34;;;3848:1;3845;3838:12;3818:34;3886:6;3875:9;3871:22;3861:32;;3931:7;3924:4;3920:2;3916:13;3912:27;3902:55;;3953:1;3950;3943:12;3902:55;3989:2;3976:16;4011:2;4007;4004:10;4001:36;;;4017:18;;:::i;:::-;4092:2;4086:9;4060:2;4146:13;;-1:-1:-1;;4142:22:10;;;4166:2;4138:31;4134:40;4122:53;;;4190:18;;;4210:22;;;4187:46;4184:72;;;4236:18;;:::i;:::-;4276:10;4272:2;4265:22;4311:2;4303:6;4296:18;4351:7;4346:2;4341;4337;4333:11;4329:20;4326:33;4323:53;;;4372:1;4369;4362:12;4323:53;4428:2;4423;4419;4415:11;4410:2;4402:6;4398:15;4385:46;4473:1;4468:2;4463;4455:6;4451:15;4447:24;4440:35;4494:6;4484:16;;;;;;;3368:1138;;;;;;;:::o;4511:260::-;4579:6;4587;4640:2;4628:9;4619:7;4615:23;4611:32;4608:52;;;4656:1;4653;4646:12;4608:52;4679:29;4698:9;4679:29;:::i;:::-;4669:39;;4727:38;4761:2;4750:9;4746:18;4727:38;:::i;:::-;4717:48;;4511:260;;;;;:::o;4776:380::-;4855:1;4851:12;;;;4898;;;4919:61;;4973:4;4965:6;4961:17;4951:27;;4919:61;5026:2;5018:6;5015:14;4995:18;4992:38;4989:161;;5072:10;5067:3;5063:20;5060:1;5053:31;5107:4;5104:1;5097:15;5135:4;5132:1;5125:15;4989:161;;4776:380;;;:::o;5993:409::-;6195:2;6177:21;;;6234:2;6214:18;;;6207:30;6273:34;6268:2;6253:18;;6246:62;-1:-1:-1;;;6339:2:10;6324:18;;6317:43;6392:3;6377:19;;5993:409::o;7170:496::-;7349:3;7387:6;7381:13;7403:66;7462:6;7457:3;7450:4;7442:6;7438:17;7403:66;:::i;:::-;7532:13;;7491:16;;;;7554:70;7532:13;7491:16;7601:4;7589:17;;7554:70;:::i;:::-;7640:20;;7170:496;-1:-1:-1;;;;7170:496:10:o;7671:401::-;7873:2;7855:21;;;7912:2;7892:18;;;7885:30;7951:34;7946:2;7931:18;;7924:62;-1:-1:-1;;;8017:2:10;8002:18;;7995:35;8062:3;8047:19;;7671:401::o;8836:414::-;9038:2;9020:21;;;9077:2;9057:18;;;9050:30;9116:34;9111:2;9096:18;;9089:62;-1:-1:-1;;;9182:2:10;9167:18;;9160:48;9240:3;9225:19;;8836:414::o;9387:127::-;9448:10;9443:3;9439:20;9436:1;9429:31;9479:4;9476:1;9469:15;9503:4;9500:1;9493:15;9519:128;9586:9;;;9607:11;;;9604:37;;;9621:18;;:::i;9652:125::-;9717:9;;;9738:10;;;9735:36;;;9751:18;;:::i;9782:489::-;-1:-1:-1;;;;;10051:15:10;;;10033:34;;10103:15;;10098:2;10083:18;;10076:43;10150:2;10135:18;;10128:34;;;10198:3;10193:2;10178:18;;10171:31;;;9976:4;;10219:46;;10245:19;;10237:6;10219:46;:::i;:::-;10211:54;9782:489;-1:-1:-1;;;;;;9782:489:10:o;10276:249::-;10345:6;10398:2;10386:9;10377:7;10373:23;10369:32;10366:52;;;10414:1;10411;10404:12;10366:52;10446:9;10440:16;10465:30;10489:5;10465:30;:::i"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "904200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2634",
"getApproved(uint256)": "4769",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "2561",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "26705",
"supportsInterface(bytes4)": "511",
"symbol()": "infinite",
"tokenURI(uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_afterTokenTransfer(address,address,uint256,uint256)": "infinite",
"_approve(address,uint256)": "infinite",
"_baseURI()": "infinite",
"_beforeTokenTransfer(address,address,uint256,uint256)": "24513",
"_burn(uint256)": "infinite",
"_checkOnERC721Received(address,address,uint256,bytes memory)": "infinite",
"_exists(uint256)": "infinite",
"_isApprovedOrOwner(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_ownerOf(uint256)": "infinite",
"_requireMinted(uint256)": "infinite",
"_safeMint(address,uint256)": "infinite",
"_safeMint(address,uint256,bytes memory)": "infinite",
"_safeTransfer(address,address,uint256,bytes memory)": "infinite",
"_setApprovalForAll(address,address,bool)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol": "ERC721"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0xd89f3585b211fc9e3408384a4c4efdc3a93b2f877a3821046fa01c219d35be1b",
"license": "MIT",
"urls": [
"bzz-raw://5ea15ef7c8980240ccd46df13809d163f749bc0a01d8bced1875660d4872da1c",
"dweb:/ipfs/QmbDfAT9VeCSG4cnPd6tjDMp8ED85dLHbWyMyv7wbmL4CH"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0xab28a56179c1db258c9bf5235b382698cb650debecb51b23d12be9e241374b68",
"license": "MIT",
"urls": [
"bzz-raw://daae589a9d6fa7e55f99f86c0a16796ca490f243fb3693632c3711c0646c1d56",
"dweb:/ipfs/QmR3zpd7wNw3rcUdekwiv6FYHJqksuTCXLVioTxu6Fbxk3"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da",
"license": "MIT",
"urls": [
"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708",
"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
".deps/npm/@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0xf96f969e24029d43d0df89e59d365f277021dac62b48e1c1e3ebe0acdd7f1ca1",
"license": "MIT",
"urls": [
"bzz-raw://ec772b45a624be516f1c81970caa8a2e144301e9d0921cbc1a2789fef39a1269",
"dweb:/ipfs/QmNyjwxCrGhQMyzLD93oUobJXVe9ceJvRvfXwbEtuxPiEj"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
".deps/npm/@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0xa4d1d62251f8574deb032a35fc948386a9b4de74b812d4f545a1ac120486b48a",
"license": "MIT",
"urls": [
"bzz-raw://8c969013129ba9e651a20735ef659fef6d8a1139ea3607bd4b26ddea2d645634",
"dweb:/ipfs/QmVhVa6LGuzAcB8qgDtVHRkucn4ihj5UZr8xBLcJkP6ucb"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
".deps/npm/@openzeppelin/contracts/utils/math/Math.sol": {
"keccak256": "0xa1e8e83cd0087785df04ac79fb395d9f3684caeaf973d9e2c71caef723a3a5d6",
"license": "MIT",
"urls": [
"bzz-raw://33bbf48cc069be677705037ba7520c22b1b622c23b33e1a71495f2d36549d40b",
"dweb:/ipfs/Qmct36zWXv3j7LZB83uwbg7TXwnZSN1fqHNDZ93GG98bGz"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256, /* firstTokenId */
uint256 batchSize
) internal virtual {
if (batchSize > 1) {
if (from != address(0)) {
_balances[from] -= batchSize;
}
if (to != address(0)) {
_balances[to] += batchSize;
}
}
}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
This file has been truncated, but you can view the full file.
{
"id": "2c74ed107bf14bc1b1624bf1d0b8c5c0",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.17",
"solcLongVersion": "0.8.17+commit.8df45f5f",
"input": {
"language": "Solidity",
"sources": {
"contracts/Flex.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.17;\n\nimport \"@openzeppelin/contracts/token/ERC721/ERC721.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\";\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol\";\nimport \"@openzeppelin/contracts/utils/Counters.sol\";\nimport \"./Pass.sol\";\n\ncontract IFlex {\n function create(address to, string calldata handle) external {}\n function isAllowed(uint256 tokenId, address sender) public view returns (bool) {}\n function setExpiration(uint256 tokenId, uint256 expiration) public {}\n}\n\n/// @custom:security-contact cagataycali@icloud.com\ncontract Flex is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable, ERC721Burnable {\n using Counters for Counters.Counter;\n\n constructor() ERC721(\"flex\", \"link\") {}\n\n Counters.Counter private _tokenIdCounter;\n mapping(uint256 => Pass) public passes;\n\n function create(address to, Data calldata data) public onlyOwner returns(uint256) {\n _tokenIdCounter.increment();\n uint256 tokenId = _tokenIdCounter.current();\n _safeMint(to, tokenId);\n passes[tokenId] = new Pass(data);\n return tokenId;\n }\n\n function buy(address to, uint256 id) public onlyOwner {\n passes[id].mint(to);\n }\n\n function setLimit(uint256 tokenId, uint256 limit) public {\n require(ownerOf(tokenId) == msg.sender, \"403\");\n passes[tokenId].setLimit(limit);\n }\n\n function setExpiration(uint256 tokenId, uint256 expiration) public {\n require(ownerOf(tokenId) == msg.sender, \"403\");\n passes[tokenId].setExpiration(expiration);\n }\n\n // Utils\n function isAllowed(uint256 tokenId, address sender)\n public\n view\n returns (bool)\n {\n address owner = ownerOf(tokenId);\n if (owner == sender) {\n return true;\n }\n // Check the sender has access pass\n return passes[tokenId].isAllowed(sender);\n }\n\n // ERC-721 required overrides\n function _baseURI() internal pure override returns (string memory) {\n return \"https://flex.link/api/link/\";\n }\n\n function contractURI() public pure returns (string memory) {\n return \"https://flex.link/api/flex-metadata/\";\n }\n\n function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)\n internal\n override(ERC721, ERC721Enumerable)\n {\n super._beforeTokenTransfer(from, to, tokenId, batchSize);\n }\n\n function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {\n super._burn(tokenId);\n }\n\n function tokenURI(uint256 tokenId)\n public\n pure\n override(ERC721, ERC721URIStorage)\n returns (string memory)\n {\n return string(abi.encodePacked(_baseURI(), Strings.toString(tokenId)));\n }\n\n function supportsInterface(bytes4 interfaceId)\n public\n view\n override(ERC721, ERC721Enumerable)\n returns (bool)\n {\n return super.supportsInterface(interfaceId);\n }\n}"
},
"contracts/Pass.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.17;\n\nimport \"@openzeppelin/contracts/token/ERC721/ERC721.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\";\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol\";\nimport \"@openzeppelin/contracts/utils/Counters.sol\";\nimport \"./Structs.sol\";\n\n/// @custom:security-contact cagataycali@icloud.com\ncontract Pass is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable, ERC721Burnable {\n using Counters for Counters.Counter;\n\n Counters.Counter private _tokenIdCounter;\n address parent;\n Data data;\n string baseContractURL = \"https://flex.link/api/pass-metadata/\";\n bool isTransferable = false;\n\n // [tokenId -> expireAt]\n mapping(uint256 => uint256) public expirations;\n\n constructor(Data memory _data) ERC721(\"flex\", _data.handle) {\n parent = msg.sender;\n data = _data;\n }\n\n function mint(address to) public {\n require(msg.sender == parent, \"Only flex can create pass\");\n require(!isAllowed(to), \"402\");\n _tokenIdCounter.increment();\n uint256 tokenId = _tokenIdCounter.current();\n _safeMint(to, tokenId);\n if (data.expire > 0) {\n expirations[tokenId] = block.timestamp + data.expire * 1 days;\n } else {\n expirations[tokenId] = 0;\n }\n }\n\n function isAllowed(address _owner) public view returns (bool) {\n // Get the owner's balance, and do a for loop.\n for (uint256 i; i < balanceOf(_owner); i++) {\n // Lookup the NFT by owner's tokenId\n uint256 expireAt = expirations[tokenOfOwnerByIndex(_owner, i)];\n // 0 means, the access pass is not going to expire.\n if (expireAt == 0) {\n return true;\n }\n if (block.timestamp <= expireAt) {\n return true;\n }\n\n }\n return false;\n }\n\n function setLimit(uint256 limit) public {\n data.limit = limit;\n }\n\n function setExpiration(uint256 expiration) public {\n data.expire = expiration;\n }\n\n function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)\n internal\n override(ERC721, ERC721Enumerable)\n {\n require(data.passSettings.isTransferable, \"Not transferable\");\n super._beforeTokenTransfer(from, to, tokenId, batchSize);\n }\n\n // The following functions are overrides required by Solidity.\n function _baseURI() internal pure override returns (string memory) {\n return \"https://flex.link/api/pass/\";\n }\n\n function contractURI() public view returns (string memory) {\n return string(abi.encodePacked(baseContractURL, data.handle));\n }\n\n function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {\n super._burn(tokenId);\n }\n\n function tokenURI(uint256 tokenId)\n public\n pure\n override(ERC721, ERC721URIStorage)\n returns (string memory)\n {\n return string(abi.encodePacked(_baseURI(), Strings.toString(tokenId)));\n }\n\n function supportsInterface(bytes4 interfaceId)\n public\n view\n override(ERC721, ERC721Enumerable)\n returns (bool)\n {\n return super.supportsInterface(interfaceId);\n }\n}"
},
"@openzeppelin/contracts/utils/Counters.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title Counters\n * @author Matt Condon (@shrugs)\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\n *\n * Include with `using Counters for Counters.Counter;`\n */\nlibrary Counters {\n struct Counter {\n // This variable should never be directly accessed by users of the library: interactions must be restricted to\n // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\n // this feature: see https://github.com/ethereum/solidity/issues/4637\n uint256 _value; // default: 0\n }\n\n function current(Counter storage counter) internal view returns (uint256) {\n return counter._value;\n }\n\n function increment(Counter storage counter) internal {\n unchecked {\n counter._value += 1;\n }\n }\n\n function decrement(Counter storage counter) internal {\n uint256 value = counter._value;\n require(value > 0, \"Counter: decrement overflow\");\n unchecked {\n counter._value = value - 1;\n }\n }\n\n function reset(Counter storage counter) internal {\n counter._value = 0;\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../ERC721.sol\";\nimport \"../../../utils/Context.sol\";\n\n/**\n * @title ERC721 Burnable Token\n * @dev ERC721 Token that can be burned (destroyed).\n */\nabstract contract ERC721Burnable is Context, ERC721 {\n /**\n * @dev Burns `tokenId`. See {ERC721-_burn}.\n *\n * Requirements:\n *\n * - The caller must own `tokenId` or be an approved operator.\n */\n function burn(uint256 tokenId) public virtual {\n //solhint-disable-next-line max-line-length\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\");\n _burn(tokenId);\n }\n}\n"
},
"@openzeppelin/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../ERC721.sol\";\n\n/**\n * @dev ERC721 token with storage based token URI management.\n */\nabstract contract ERC721URIStorage is ERC721 {\n using Strings for uint256;\n\n // Optional mapping for token URIs\n mapping(uint256 => string) private _tokenURIs;\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n _requireMinted(tokenId);\n\n string memory _tokenURI = _tokenURIs[tokenId];\n string memory base = _baseURI();\n\n // If there is no base URI, return the token URI.\n if (bytes(base).length == 0) {\n return _tokenURI;\n }\n // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).\n if (bytes(_tokenURI).length > 0) {\n return string(abi.encodePacked(base, _tokenURI));\n }\n\n return super.tokenURI(tokenId);\n }\n\n /**\n * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {\n require(_exists(tokenId), \"ERC721URIStorage: URI set of nonexistent token\");\n _tokenURIs[tokenId] = _tokenURI;\n }\n\n /**\n * @dev See {ERC721-_burn}. This override additionally checks to see if a\n * token-specific URI was set for the token, and if so, it deletes the token URI from\n * the storage mapping.\n */\n function _burn(uint256 tokenId) internal virtual override {\n super._burn(tokenId);\n\n if (bytes(_tokenURIs[tokenId]).length != 0) {\n delete _tokenURIs[tokenId];\n }\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../ERC721.sol\";\nimport \"./IERC721Enumerable.sol\";\n\n/**\n * @dev This implements an optional extension of {ERC721} defined in the EIP that adds\n * enumerability of all the token ids in the contract as well as all token ids owned by each\n * account.\n */\nabstract contract ERC721Enumerable is ERC721, IERC721Enumerable {\n // Mapping from owner to list of owned token IDs\n mapping(address => mapping(uint256 => uint256)) private _ownedTokens;\n\n // Mapping from token ID to index of the owner tokens list\n mapping(uint256 => uint256) private _ownedTokensIndex;\n\n // Array with all token ids, used for enumeration\n uint256[] private _allTokens;\n\n // Mapping from token id to position in the allTokens array\n mapping(uint256 => uint256) private _allTokensIndex;\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {\n return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.\n */\n function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {\n require(index < ERC721.balanceOf(owner), \"ERC721Enumerable: owner index out of bounds\");\n return _ownedTokens[owner][index];\n }\n\n /**\n * @dev See {IERC721Enumerable-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _allTokens.length;\n }\n\n /**\n * @dev See {IERC721Enumerable-tokenByIndex}.\n */\n function tokenByIndex(uint256 index) public view virtual override returns (uint256) {\n require(index < ERC721Enumerable.totalSupply(), \"ERC721Enumerable: global index out of bounds\");\n return _allTokens[index];\n }\n\n /**\n * @dev See {ERC721-_beforeTokenTransfer}.\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 firstTokenId,\n uint256 batchSize\n ) internal virtual override {\n super._beforeTokenTransfer(from, to, firstTokenId, batchSize);\n\n if (batchSize > 1) {\n // Will only trigger during construction. Batch transferring (minting) is not available afterwards.\n revert(\"ERC721Enumerable: consecutive transfers not supported\");\n }\n\n uint256 tokenId = firstTokenId;\n\n if (from == address(0)) {\n _addTokenToAllTokensEnumeration(tokenId);\n } else if (from != to) {\n _removeTokenFromOwnerEnumeration(from, tokenId);\n }\n if (to == address(0)) {\n _removeTokenFromAllTokensEnumeration(tokenId);\n } else if (to != from) {\n _addTokenToOwnerEnumeration(to, tokenId);\n }\n }\n\n /**\n * @dev Private function to add a token to this extension's ownership-tracking data structures.\n * @param to address representing the new owner of the given token ID\n * @param tokenId uint256 ID of the token to be added to the tokens list of the given address\n */\n function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {\n uint256 length = ERC721.balanceOf(to);\n _ownedTokens[to][length] = tokenId;\n _ownedTokensIndex[tokenId] = length;\n }\n\n /**\n * @dev Private function to add a token to this extension's token tracking data structures.\n * @param tokenId uint256 ID of the token to be added to the tokens list\n */\n function _addTokenToAllTokensEnumeration(uint256 tokenId) private {\n _allTokensIndex[tokenId] = _allTokens.length;\n _allTokens.push(tokenId);\n }\n\n /**\n * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that\n * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for\n * gas optimizations e.g. when performing a transfer operation (avoiding double writes).\n * This has O(1) time complexity, but alters the order of the _ownedTokens array.\n * @param from address representing the previous owner of the given token ID\n * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address\n */\n function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {\n // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and\n // then delete the last slot (swap and pop).\n\n uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;\n uint256 tokenIndex = _ownedTokensIndex[tokenId];\n\n // When the token to delete is the last token, the swap operation is unnecessary\n if (tokenIndex != lastTokenIndex) {\n uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];\n\n _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token\n _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index\n }\n\n // This also deletes the contents at the last position of the array\n delete _ownedTokensIndex[tokenId];\n delete _ownedTokens[from][lastTokenIndex];\n }\n\n /**\n * @dev Private function to remove a token from this extension's token tracking data structures.\n * This has O(1) time complexity, but alters the order of the _allTokens array.\n * @param tokenId uint256 ID of the token to be removed from the tokens list\n */\n function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {\n // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and\n // then delete the last slot (swap and pop).\n\n uint256 lastTokenIndex = _allTokens.length - 1;\n uint256 tokenIndex = _allTokensIndex[tokenId];\n\n // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so\n // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding\n // an 'if' statement (like in _removeTokenFromOwnerEnumeration)\n uint256 lastTokenId = _allTokens[lastTokenIndex];\n\n _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token\n _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index\n\n // This also deletes the contents at the last position of the array\n delete _allTokensIndex[tokenId];\n _allTokens.pop();\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC721.sol\";\nimport \"./IERC721Receiver.sol\";\nimport \"./extensions/IERC721Metadata.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/Strings.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\n using Address for address;\n using Strings for uint256;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n // Mapping from token ID to owner address\n mapping(uint256 => address) private _owners;\n\n // Mapping owner address to token count\n mapping(address => uint256) private _balances;\n\n // Mapping from token ID to approved address\n mapping(uint256 => address) private _tokenApprovals;\n\n // Mapping from owner to operator approvals\n mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n /**\n * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view virtual override returns (uint256) {\n require(owner != address(0), \"ERC721: address zero is not a valid owner\");\n return _balances[owner];\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view virtual override returns (address) {\n address owner = _ownerOf(tokenId);\n require(owner != address(0), \"ERC721: invalid token ID\");\n return owner;\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n _requireMinted(tokenId);\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\";\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overridden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return \"\";\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public virtual override {\n address owner = ERC721.ownerOf(tokenId);\n require(to != owner, \"ERC721: approval to current owner\");\n\n require(\n _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\n \"ERC721: approve caller is not token owner or approved for all\"\n );\n\n _approve(to, tokenId);\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view virtual override returns (address) {\n _requireMinted(tokenId);\n\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual override {\n _setApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n //solhint-disable-next-line max-line-length\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\");\n\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n safeTransferFrom(from, to, tokenId, \"\");\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) public virtual override {\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\");\n _safeTransfer(from, to, tokenId, data);\n }\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * `data` is additional data, it has no specified format and it is sent in call to `to`.\n *\n * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\n * implement alternative mechanisms to perform token transfer, such as signature-based.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeTransfer(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) internal virtual {\n _transfer(from, to, tokenId);\n require(_checkOnERC721Received(from, to, tokenId, data), \"ERC721: transfer to non ERC721Receiver implementer\");\n }\n\n /**\n * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist\n */\n function _ownerOf(uint256 tokenId) internal view virtual returns (address) {\n return _owners[tokenId];\n }\n\n /**\n * @dev Returns whether `tokenId` exists.\n *\n * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n *\n * Tokens start existing when they are minted (`_mint`),\n * and stop existing when they are burned (`_burn`).\n */\n function _exists(uint256 tokenId) internal view virtual returns (bool) {\n return _ownerOf(tokenId) != address(0);\n }\n\n /**\n * @dev Returns whether `spender` is allowed to manage `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\n address owner = ERC721.ownerOf(tokenId);\n return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);\n }\n\n /**\n * @dev Safely mints `tokenId` and transfers it to `to`.\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(address to, uint256 tokenId) internal virtual {\n _safeMint(to, tokenId, \"\");\n }\n\n /**\n * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n */\n function _safeMint(\n address to,\n uint256 tokenId,\n bytes memory data\n ) internal virtual {\n _mint(to, tokenId);\n require(\n _checkOnERC721Received(address(0), to, tokenId, data),\n \"ERC721: transfer to non ERC721Receiver implementer\"\n );\n }\n\n /**\n * @dev Mints `tokenId` and transfers it to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - `to` cannot be the zero address.\n *\n * Emits a {Transfer} event.\n */\n function _mint(address to, uint256 tokenId) internal virtual {\n require(to != address(0), \"ERC721: mint to the zero address\");\n require(!_exists(tokenId), \"ERC721: token already minted\");\n\n _beforeTokenTransfer(address(0), to, tokenId, 1);\n\n // Check that tokenId was not minted by `_beforeTokenTransfer` hook\n require(!_exists(tokenId), \"ERC721: token already minted\");\n\n unchecked {\n // Will not overflow unless all 2**256 token ids are minted to the same owner.\n // Given that tokens are minted one by one, it is impossible in practice that\n // this ever happens. Might change if we allow batch minting.\n // The ERC fails to describe this case.\n _balances[to] += 1;\n }\n\n _owners[tokenId] = to;\n\n emit Transfer(address(0), to, tokenId);\n\n _afterTokenTransfer(address(0), to, tokenId, 1);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n * This is an internal function that does not check if the sender is authorized to operate on the token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId) internal virtual {\n address owner = ERC721.ownerOf(tokenId);\n\n _beforeTokenTransfer(owner, address(0), tokenId, 1);\n\n // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook\n owner = ERC721.ownerOf(tokenId);\n\n // Clear approvals\n delete _tokenApprovals[tokenId];\n\n unchecked {\n // Cannot overflow, as that would require more tokens to be burned/transferred\n // out than the owner initially received through minting and transferring in.\n _balances[owner] -= 1;\n }\n delete _owners[tokenId];\n\n emit Transfer(owner, address(0), tokenId);\n\n _afterTokenTransfer(owner, address(0), tokenId, 1);\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {\n require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n require(to != address(0), \"ERC721: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, tokenId, 1);\n\n // Check that tokenId was not transferred by `_beforeTokenTransfer` hook\n require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n\n // Clear approvals from the previous owner\n delete _tokenApprovals[tokenId];\n\n unchecked {\n // `_balances[from]` cannot overflow for the same reason as described in `_burn`:\n // `from`'s balance is the number of token held, which is at least one before the current\n // transfer.\n // `_balances[to]` could overflow in the conditions described in `_mint`. That would require\n // all 2**256 token ids to be minted, which in practice is impossible.\n _balances[from] -= 1;\n _balances[to] += 1;\n }\n _owners[tokenId] = to;\n\n emit Transfer(from, to, tokenId);\n\n _afterTokenTransfer(from, to, tokenId, 1);\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits an {Approval} event.\n */\n function _approve(address to, uint256 tokenId) internal virtual {\n _tokenApprovals[tokenId] = to;\n emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\n }\n\n /**\n * @dev Approve `operator` to operate on all of `owner` tokens\n *\n * Emits an {ApprovalForAll} event.\n */\n function _setApprovalForAll(\n address owner,\n address operator,\n bool approved\n ) internal virtual {\n require(owner != operator, \"ERC721: approve to caller\");\n _operatorApprovals[owner][operator] = approved;\n emit ApprovalForAll(owner, operator, approved);\n }\n\n /**\n * @dev Reverts if the `tokenId` has not been minted yet.\n */\n function _requireMinted(uint256 tokenId) internal view virtual {\n require(_exists(tokenId), \"ERC721: invalid token ID\");\n }\n\n /**\n * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n * The call is not executed if the target address is not a contract.\n *\n * @param from address representing the previous owner of the given token ID\n * @param to target address that will receive the tokens\n * @param tokenId uint256 ID of the token to be transferred\n * @param data bytes optional data to send along with the call\n * @return bool whether the call correctly returned the expected magic value\n */\n function _checkOnERC721Received(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) private returns (bool) {\n if (to.isContract()) {\n try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {\n return retval == IERC721Receiver.onERC721Received.selector;\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n revert(\"ERC721: transfer to non ERC721Receiver implementer\");\n } else {\n /// @solidity memory-safe-assembly\n assembly {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n } else {\n return true;\n }\n }\n\n /**\n * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is\n * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.\n * - When `from` is zero, the tokens will be minted for `to`.\n * - When `to` is zero, ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n * - `batchSize` is non-zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256, /* firstTokenId */\n uint256 batchSize\n ) internal virtual {\n if (batchSize > 1) {\n if (from != address(0)) {\n _balances[from] -= batchSize;\n }\n if (to != address(0)) {\n _balances[to] += batchSize;\n }\n }\n }\n\n /**\n * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is\n * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.\n * - When `from` is zero, the tokens were minted for `to`.\n * - When `to` is zero, ``from``'s tokens were burned.\n * - `from` and `to` are never both zero.\n * - `batchSize` is non-zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 firstTokenId,\n uint256 batchSize\n ) internal virtual {}\n}\n"
},
"contracts/Structs.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.17;\n\nstruct Data {\n string handle;\n // Collect total earnings\n uint256 totalEarnings;\n string metadata; // JSON, {name, description, cover photo, type of flex}\n \n // Fixable variables\n string content; // IPFS URL of JSON\n uint256 limit; // 0 to N\n uint256 price; // 0 to N\n uint256 expire; // 0 to N\n // Access pass settings\n Settings settings;\n AccessPassSettings passSettings;\n}\n\nstruct Settings {\n bool isContentFixed; // The creator can fix the content.\n bool isPriceFixed; // The creator can fix the price.\n bool isLimitFixed; // The creator can fix the limit.\n bool isExpireFixed; // The creator can fix the period.\n}\n\nstruct AccessPassSettings {\n uint256 expires; // Epoc unix timestamp for access pass validity.\n bool isTransferable; // Access pass can not be transfered.\n}"
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Enumerable is IERC721 {\n /**\n * @dev Returns the total amount of tokens stored by the contract.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns a token ID owned by `owner` at a given `index` of its token list.\n * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.\n */\n function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);\n\n /**\n * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.\n * Use along with {totalSupply} to enumerate all tokens.\n */\n function tokenByIndex(uint256 index) external view returns (uint256);\n}\n"
},
"@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Strings.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/Math.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n /// @solidity memory-safe-assembly\n assembly {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n /// @solidity memory-safe-assembly\n assembly {\n mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n unchecked {\n return toHexString(value, Math.log256(value) + 1);\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n}\n"
},
"@openzeppelin/contracts/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n *\n * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721\n * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must\n * understand this adds an external call which potentially creates a reentrancy vulnerability.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
},
"@openzeppelin/contracts/utils/math/Math.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(\n uint256 x,\n uint256 y,\n uint256 denominator\n ) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1);\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(\n uint256 x,\n uint256 y,\n uint256 denominator,\n Rounding rounding\n ) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n //\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n //\n // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n //\n // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1 << (log2(a) >> 1);\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 2, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 128;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 64;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 32;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 16;\n }\n if (value >> 8 > 0) {\n value >>= 8;\n result += 8;\n }\n if (value >> 4 > 0) {\n value >>= 4;\n result += 4;\n }\n if (value >> 2 > 0) {\n value >>= 2;\n result += 2;\n }\n if (value >> 1 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 10, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10**64) {\n value /= 10**64;\n result += 64;\n }\n if (value >= 10**32) {\n value /= 10**32;\n result += 32;\n }\n if (value >= 10**16) {\n value /= 10**16;\n result += 16;\n }\n if (value >= 10**8) {\n value /= 10**8;\n result += 8;\n }\n if (value >= 10**4) {\n value /= 10**4;\n result += 4;\n }\n if (value >= 10**2) {\n value /= 10**2;\n result += 2;\n }\n if (value >= 10**1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 256, rounded down, of a positive value.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 16;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 8;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 4;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 2;\n }\n if (value >> 8 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);\n }\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/contracts/access/Ownable.sol": {
"Ownable": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"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\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"ERC721": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:16955 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n add\n 0x40\n dup2\n swap1\n mstore\n tag_2\n swap2\n tag_3\n jump\t// in\ntag_2:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1461 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1469 _name = name_ */\n tag_6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1464:1469 name_ */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1461 _name */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1469 _name = name_ */\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1486 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1496 _symbol = symbol_ */\n tag_8\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1489:1496 symbol_ */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1486 _symbol */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1496 _symbol = symbol_ */\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:16955 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n jump(tag_16)\n /* \"#utility.yul\":14:141 */\ntag_10:\n /* \"#utility.yul\":75:85 */\n 0x4e487b71\n /* \"#utility.yul\":70:73 */\n 0xe0\n /* \"#utility.yul\":66:86 */\n shl\n /* \"#utility.yul\":63:64 */\n 0x00\n /* \"#utility.yul\":56:87 */\n mstore\n /* \"#utility.yul\":106:110 */\n 0x41\n /* \"#utility.yul\":103:104 */\n 0x04\n /* \"#utility.yul\":96:111 */\n mstore\n /* \"#utility.yul\":130:134 */\n 0x24\n /* \"#utility.yul\":127:128 */\n 0x00\n /* \"#utility.yul\":120:135 */\n revert\n /* \"#utility.yul\":146:986 */\ntag_11:\n /* \"#utility.yul\":200:205 */\n 0x00\n /* \"#utility.yul\":253:256 */\n dup3\n /* \"#utility.yul\":246:250 */\n 0x1f\n /* \"#utility.yul\":238:244 */\n dup4\n /* \"#utility.yul\":234:251 */\n add\n /* \"#utility.yul\":230:257 */\n slt\n /* \"#utility.yul\":220:275 */\n tag_19\n jumpi\n /* \"#utility.yul\":271:272 */\n 0x00\n /* \"#utility.yul\":268:269 */\n dup1\n /* \"#utility.yul\":261:273 */\n revert\n /* \"#utility.yul\":220:275 */\ntag_19:\n /* \"#utility.yul\":294:307 */\n dup2\n mload\n sub(shl(0x40, 0x01), 0x01)\n /* \"#utility.yul\":356:366 */\n dup1\n dup3\n gt\n /* \"#utility.yul\":353:389 */\n iszero\n tag_21\n jumpi\n /* \"#utility.yul\":369:387 */\n tag_21\n tag_10\n jump\t// in\ntag_21:\n /* \"#utility.yul\":444:446 */\n 0x40\n /* \"#utility.yul\":438:447 */\n mload\n /* \"#utility.yul\":412:414 */\n 0x1f\n /* \"#utility.yul\":498:511 */\n dup4\n add\n not(0x1f)\n /* \"#utility.yul\":494:516 */\n swap1\n dup2\n and\n /* \"#utility.yul\":518:520 */\n 0x3f\n /* \"#utility.yul\":490:521 */\n add\n /* \"#utility.yul\":486:526 */\n and\n /* \"#utility.yul\":474:527 */\n dup2\n add\n swap1\n /* \"#utility.yul\":542:560 */\n dup3\n dup3\n gt\n /* \"#utility.yul\":562:584 */\n dup2\n dup4\n lt\n /* \"#utility.yul\":539:585 */\n or\n /* \"#utility.yul\":536:608 */\n iszero\n tag_23\n jumpi\n /* \"#utility.yul\":588:606 */\n tag_23\n tag_10\n jump\t// in\ntag_23:\n /* \"#utility.yul\":628:638 */\n dup2\n /* \"#utility.yul\":624:626 */\n 0x40\n /* \"#utility.yul\":617:639 */\n mstore\n /* \"#utility.yul\":663:665 */\n dup4\n /* \"#utility.yul\":655:661 */\n dup2\n /* \"#utility.yul\":648:666 */\n mstore\n /* \"#utility.yul\":685:689 */\n 0x20\n /* \"#utility.yul\":675:689 */\n swap3\n pop\n /* \"#utility.yul\":730:733 */\n dup7\n /* \"#utility.yul\":725:727 */\n dup4\n /* \"#utility.yul\":720:722 */\n dup6\n /* \"#utility.yul\":712:718 */\n dup9\n /* \"#utility.yul\":708:723 */\n add\n /* \"#utility.yul\":704:728 */\n add\n /* \"#utility.yul\":701:734 */\n gt\n /* \"#utility.yul\":698:751 */\n iszero\n tag_24\n jumpi\n /* \"#utility.yul\":747:748 */\n 0x00\n /* \"#utility.yul\":744:745 */\n dup1\n /* \"#utility.yul\":737:749 */\n revert\n /* \"#utility.yul\":698:751 */\ntag_24:\n /* \"#utility.yul\":769:770 */\n 0x00\n /* \"#utility.yul\":760:770 */\n swap2\n pop\n /* \"#utility.yul\":779:912 */\ntag_25:\n /* \"#utility.yul\":793:795 */\n dup4\n /* \"#utility.yul\":790:791 */\n dup3\n /* \"#utility.yul\":787:796 */\n lt\n /* \"#utility.yul\":779:912 */\n iszero\n tag_27\n jumpi\n /* \"#utility.yul\":881:895 */\n dup6\n dup3\n add\n /* \"#utility.yul\":877:900 */\n dup4\n add\n /* \"#utility.yul\":871:901 */\n mload\n /* \"#utility.yul\":850:864 */\n dup2\n dup4\n add\n /* \"#utility.yul\":846:869 */\n dup5\n add\n /* \"#utility.yul\":839:902 */\n mstore\n /* \"#utility.yul\":804:814 */\n swap1\n dup3\n add\n swap1\n /* \"#utility.yul\":779:912 */\n jump(tag_25)\ntag_27:\n /* \"#utility.yul\":954:955 */\n 0x00\n /* \"#utility.yul\":932:947 */\n swap4\n dup2\n add\n /* \"#utility.yul\":928:952 */\n swap1\n swap3\n add\n /* \"#utility.yul\":921:956 */\n swap3\n swap1\n swap3\n mstore\n /* \"#utility.yul\":936:942 */\n swap5\n /* \"#utility.yul\":146:986 */\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":991:1553 */\ntag_3:\n /* \"#utility.yul\":1090:1096 */\n 0x00\n /* \"#utility.yul\":1098:1104 */\n dup1\n /* \"#utility.yul\":1151:1153 */\n 0x40\n /* \"#utility.yul\":1139:1148 */\n dup4\n /* \"#utility.yul\":1130:1137 */\n dup6\n /* \"#utility.yul\":1126:1149 */\n sub\n /* \"#utility.yul\":1122:1154 */\n slt\n /* \"#utility.yul\":1119:1171 */\n iszero\n tag_29\n jumpi\n /* \"#utility.yul\":1167:1168 */\n 0x00\n /* \"#utility.yul\":1164:1165 */\n dup1\n /* \"#utility.yul\":1157:1169 */\n revert\n /* \"#utility.yul\":1119:1171 */\ntag_29:\n /* \"#utility.yul\":1194:1210 */\n dup3\n mload\n sub(shl(0x40, 0x01), 0x01)\n /* \"#utility.yul\":1259:1273 */\n dup1\n dup3\n gt\n /* \"#utility.yul\":1256:1290 */\n iszero\n tag_30\n jumpi\n /* \"#utility.yul\":1286:1287 */\n 0x00\n /* \"#utility.yul\":1283:1284 */\n dup1\n /* \"#utility.yul\":1276:1288 */\n revert\n /* \"#utility.yul\":1256:1290 */\ntag_30:\n /* \"#utility.yul\":1309:1370 */\n tag_31\n /* \"#utility.yul\":1362:1369 */\n dup7\n /* \"#utility.yul\":1353:1359 */\n dup4\n /* \"#utility.yul\":1342:1351 */\n dup8\n /* \"#utility.yul\":1338:1360 */\n add\n /* \"#utility.yul\":1309:1370 */\n tag_11\n jump\t// in\ntag_31:\n /* \"#utility.yul\":1299:1370 */\n swap4\n pop\n /* \"#utility.yul\":1416:1418 */\n 0x20\n /* \"#utility.yul\":1405:1414 */\n dup6\n /* \"#utility.yul\":1401:1419 */\n add\n /* \"#utility.yul\":1395:1420 */\n mload\n /* \"#utility.yul\":1379:1420 */\n swap2\n pop\n /* \"#utility.yul\":1445:1447 */\n dup1\n /* \"#utility.yul\":1435:1443 */\n dup3\n /* \"#utility.yul\":1432:1448 */\n gt\n /* \"#utility.yul\":1429:1465 */\n iszero\n tag_32\n jumpi\n /* \"#utility.yul\":1461:1462 */\n 0x00\n /* \"#utility.yul\":1458:1459 */\n dup1\n /* \"#utility.yul\":1451:1463 */\n revert\n /* \"#utility.yul\":1429:1465 */\ntag_32:\n pop\n /* \"#utility.yul\":1484:1547 */\n tag_33\n /* \"#utility.yul\":1539:1546 */\n dup6\n /* \"#utility.yul\":1528:1536 */\n dup3\n /* \"#utility.yul\":1517:1526 */\n dup7\n /* \"#utility.yul\":1513:1537 */\n add\n /* \"#utility.yul\":1484:1547 */\n tag_11\n jump\t// in\ntag_33:\n /* \"#utility.yul\":1474:1547 */\n swap2\n pop\n pop\n /* \"#utility.yul\":991:1553 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1558:1938 */\ntag_12:\n /* \"#utility.yul\":1637:1638 */\n 0x01\n /* \"#utility.yul\":1633:1645 */\n dup2\n dup2\n shr\n swap1\n /* \"#utility.yul\":1680:1692 */\n dup3\n and\n dup1\n /* \"#utility.yul\":1701:1762 */\n tag_35\n jumpi\n /* \"#utility.yul\":1755:1759 */\n 0x7f\n /* \"#utility.yul\":1747:1753 */\n dup3\n /* \"#utility.yul\":1743:1760 */\n and\n /* \"#utility.yul\":1733:1760 */\n swap2\n pop\n /* \"#utility.yul\":1701:1762 */\ntag_35:\n /* \"#utility.yul\":1808:1810 */\n 0x20\n /* \"#utility.yul\":1800:1806 */\n dup3\n /* \"#utility.yul\":1797:1811 */\n lt\n /* \"#utility.yul\":1777:1795 */\n dup2\n /* \"#utility.yul\":1774:1812 */\n sub\n /* \"#utility.yul\":1771:1932 */\n tag_36\n jumpi\n /* \"#utility.yul\":1854:1864 */\n 0x4e487b71\n /* \"#utility.yul\":1849:1852 */\n 0xe0\n /* \"#utility.yul\":1845:1865 */\n shl\n /* \"#utility.yul\":1842:1843 */\n 0x00\n /* \"#utility.yul\":1835:1866 */\n mstore\n /* \"#utility.yul\":1889:1893 */\n 0x22\n /* \"#utility.yul\":1886:1887 */\n 0x04\n /* \"#utility.yul\":1879:1894 */\n mstore\n /* \"#utility.yul\":1917:1921 */\n 0x24\n /* \"#utility.yul\":1914:1915 */\n 0x00\n /* \"#utility.yul\":1907:1922 */\n revert\n /* \"#utility.yul\":1771:1932 */\ntag_36:\n pop\n /* \"#utility.yul\":1558:1938 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2069:2614 */\ntag_14:\n /* \"#utility.yul\":2171:2173 */\n 0x1f\n /* \"#utility.yul\":2166:2169 */\n dup3\n /* \"#utility.yul\":2163:2174 */\n gt\n /* \"#utility.yul\":2160:2608 */\n iszero\n tag_39\n jumpi\n /* \"#utility.yul\":2207:2208 */\n 0x00\n /* \"#utility.yul\":2232:2237 */\n dup2\n /* \"#utility.yul\":2228:2230 */\n dup2\n /* \"#utility.yul\":2221:2238 */\n mstore\n /* \"#utility.yul\":2277:2281 */\n 0x20\n /* \"#utility.yul\":2273:2275 */\n dup2\n /* \"#utility.yul\":2263:2282 */\n keccak256\n /* \"#utility.yul\":2347:2349 */\n 0x1f\n /* \"#utility.yul\":2335:2345 */\n dup6\n /* \"#utility.yul\":2331:2350 */\n add\n /* \"#utility.yul\":2328:2329 */\n 0x05\n /* \"#utility.yul\":2324:2351 */\n shr\n /* \"#utility.yul\":2318:2322 */\n dup2\n /* \"#utility.yul\":2314:2352 */\n add\n /* \"#utility.yul\":2383:2387 */\n 0x20\n /* \"#utility.yul\":2371:2381 */\n dup7\n /* \"#utility.yul\":2368:2388 */\n lt\n /* \"#utility.yul\":2365:2412 */\n iszero\n tag_40\n jumpi\n pop\n /* \"#utility.yul\":2406:2410 */\n dup1\n /* \"#utility.yul\":2365:2412 */\ntag_40:\n /* \"#utility.yul\":2461:2463 */\n 0x1f\n /* \"#utility.yul\":2456:2459 */\n dup6\n /* \"#utility.yul\":2452:2464 */\n add\n /* \"#utility.yul\":2449:2450 */\n 0x05\n /* \"#utility.yul\":2445:2465 */\n shr\n /* \"#utility.yul\":2439:2443 */\n dup3\n /* \"#utility.yul\":2435:2466 */\n add\n /* \"#utility.yul\":2425:2466 */\n swap2\n pop\n /* \"#utility.yul\":2516:2598 */\ntag_41:\n /* \"#utility.yul\":2534:2536 */\n dup2\n /* \"#utility.yul\":2527:2532 */\n dup2\n /* \"#utility.yul\":2524:2537 */\n lt\n /* \"#utility.yul\":2516:2598 */\n iszero\n tag_43\n jumpi\n /* \"#utility.yul\":2579:2596 */\n dup3\n dup2\n sstore\n /* \"#utility.yul\":2560:2561 */\n 0x01\n /* \"#utility.yul\":2549:2562 */\n add\n /* \"#utility.yul\":2516:2598 */\n jump(tag_41)\ntag_43:\n /* \"#utility.yul\":2520:2523 */\n pop\n pop\n pop\n /* \"#utility.yul\":2160:2608 */\ntag_39:\n /* \"#utility.yul\":2069:2614 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2790:4142 */\ntag_7:\n /* \"#utility.yul\":2910:2920 */\n dup2\n mload\n sub(shl(0x40, 0x01), 0x01)\n /* \"#utility.yul\":2932:2962 */\n dup2\n gt\n /* \"#utility.yul\":2929:2985 */\n iszero\n tag_47\n jumpi\n /* \"#utility.yul\":2965:2983 */\n tag_47\n tag_10\n jump\t// in\ntag_47:\n /* \"#utility.yul\":2994:3091 */\n tag_48\n /* \"#utility.yul\":3084:3090 */\n dup2\n /* \"#utility.yul\":3044:3082 */\n tag_49\n /* \"#utility.yul\":3076:3080 */\n dup5\n /* \"#utility.yul\":3070:3081 */\n sload\n /* \"#utility.yul\":3044:3082 */\n tag_12\n jump\t// in\ntag_49:\n /* \"#utility.yul\":3038:3042 */\n dup5\n /* \"#utility.yul\":2994:3091 */\n tag_14\n jump\t// in\ntag_48:\n /* \"#utility.yul\":3146:3150 */\n 0x20\n dup1\n /* \"#utility.yul\":3210:3212 */\n 0x1f\n /* \"#utility.yul\":3199:3213 */\n dup4\n gt\n /* \"#utility.yul\":3227:3228 */\n 0x01\n /* \"#utility.yul\":3222:3885 */\n dup2\n eq\n tag_51\n jumpi\n /* \"#utility.yul\":3929:3930 */\n 0x00\n /* \"#utility.yul\":3946:3952 */\n dup5\n /* \"#utility.yul\":3943:4032 */\n iszero\n tag_52\n jumpi\n pop\n /* \"#utility.yul\":3998:4017 */\n dup6\n dup4\n add\n /* \"#utility.yul\":3992:4018 */\n mload\n /* \"#utility.yul\":3943:4032 */\ntag_52:\n not(0x00)\n /* \"#utility.yul\":2747:2748 */\n 0x03\n /* \"#utility.yul\":2743:2754 */\n dup7\n swap1\n shl\n /* \"#utility.yul\":2739:2763 */\n shr\n /* \"#utility.yul\":2735:2764 */\n not\n /* \"#utility.yul\":2725:2765 */\n and\n /* \"#utility.yul\":2771:2772 */\n 0x01\n /* \"#utility.yul\":2767:2778 */\n dup6\n swap1\n shl\n /* \"#utility.yul\":2722:2779 */\n or\n /* \"#utility.yul\":4045:4126 */\n dup6\n sstore\n /* \"#utility.yul\":3192:4136 */\n jump(tag_43)\n /* \"#utility.yul\":3222:3885 */\ntag_51:\n /* \"#utility.yul\":2016:2017 */\n 0x00\n /* \"#utility.yul\":2009:2023 */\n dup6\n dup2\n mstore\n /* \"#utility.yul\":2053:2057 */\n 0x20\n /* \"#utility.yul\":2040:2058 */\n dup2\n keccak256\n not(0x1f)\n /* \"#utility.yul\":3258:3278 */\n dup7\n and\n swap2\n /* \"#utility.yul\":3376:3612 */\ntag_55:\n /* \"#utility.yul\":3390:3397 */\n dup3\n /* \"#utility.yul\":3387:3388 */\n dup2\n /* \"#utility.yul\":3384:3398 */\n lt\n /* \"#utility.yul\":3376:3612 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":3479:3498 */\n dup9\n dup7\n add\n /* \"#utility.yul\":3473:3499 */\n mload\n /* \"#utility.yul\":3458:3500 */\n dup3\n sstore\n /* \"#utility.yul\":3571:3598 */\n swap5\n dup5\n add\n swap5\n /* \"#utility.yul\":3539:3540 */\n 0x01\n /* \"#utility.yul\":3527:3541 */\n swap1\n swap2\n add\n swap1\n /* \"#utility.yul\":3406:3425 */\n dup5\n add\n /* \"#utility.yul\":3376:3612 */\n jump(tag_55)\ntag_57:\n /* \"#utility.yul\":3380:3383 */\n pop\n /* \"#utility.yul\":3640:3646 */\n dup6\n /* \"#utility.yul\":3631:3638 */\n dup3\n /* \"#utility.yul\":3628:3647 */\n lt\n /* \"#utility.yul\":3625:3826 */\n iszero\n tag_58\n jumpi\n /* \"#utility.yul\":3701:3720 */\n dup8\n dup6\n add\n /* \"#utility.yul\":3695:3721 */\n mload\n not(0x00)\n /* \"#utility.yul\":3784:3785 */\n 0x03\n /* \"#utility.yul\":3780:3794 */\n dup9\n swap1\n shl\n /* \"#utility.yul\":3796:3799 */\n 0xf8\n /* \"#utility.yul\":3776:3800 */\n and\n /* \"#utility.yul\":3772:3809 */\n shr\n /* \"#utility.yul\":3768:3810 */\n not\n /* \"#utility.yul\":3753:3811 */\n and\n /* \"#utility.yul\":3738:3812 */\n dup2\n sstore\n /* \"#utility.yul\":3625:3826 */\ntag_58:\n pop\n pop\n pop\n pop\n pop\n /* \"#utility.yul\":3872:3873 */\n 0x01\n /* \"#utility.yul\":3856:3870 */\n swap1\n dup2\n shl\n /* \"#utility.yul\":3852:3874 */\n add\n /* \"#utility.yul\":3839:3875 */\n swap1\n sstore\n pop\n /* \"#utility.yul\":2790:4142 */\n jump\t// out\ntag_16:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:16955 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:16955 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x6352211e\n gt\n tag_16\n jumpi\n dup1\n 0xa22cb465\n gt\n tag_17\n jumpi\n dup1\n 0xa22cb465\n eq\n tag_12\n jumpi\n dup1\n 0xb88d4fde\n eq\n tag_13\n jumpi\n dup1\n 0xc87b56dd\n eq\n tag_14\n jumpi\n dup1\n 0xe985e9c5\n eq\n tag_15\n jumpi\n 0x00\n dup1\n revert\n tag_17:\n dup1\n 0x6352211e\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_11\n jumpi\n 0x00\n dup1\n revert\n tag_16:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x081812fc\n eq\n tag_5\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_6\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_7\n jumpi\n dup1\n 0x42842e0e\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_3:\n tag_18\n tag_19\n calldatasize\n 0x04\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n mload(0x40)\n /* \"#utility.yul\":565:579 */\n swap1\n iszero\n /* \"#utility.yul\":558:580 */\n iszero\n /* \"#utility.yul\":540:581 */\n dup2\n mstore\n /* \"#utility.yul\":528:530 */\n 0x20\n /* \"#utility.yul\":513:531 */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2471:2569 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_24\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_27\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_5:\n tag_28\n tag_29\n calldatasize\n 0x04\n tag_30\n jump\t// in\n tag_29:\n tag_31\n jump\t// in\n tag_28:\n mload(0x40)\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":1697:1729 */\n swap1\n swap2\n and\n /* \"#utility.yul\":1679:1730 */\n dup2\n mstore\n /* \"#utility.yul\":1667:1669 */\n 0x20\n /* \"#utility.yul\":1652:1670 */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_22\n /* \"#utility.yul\":1533:1736 */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3468:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_6:\n tag_34\n tag_35\n calldatasize\n 0x04\n tag_36\n jump\t// in\n tag_35:\n tag_37\n jump\t// in\n tag_34:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4938 function transferFrom(... */\n tag_7:\n tag_34\n tag_39\n calldatasize\n 0x04\n tag_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5004:5183 function safeTransferFrom(... */\n tag_8:\n tag_34\n tag_43\n calldatasize\n 0x04\n tag_40\n jump\t// in\n tag_43:\n tag_44\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2409 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_9:\n tag_28\n tag_46\n calldatasize\n 0x04\n tag_30\n jump\t// in\n tag_46:\n tag_47\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_10:\n tag_49\n tag_50\n calldatasize\n 0x04\n tag_51\n jump\t// in\n tag_50:\n tag_52\n jump\t// in\n tag_49:\n mload(0x40)\n /* \"#utility.yul\":2848:2873 */\n swap1\n dup2\n mstore\n /* \"#utility.yul\":2836:2838 */\n 0x20\n /* \"#utility.yul\":2821:2839 */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_22\n /* \"#utility.yul\":2702:2879 */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2633:2735 function symbol() public view virtual override returns (string memory) {... */\n tag_11:\n tag_24\n tag_56\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_12:\n tag_34\n tag_59\n calldatasize\n 0x04\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5249:5563 function safeTransferFrom(... */\n tag_13:\n tag_34\n tag_63\n calldatasize\n 0x04\n tag_64\n jump\t// in\n tag_63:\n tag_65\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2801:3077 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_14:\n tag_24\n tag_67\n calldatasize\n 0x04\n tag_30\n jump\t// in\n tag_67:\n tag_68\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_15:\n tag_18\n tag_71\n calldatasize\n 0x04\n tag_72\n jump\t// in\n tag_71:\n tag_73\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_21:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1672:1676 bool */\n 0x00\n not(sub(shl(0xe0, 0x01), 0x01))\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n dup3\n and\n shl(0xe0, 0x80ac58cd)\n eq\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n tag_76\n jumpi\n pop\n not(sub(shl(0xe0, 0x01), 0x01))\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n dup3\n and\n shl(0xe0, 0x5b5e139f)\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n tag_76:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_78\n jumpi\n pop\n shl(0xe0, 0x01ffc9a7)\n not(sub(shl(0xe0, 0x01), 0x01))\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n dup4\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n tag_78:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1688:1863 return... */\n swap3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2471:2569 function name() public view virtual override returns (string memory) {... */\n tag_25:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2525:2538 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2557:2562 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2550:2562 return _name */\n dup1\n sload\n tag_81\n swap1\n tag_82\n jump\t// in\n tag_81:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_83\n swap1\n tag_82\n jump\t// in\n tag_83:\n dup1\n iszero\n tag_84\n jumpi\n dup1\n 0x1f\n lt\n tag_85\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_84)\n tag_85:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_86:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_86\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_84:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2471:2569 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_31:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4011:4018 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4053 _requireMinted(tokenId) */\n tag_88\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4045:4052 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4044 _requireMinted */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4053 _requireMinted(tokenId) */\n jump\t// in\n tag_88:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4095 _tokenApprovals[tokenId] */\n 0x00\n swap1\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4086 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4095 _tokenApprovals[tokenId] */\n 0x20\n mstore\n 0x40\n swap1\n keccak256\n sload\n sub(shl(0xa0, 0x01), 0x01)\n and\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3468:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_37:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3548:3561 address owner */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3564:3587 ERC721.ownerOf(tokenId) */\n tag_91\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3579:3586 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3564:3578 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3564:3587 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_91:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3548:3587 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3611:3616 owner */\n dup1\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3605:3616 to != owner */\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3605:3607 to */\n dup4\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3605:3616 to != owner */\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3597:3654 require(to != owner, \"ERC721: approval to current owner\") */\n tag_92\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":5363:5365 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3597:3654 require(to != owner, \"ERC721: approval to current owner\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":5345:5366 */\n mstore\n /* \"#utility.yul\":5402:5404 */\n 0x21\n /* \"#utility.yul\":5382:5400 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":5375:5405 */\n mstore\n /* \"#utility.yul\":5441:5475 */\n 0x4552433732313a20617070726f76616c20746f2063757272656e74206f776e65\n /* \"#utility.yul\":5421:5439 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":5414:5476 */\n mstore\n shl(0xf9, 0x39)\n /* \"#utility.yul\":5492:5510 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":5485:5516 */\n mstore\n /* \"#utility.yul\":5533:5552 */\n 0x84\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3597:3654 require(to != owner, \"ERC721: approval to current owner\") */\n tag_93:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_92:\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3707 _msgSender() == owner */\n dup3\n and\n eq\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3686:3748 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n tag_98\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3711:3748 isApprovedForAll(owner, _msgSender()) */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3728:3733 owner */\n dup2\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_73\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3711:3748 isApprovedForAll(owner, _msgSender()) */\n tag_98:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3665:3835 require(... */\n tag_100\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":5765:5767 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3665:3835 require(... */\n 0x04\n dup3\n add\n /* \"#utility.yul\":5747:5768 */\n mstore\n /* \"#utility.yul\":5804:5806 */\n 0x3d\n /* \"#utility.yul\":5784:5802 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":5777:5807 */\n mstore\n /* \"#utility.yul\":5843:5877 */\n 0x4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f\n /* \"#utility.yul\":5823:5841 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":5816:5878 */\n mstore\n /* \"#utility.yul\":5914:5945 */\n 0x6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000\n /* \"#utility.yul\":5894:5912 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":5887:5946 */\n mstore\n /* \"#utility.yul\":5963:5982 */\n 0x84\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3665:3835 require(... */\n tag_93\n /* \"#utility.yul\":5563:5988 */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3665:3835 require(... */\n tag_100:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3867 _approve(to, tokenId) */\n tag_103\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3855:3857 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3859:3866 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3854 _approve */\n tag_104\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3867 _approve(to, tokenId) */\n jump\t// in\n tag_103:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3538:3874 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3468:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4938 function transferFrom(... */\n tag_41:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4842 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_106\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4834:4841 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4819 _isApprovedOrOwner */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4842 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_106:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4793:4892 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\") */\n tag_109\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_111\n jump\t// in\n tag_109:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4903:4931 _transfer(from, to, tokenId) */\n tag_103\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4913:4917 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4919:4921 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4923:4930 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4903:4912 _transfer */\n tag_113\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4903:4931 _transfer(from, to, tokenId) */\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5004:5183 function safeTransferFrom(... */\n tag_44:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5137:5176 safeTransferFrom(from, to, tokenId, \"\") */\n tag_103\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5154:5158 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5160:5162 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5164:5171 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5137:5176 safeTransferFrom(from, to, tokenId, \"\") */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5137:5153 safeTransferFrom */\n tag_65\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5137:5176 safeTransferFrom(from, to, tokenId, \"\") */\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2409 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_47:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2262:2269 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6930:6946 _owners[tokenId] */\n dup2\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6930:6937 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6930:6946 _owners[tokenId] */\n 0x20\n mstore\n 0x40\n dup2\n keccak256\n sload\n sub(shl(0xa0, 0x01), 0x01)\n and\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2324:2380 require(owner != address(0), \"ERC721: invalid token ID\") */\n tag_78\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":6609:6611 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2324:2380 require(owner != address(0), \"ERC721: invalid token ID\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":6591:6612 */\n mstore\n /* \"#utility.yul\":6648:6650 */\n 0x18\n /* \"#utility.yul\":6628:6646 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":6621:6651 */\n mstore\n shl(0x42, 0x115490cdcc8c4e881a5b9d985b1a59081d1bdad95b881251)\n /* \"#utility.yul\":6667:6685 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":6660:6714 */\n mstore\n /* \"#utility.yul\":6731:6749 */\n 0x64\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2324:2380 require(owner != address(0), \"ERC721: invalid token ID\") */\n tag_93\n /* \"#utility.yul\":6407:6755 */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_52:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2001:2008 uint256 */\n 0x00\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n dup3\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2093 require(owner != address(0), \"ERC721: address zero is not a valid owner\") */\n tag_123\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":6962:6964 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2093 require(owner != address(0), \"ERC721: address zero is not a valid owner\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":6944:6965 */\n mstore\n /* \"#utility.yul\":7001:7003 */\n 0x29\n /* \"#utility.yul\":6981:6999 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":6974:7004 */\n mstore\n /* \"#utility.yul\":7040:7074 */\n 0x4552433732313a2061646472657373207a65726f206973206e6f742061207661\n /* \"#utility.yul\":7020:7038 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":7013:7075 */\n mstore\n shl(0xb9, 0x3634b21037bbb732b9)\n /* \"#utility.yul\":7091:7109 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":7084:7123 */\n mstore\n /* \"#utility.yul\":7140:7159 */\n 0x84\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2093 require(owner != address(0), \"ERC721: address zero is not a valid owner\") */\n tag_93\n /* \"#utility.yul\":6760:7165 */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2093 require(owner != address(0), \"ERC721: address zero is not a valid owner\") */\n tag_123:\n pop\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2126 _balances[owner] */\n and\n 0x00\n swap1\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2119 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2126 _balances[owner] */\n 0x20\n mstore\n 0x40\n swap1\n keccak256\n sload\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2633:2735 function symbol() public view virtual override returns (string memory) {... */\n tag_56:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2689:2702 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2721:2728 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2714:2728 return _symbol */\n dup1\n sload\n tag_81\n swap1\n tag_82\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_61:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4315 _setApprovalForAll(_msgSender(), operator, approved) */\n tag_133\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4296:4304 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4306:4314 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4281 _setApprovalForAll */\n tag_135\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4315 _setApprovalForAll(_msgSender(), operator, approved) */\n jump\t// in\n tag_133:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5249:5563 function safeTransferFrom(... */\n tag_65:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5417:5458 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_137\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5450:5457 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5417:5435 _isApprovedOrOwner */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5417:5458 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_137:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5409:5508 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner or approved\") */\n tag_139\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_111\n jump\t// in\n tag_139:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5518:5556 _safeTransfer(from, to, tokenId, data) */\n tag_141\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5532:5536 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5538:5540 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5542:5549 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5551:5555 data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5518:5531 _safeTransfer */\n tag_142\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5518:5556 _safeTransfer(from, to, tokenId, data) */\n jump\t// in\n tag_141:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5249:5563 function safeTransferFrom(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2801:3077 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_68:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2874:2887 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2899:2922 _requireMinted(tokenId) */\n tag_144\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2914:2921 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2899:2913 _requireMinted */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2899:2922 _requireMinted(tokenId) */\n jump\t// in\n tag_144:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2933:2954 string memory baseURI */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2957:2967 _baseURI() */\n tag_145\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3395:3404 return \"\" */\n 0x40\n dup1\n mload\n 0x20\n dup2\n add\n swap1\n swap2\n mstore\n 0x00\n dup2\n mstore\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3319:3411 function _baseURI() internal view virtual returns (string memory) {... */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2957:2967 _baseURI() */\n tag_145:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2933:2967 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3008:3009 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2990:2997 baseURI */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2984:3005 bytes(baseURI).length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2984:3009 bytes(baseURI).length > 0 */\n gt\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2984:3070 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_147\n jumpi\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n jump(tag_148)\n tag_147:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3036:3043 baseURI */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3045:3063 tokenId.toString() */\n tag_149\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3045:3052 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3045:3061 tokenId.toString */\n tag_150\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3045:3063 tokenId.toString() */\n jump\t// in\n tag_149:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3019:3064 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_151\n swap3\n swap2\n swap1\n tag_152\n jump\t// in\n tag_151:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2984:3070 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_148:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2977:3070 return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n swap4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2801:3077 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_73:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _operatorApprovals[owner] */\n swap2\n dup3\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4485:4489 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _operatorApprovals[owner] */\n swap1\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4526 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _operatorApprovals[owner] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4543 _operatorApprovals[owner][operator] */\n swap4\n swap1\n swap5\n and\n dup3\n mstore\n swap2\n swap1\n swap2\n mstore\n keccak256\n sload\n 0xff\n and\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13466:13599 function _requireMinted(uint256 tokenId) internal view virtual {... */\n tag_89:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7321:7325 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6930:6946 _owners[tokenId] */\n dup2\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6930:6937 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6930:6946 _owners[tokenId] */\n 0x20\n mstore\n 0x40\n swap1\n keccak256\n sload\n sub(shl(0xa0, 0x01), 0x01)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13539:13592 require(_exists(tokenId), \"ERC721: invalid token ID\") */\n tag_158\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":6609:6611 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13539:13592 require(_exists(tokenId), \"ERC721: invalid token ID\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":6591:6612 */\n mstore\n /* \"#utility.yul\":6648:6650 */\n 0x18\n /* \"#utility.yul\":6628:6646 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":6621:6651 */\n mstore\n shl(0x42, 0x115490cdcc8c4e881a5b9d985b1a59081d1bdad95b881251)\n /* \"#utility.yul\":6667:6685 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":6660:6714 */\n mstore\n /* \"#utility.yul\":6731:6749 */\n 0x64\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13539:13592 require(_exists(tokenId), \"ERC721: invalid token ID\") */\n tag_93\n /* \"#utility.yul\":6407:6755 */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13539:13592 require(_exists(tokenId), \"ERC721: invalid token ID\") */\n tag_158:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13466:13599 function _requireMinted(uint256 tokenId) internal view virtual {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12768:12939 function _approve(address to, uint256 tokenId) internal virtual {... */\n tag_104:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12842:12866 _tokenApprovals[tokenId] */\n 0x00\n dup2\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12842:12857 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12842:12866 _tokenApprovals[tokenId] */\n 0x20\n mstore\n 0x40\n swap1\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12842:12871 _tokenApprovals[tokenId] = to */\n dup1\n sload\n not(sub(shl(0xa0, 0x01), 0x01))\n and\n sub(shl(0xa0, 0x01), 0x01)\n dup5\n and\n swap1\n dup2\n or\n swap1\n swap2\n sstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12842:12866 _tokenApprovals[tokenId] */\n dup2\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12895:12918 ERC721.ownerOf(tokenId) */\n tag_162\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12842:12866 _tokenApprovals[tokenId] */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12895:12909 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12895:12918 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_162:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12886:12932 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12768:12939 function _approve(address to, uint256 tokenId) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7540:7801 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n tag_108:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7633:7637 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7649:7662 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7665:7688 ERC721.ownerOf(tokenId) */\n tag_164\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7680:7687 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7665:7679 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7665:7688 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_164:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7649:7688 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7717:7722 owner */\n dup1\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7706:7722 spender == owner */\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7706:7713 spender */\n dup5\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7706:7722 spender == owner */\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7706:7758 spender == owner || isApprovedForAll(owner, spender) */\n dup1\n tag_166\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7726:7758 isApprovedForAll(owner, spender) */\n tag_166\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7743:7748 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7750:7757 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7726:7742 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7726:7758 isApprovedForAll(owner, spender) */\n jump\t// in\n tag_166:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7706:7793 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n dup1\n tag_167\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7786:7793 spender */\n dup4\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7762:7793 getApproved(tokenId) == spender */\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7762:7782 getApproved(tokenId) */\n tag_168\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7774:7781 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7762:7773 getApproved */\n tag_31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7762:7782 getApproved(tokenId) */\n jump\t// in\n tag_168:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7762:7793 getApproved(tokenId) == spender */\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7706:7793 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n tag_167:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7698:7794 return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender) */\n swap5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7540:7801 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11423:12656 function _transfer(... */\n tag_113:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11577:11581 from */\n dup3\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11550:11581 ERC721.ownerOf(tokenId) == from */\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11550:11573 ERC721.ownerOf(tokenId) */\n tag_170\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11565:11572 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11550:11564 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11550:11573 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_170:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11550:11581 ERC721.ownerOf(tokenId) == from */\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11542:11623 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_171\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_173\n jump\t// in\n tag_171:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11641:11657 to != address(0) */\n dup3\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11633:11698 require(to != address(0), \"ERC721: transfer to the zero address\") */\n tag_174\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":8279:8281 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11633:11698 require(to != address(0), \"ERC721: transfer to the zero address\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":8261:8282 */\n mstore\n /* \"#utility.yul\":8318:8320 */\n 0x24\n /* \"#utility.yul\":8298:8316 */\n dup1\n dup3\n add\n /* \"#utility.yul\":8291:8321 */\n mstore\n /* \"#utility.yul\":8357:8391 */\n 0x4552433732313a207472616e7366657220746f20746865207a65726f20616464\n /* \"#utility.yul\":8337:8355 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":8330:8392 */\n mstore\n shl(0xe0, 0x72657373)\n /* \"#utility.yul\":8408:8426 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":8401:8435 */\n mstore\n /* \"#utility.yul\":8452:8471 */\n 0x84\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11633:11698 require(to != address(0), \"ERC721: transfer to the zero address\") */\n tag_93\n /* \"#utility.yul\":8077:8477 */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11633:11698 require(to != address(0), \"ERC721: transfer to the zero address\") */\n tag_174:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11709:11751 _beforeTokenTransfer(from, to, tokenId, 1) */\n tag_177\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11730:11734 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11736:11738 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11740:11747 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11749:11750 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11709:11729 _beforeTokenTransfer */\n tag_178\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11709:11751 _beforeTokenTransfer(from, to, tokenId, 1) */\n jump\t// in\n tag_177:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11878:11882 from */\n dup3\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11851:11882 ERC721.ownerOf(tokenId) == from */\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11851:11874 ERC721.ownerOf(tokenId) */\n tag_179\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11866:11873 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11851:11865 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11851:11874 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_179:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11851:11882 ERC721.ownerOf(tokenId) == from */\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11843:11924 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_180\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_173\n jump\t// in\n tag_180:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11993:12017 _tokenApprovals[tokenId] */\n 0x00\n dup2\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11993:12008 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11993:12017 _tokenApprovals[tokenId] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11986:12017 delete _tokenApprovals[tokenId] */\n dup1\n sload\n not(sub(shl(0xa0, 0x01), 0x01))\n swap1\n dup2\n and\n swap1\n swap2\n sstore\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12461:12476 _balances[from] */\n dup8\n dup2\n and\n dup1\n dup7\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12461:12470 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12461:12476 _balances[from] */\n dup6\n mstore\n dup4\n dup7\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12461:12481 _balances[from] -= 1 */\n dup1\n sload\n not(0x00)\n add\n swap1\n sstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12495:12508 _balances[to] */\n swap1\n dup8\n and\n dup1\n dup7\n mstore\n dup4\n dup7\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12495:12513 _balances[to] += 1 */\n dup1\n sload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11986:12017 delete _tokenApprovals[tokenId] */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12495:12513 _balances[to] += 1 */\n add\n swap1\n sstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12533:12549 _owners[tokenId] */\n dup7\n dup7\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12533:12540 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12533:12549 _owners[tokenId] */\n swap1\n swap5\n mstore\n dup3\n dup6\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12533:12554 _owners[tokenId] = to */\n dup1\n sload\n swap1\n swap3\n and\n dup5\n or\n swap1\n swap2\n sstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12570:12597 Transfer(from, to, tokenId) */\n swap1\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12009:12016 tokenId */\n dup5\n swap4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12570:12597 Transfer(from, to, tokenId) */\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n swap2\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3538:3874 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3468:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13075:13382 function _setApprovalForAll(... */\n tag_135:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13225:13233 operator */\n dup2\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13216:13233 owner != operator */\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13216:13221 owner */\n dup4\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13216:13233 owner != operator */\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13208:13263 require(owner != operator, \"ERC721: approve to caller\") */\n tag_186\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":8684:8686 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13208:13263 require(owner != operator, \"ERC721: approve to caller\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":8666:8687 */\n mstore\n /* \"#utility.yul\":8723:8725 */\n 0x19\n /* \"#utility.yul\":8703:8721 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":8696:8726 */\n mstore\n /* \"#utility.yul\":8762:8789 */\n 0x4552433732313a20617070726f766520746f2063616c6c657200000000000000\n /* \"#utility.yul\":8742:8760 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":8735:8790 */\n mstore\n /* \"#utility.yul\":8807:8825 */\n 0x64\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13208:13263 require(owner != operator, \"ERC721: approve to caller\") */\n tag_93\n /* \"#utility.yul\":8482:8831 */\n jump\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13208:13263 require(owner != operator, \"ERC721: approve to caller\") */\n tag_186:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13273:13298 _operatorApprovals[owner] */\n dup4\n dup2\n and\n 0x00\n dup2\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13273:13291 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13273:13298 _operatorApprovals[owner] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13273:13308 _operatorApprovals[owner][operator] */\n swap5\n dup8\n and\n dup1\n dup5\n mstore\n swap5\n dup3\n mstore\n swap2\n dup3\n swap1\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13273:13319 _operatorApprovals[owner][operator] = approved */\n dup1\n sload\n not(0xff)\n and\n dup7\n iszero\n iszero\n swap1\n dup2\n or\n swap1\n swap2\n sstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13334:13375 ApprovalForAll(owner, operator, approved) */\n swap2\n mload\n /* \"#utility.yul\":540:581 */\n swap2\n dup3\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13334:13375 ApprovalForAll(owner, operator, approved) */\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n swap2\n /* \"#utility.yul\":513:531 */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13334:13375 ApprovalForAll(owner, operator, approved) */\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13075:13382 function _setApprovalForAll(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6424:6729 function _safeTransfer(... */\n tag_142:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6574:6602 _transfer(from, to, tokenId) */\n tag_191\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6584:6588 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6590:6592 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6594:6601 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6574:6583 _transfer */\n tag_113\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6574:6602 _transfer(from, to, tokenId) */\n jump\t// in\n tag_191:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6620:6667 _checkOnERC721Received(from, to, tokenId, data) */\n tag_192\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6643:6647 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6649:6651 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6653:6660 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6662:6666 data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6620:6642 _checkOnERC721Received */\n tag_193\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6620:6667 _checkOnERC721Received(from, to, tokenId, data) */\n jump\t// in\n tag_192:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6612:6722 require(_checkOnERC721Received(from, to, tokenId, data), \"ERC721: transfer to non ERC721Receiver implementer\") */\n tag_141\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_196\n jump\t// in\n /* \"@openzeppelin/contracts/utils/Strings.sol\":415:1111 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_150:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":471:484 string memory */\n 0x60\n /* \"@openzeppelin/contracts/utils/Strings.sol\":520:534 uint256 length */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":537:554 Math.log10(value) */\n tag_199\n /* \"@openzeppelin/contracts/utils/Strings.sol\":548:553 value */\n dup4\n /* \"@openzeppelin/contracts/utils/Strings.sol\":537:547 Math.log10 */\n tag_200\n /* \"@openzeppelin/contracts/utils/Strings.sol\":537:554 Math.log10(value) */\n jump\t// in\n tag_199:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":557:558 1 */\n 0x01\n /* \"@openzeppelin/contracts/utils/Strings.sol\":537:558 Math.log10(value) + 1 */\n add\n /* \"@openzeppelin/contracts/utils/Strings.sol\":520:558 uint256 length = Math.log10(value) + 1 */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":572:592 string memory buffer */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":606:612 length */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":595:613 new string(length) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_202\n jumpi\n tag_202\n tag_203\n jump\t// in\n tag_202:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x1f\n add\n not(0x1f)\n and\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_204\n jumpi\n 0x20\n dup3\n add\n dup2\n dup1\n calldatasize\n dup4\n calldatacopy\n add\n swap1\n pop\n tag_204:\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":572:613 string memory buffer = new string(length) */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":733:761 add(buffer, add(32, length)) */\n dup2\n dup2\n add\n /* \"@openzeppelin/contracts/utils/Strings.sol\":749:751 32 */\n 0x20\n /* \"@openzeppelin/contracts/utils/Strings.sol\":733:761 add(buffer, add(32, length)) */\n add\n /* \"@openzeppelin/contracts/utils/Strings.sol\":788:1068 while (true) {... */\n tag_205:\n not(0x00)\n /* \"@openzeppelin/contracts/utils/Strings.sol\":819:824 ptr-- */\n add\n shl(0x81, 0x181899199a1a9b1b9c1cb0b131b232b3)\n /* \"@openzeppelin/contracts/utils/Strings.sol\":953:955 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":942:956 mod(value, 10) */\n dup7\n mod\n /* \"@openzeppelin/contracts/utils/Strings.sol\":937:967 byte(mod(value, 10), _SYMBOLS) */\n byte\n /* \"@openzeppelin/contracts/utils/Strings.sol\":819:824 ptr-- */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":924:968 mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) */\n mstore8\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1012:1014 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1003:1014 value /= 10 */\n dup6\n div\n swap5\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1032:1053 if (value == 0) break */\n dup5\n /* \"@openzeppelin/contracts/utils/Strings.sol\":788:1068 while (true) {... */\n tag_205\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1032:1053 if (value == 0) break */\n jumpi\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1088:1094 buffer */\n swap4\n /* \"@openzeppelin/contracts/utils/Strings.sol\":415:1111 function toString(uint256 value) internal pure returns (string memory) {... */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15698:16094 function _beforeTokenTransfer(... */\n tag_178:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15882:15883 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15870:15879 batchSize */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15870:15883 batchSize > 1 */\n gt\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15866:16088 if (batchSize > 1) {... */\n iszero\n tag_141\n jumpi\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15903:15921 from != address(0) */\n dup5\n and\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15899:15984 if (from != address(0)) {... */\n tag_215\n jumpi\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15941:15956 _balances[from] */\n dup5\n and\n 0x00\n swap1\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15941:15950 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15941:15956 _balances[from] */\n 0x20\n mstore\n 0x40\n dup2\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15941:15969 _balances[from] -= batchSize */\n dup1\n sload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15960:15969 batchSize */\n dup4\n swap3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15941:15956 _balances[from] */\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15941:15969 _balances[from] -= batchSize */\n tag_216\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15960:15969 batchSize */\n dup5\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15941:15969 _balances[from] -= batchSize */\n tag_217\n jump\t// in\n tag_216:\n swap1\n swap2\n sstore\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15899:15984 if (from != address(0)) {... */\n tag_215:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16001:16017 to != address(0) */\n dup4\n and\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15997:16078 if (to != address(0)) {... */\n tag_141\n jumpi\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16037:16050 _balances[to] */\n dup4\n and\n 0x00\n swap1\n dup2\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16037:16046 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16037:16050 _balances[to] */\n 0x20\n mstore\n 0x40\n dup2\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16037:16063 _balances[to] += batchSize */\n dup1\n sload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16054:16063 batchSize */\n dup4\n swap3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16037:16050 _balances[to] */\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16037:16063 _balances[to] += batchSize */\n tag_219\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16054:16063 batchSize */\n dup5\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":16037:16063 _balances[to] += batchSize */\n tag_220\n jump\t// in\n tag_219:\n swap1\n swap2\n sstore\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":15698:16094 function _beforeTokenTransfer(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14151:14982 function _checkOnERC721Received(... */\n tag_193:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14300:14304 bool */\n 0x00\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14320:14333 to.isContract */\n dup5\n and\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1484 account.code.length */\n extcodesize\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1488 account.code.length > 0 */\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14316:14976 if (to.isContract()) {... */\n tag_225\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14355:14426 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) */\n mload(0x40)\n shl(0xe1, 0x0a85bd01)\n dup2\n mstore\n sub(shl(0xa0, 0x01), 0x01)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14355:14391 IERC721Receiver(to).onERC721Received */\n dup6\n and\n swap1\n 0x150b7a02\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14355:14426 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) */\n tag_227\n swap1\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14406:14410 from */\n dup10\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14412:14419 tokenId */\n dup9\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14421:14425 data */\n dup9\n swap1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14355:14426 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) */\n 0x04\n add\n tag_228\n jump\t// in\n tag_227:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_229\n jumpi\n pop\n 0x40\n dup1\n mload\n 0x1f\n returndatasize\n swap1\n dup2\n add\n not(0x1f)\n and\n dup3\n add\n swap1\n swap3\n mstore\n tag_230\n swap2\n dup2\n add\n swap1\n tag_231\n jump\t// in\n tag_230:\n 0x01\n tag_229:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14351:14924 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {... */\n tag_232\n jumpi\n returndatasize\n dup1\n dup1\n iszero\n tag_237\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_236)\n tag_237:\n 0x60\n swap2\n pop\n tag_236:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14593:14599 reason */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14593:14606 reason.length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14610:14611 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14593:14611 reason.length == 0 */\n sub\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14589:14910 if (reason.length == 0) {... */\n tag_238\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14635:14695 revert(\"ERC721: transfer to non ERC721Receiver implementer\") */\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_196\n jump\t// in\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14589:14910 if (reason.length == 0) {... */\n tag_238:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14862:14868 reason */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14856:14869 mload(reason) */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14847:14853 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14843:14845 32 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14839:14854 add(32, reason) */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14832:14870 revert(add(32, reason), mload(reason)) */\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14351:14924 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {... */\n tag_232:\n not(sub(shl(0xe0, 0x01), 0x01))\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14476:14527 retval == IERC721Receiver.onERC721Received.selector */\n and\n shl(0xe1, 0x0a85bd01)\n eq\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14469:14527 return retval == IERC721Receiver.onERC721Received.selector */\n jump(tag_167)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14316:14976 if (to.isContract()) {... */\n tag_225:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14961:14965 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14151:14982 function _checkOnERC721Received(... */\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":9889:10779 function log10(uint256 value) internal pure returns (uint256) {... */\n tag_200:\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":9942:9949 uint256 */\n 0x00\n dup1\n shl(0x40, 0x184f03e93ff9f4daa797ed6e38ed64bf6a1f01)\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10017:10032 value >= 10**64 */\n dup4\n lt\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10013:10112 if (value >= 10**64) {... */\n tag_244\n jumpi\n shl(0x40, 0x184f03e93ff9f4daa797ed6e38ed64bf6a1f01)\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10052:10067 value /= 10**64 */\n dup4\n div\n swap3\n pop\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10095:10097 64 */\n 0x40\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10085:10097 result += 64 */\n add\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10013:10112 if (value >= 10**64) {... */\n tag_244:\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10138:10144 10**32 */\n 0x04ee2d6d415b85acef8100000000\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10129:10134 value */\n dup4\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10129:10144 value >= 10**32 */\n lt\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10125:10224 if (value >= 10**32) {... */\n tag_247\n jumpi\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10173:10179 10**32 */\n 0x04ee2d6d415b85acef8100000000\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10164:10179 value /= 10**32 */\n dup4\n div\n swap3\n pop\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10207:10209 32 */\n 0x20\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10197:10209 result += 32 */\n add\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10125:10224 if (value >= 10**32) {... */\n tag_247:\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10250:10256 10**16 */\n 0x2386f26fc10000\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10241:10246 value */\n dup4\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10241:10256 value >= 10**16 */\n lt\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10237:10336 if (value >= 10**16) {... */\n tag_250\n jumpi\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10285:10291 10**16 */\n 0x2386f26fc10000\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10276:10291 value /= 10**16 */\n dup4\n div\n swap3\n pop\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10319:10321 16 */\n 0x10\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10309:10321 result += 16 */\n add\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10237:10336 if (value >= 10**16) {... */\n tag_250:\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10362:10367 10**8 */\n 0x05f5e100\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10353:10358 value */\n dup4\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10353:10367 value >= 10**8 */\n lt\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10349:10445 if (value >= 10**8) {... */\n tag_253\n jumpi\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10396:10401 10**8 */\n 0x05f5e100\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10387:10401 value /= 10**8 */\n dup4\n div\n swap3\n pop\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10429:10430 8 */\n 0x08\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10419:10430 result += 8 */\n add\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10349:10445 if (value >= 10**8) {... */\n tag_253:\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10471:10476 10**4 */\n 0x2710\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10462:10467 value */\n dup4\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10462:10476 value >= 10**4 */\n lt\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10458:10554 if (value >= 10**4) {... */\n tag_256\n jumpi\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10505:10510 10**4 */\n 0x2710\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10496:10510 value /= 10**4 */\n dup4\n div\n swap3\n pop\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10538:10539 4 */\n 0x04\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10528:10539 result += 4 */\n add\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10458:10554 if (value >= 10**4) {... */\n tag_256:\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10580:10585 10**2 */\n 0x64\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10571:10576 value */\n dup4\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10571:10585 value >= 10**2 */\n lt\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10567:10663 if (value >= 10**2) {... */\n tag_259\n jumpi\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10614:10619 10**2 */\n 0x64\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10605:10619 value /= 10**2 */\n dup4\n div\n swap3\n pop\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10647:10648 2 */\n 0x02\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10637:10648 result += 2 */\n add\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10567:10663 if (value >= 10**2) {... */\n tag_259:\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10689:10694 10**1 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10680:10685 value */\n dup4\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10680:10694 value >= 10**1 */\n lt\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10676:10740 if (value >= 10**1) {... */\n tag_78\n jumpi\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10724:10725 1 */\n 0x01\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10714:10725 result += 1 */\n add\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":10766:10772 result */\n swap3\n /* \"@openzeppelin/contracts/utils/math/Math.sol\":9889:10779 function log10(uint256 value) internal pure returns (uint256) {... */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14:145 */\n tag_264:\n not(sub(shl(0xe0, 0x01), 0x01))\n /* \"#utility.yul\":88:120 */\n dup2\n and\n /* \"#utility.yul\":78:121 */\n dup2\n eq\n /* \"#utility.yul\":68:139 */\n tag_158\n jumpi\n /* \"#utility.yul\":135:136 */\n 0x00\n /* \"#utility.yul\":132:133 */\n dup1\n /* \"#utility.yul\":125:137 */\n revert\n /* \"#utility.yul\":150:395 */\n tag_20:\n /* \"#utility.yul\":208:214 */\n 0x00\n /* \"#utility.yul\":261:263 */\n 0x20\n /* \"#utility.yul\":249:258 */\n dup3\n /* \"#utility.yul\":240:247 */\n dup5\n /* \"#utility.yul\":236:259 */\n sub\n /* \"#utility.yul\":232:264 */\n slt\n /* \"#utility.yul\":229:281 */\n iszero\n tag_273\n jumpi\n /* \"#utility.yul\":277:278 */\n 0x00\n /* \"#utility.yul\":274:275 */\n dup1\n /* \"#utility.yul\":267:279 */\n revert\n /* \"#utility.yul\":229:281 */\n tag_273:\n /* \"#utility.yul\":316:325 */\n dup2\n /* \"#utility.yul\":303:326 */\n calldataload\n /* \"#utility.yul\":335:365 */\n tag_148\n /* \"#utility.yul\":359:364 */\n dup2\n /* \"#utility.yul\":335:365 */\n tag_264\n jump\t// in\n /* \"#utility.yul\":592:842 */\n tag_265:\n /* \"#utility.yul\":677:678 */\n 0x00\n /* \"#utility.yul\":687:800 */\n tag_277:\n /* \"#utility.yul\":701:707 */\n dup4\n /* \"#utility.yul\":698:699 */\n dup2\n /* \"#utility.yul\":695:708 */\n lt\n /* \"#utility.yul\":687:800 */\n iszero\n tag_279\n jumpi\n /* \"#utility.yul\":777:788 */\n dup2\n dup2\n add\n /* \"#utility.yul\":771:789 */\n mload\n /* \"#utility.yul\":758:769 */\n dup4\n dup3\n add\n /* \"#utility.yul\":751:790 */\n mstore\n /* \"#utility.yul\":723:725 */\n 0x20\n /* \"#utility.yul\":716:726 */\n add\n /* \"#utility.yul\":687:800 */\n jump(tag_277)\n tag_279:\n pop\n pop\n /* \"#utility.yul\":834:835 */\n 0x00\n /* \"#utility.yul\":816:832 */\n swap2\n add\n /* \"#utility.yul\":809:836 */\n mstore\n /* \"#utility.yul\":592:842 */\n jump\t// out\n /* \"#utility.yul\":847:1118 */\n tag_266:\n /* \"#utility.yul\":889:892 */\n 0x00\n /* \"#utility.yul\":927:932 */\n dup2\n /* \"#utility.yul\":921:933 */\n mload\n /* \"#utility.yul\":954:960 */\n dup1\n /* \"#utility.yul\":949:952 */\n dup5\n /* \"#utility.yul\":942:961 */\n mstore\n /* \"#utility.yul\":970:1046 */\n tag_281\n /* \"#utility.yul\":1039:1045 */\n dup2\n /* \"#utility.yul\":1032:1036 */\n 0x20\n /* \"#utility.yul\":1027:1030 */\n dup7\n /* \"#utility.yul\":1023:1037 */\n add\n /* \"#utility.yul\":1016:1020 */\n 0x20\n /* \"#utility.yul\":1009:1014 */\n dup7\n /* \"#utility.yul\":1005:1021 */\n add\n /* \"#utility.yul\":970:1046 */\n tag_265\n jump\t// in\n tag_281:\n /* \"#utility.yul\":1100:1102 */\n 0x1f\n /* \"#utility.yul\":1079:1094 */\n add\n not(0x1f)\n /* \"#utility.yul\":1075:1104 */\n and\n /* \"#utility.yul\":1066:1105 */\n swap3\n swap1\n swap3\n add\n /* \"#utility.yul\":1107:1111 */\n 0x20\n /* \"#utility.yul\":1062:1112 */\n add\n swap3\n /* \"#utility.yul\":847:1118 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1123:1343 */\n tag_27:\n /* \"#utility.yul\":1272:1274 */\n 0x20\n /* \"#utility.yul\":1261:1270 */\n dup2\n /* \"#utility.yul\":1254:1275 */\n mstore\n /* \"#utility.yul\":1235:1239 */\n 0x00\n /* \"#utility.yul\":1292:1337 */\n tag_148\n /* \"#utility.yul\":1333:1335 */\n 0x20\n /* \"#utility.yul\":1322:1331 */\n dup4\n /* \"#utility.yul\":1318:1336 */\n add\n /* \"#utility.yul\":1310:1316 */\n dup5\n /* \"#utility.yul\":1292:1337 */\n tag_266\n jump\t// in\n /* \"#utility.yul\":1348:1528 */\n tag_30:\n /* \"#utility.yul\":1407:1413 */\n 0x00\n /* \"#utility.yul\":1460:1462 */\n 0x20\n /* \"#utility.yul\":1448:1457 */\n dup3\n /* \"#utility.yul\":1439:1446 */\n dup5\n /* \"#utility.yul\":1435:1458 */\n sub\n /* \"#utility.yul\":1431:1463 */\n slt\n /* \"#utility.yul\":1428:1480 */\n iszero\n tag_285\n jumpi\n /* \"#utility.yul\":1476:1477 */\n 0x00\n /* \"#utility.yul\":1473:1474 */\n dup1\n /* \"#utility.yul\":1466:1478 */\n revert\n /* \"#utility.yul\":1428:1480 */\n tag_285:\n pop\n /* \"#utility.yul\":1499:1522 */\n calldataload\n swap2\n /* \"#utility.yul\":1348:1528 */\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1741:1914 */\n tag_267:\n /* \"#utility.yul\":1809:1829 */\n dup1\n calldataload\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":1858:1889 */\n dup2\n and\n /* \"#utility.yul\":1848:1890 */\n dup2\n eq\n /* \"#utility.yul\":1838:1908 */\n tag_288\n jumpi\n /* \"#utility.yul\":1904:1905 */\n 0x00\n /* \"#utility.yul\":1901:1902 */\n dup1\n /* \"#utility.yul\":1894:1906 */\n revert\n /* \"#utility.yul\":1838:1908 */\n tag_288:\n /* \"#utility.yul\":1741:1914 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1919:2173 */\n tag_36:\n /* \"#utility.yul\":1987:1993 */\n 0x00\n /* \"#utility.yul\":1995:2001 */\n dup1\n /* \"#utility.yul\":2048:2050 */\n 0x40\n /* \"#utility.yul\":2036:2045 */\n dup4\n /* \"#utility.yul\":2027:2034 */\n dup6\n /* \"#utility.yul\":2023:2046 */\n sub\n /* \"#utility.yul\":2019:2051 */\n slt\n /* \"#utility.yul\":2016:2068 */\n iszero\n tag_290\n jumpi\n /* \"#utility.yul\":2064:2065 */\n 0x00\n /* \"#utility.yul\":2061:2062 */\n dup1\n /* \"#utility.yul\":2054:2066 */\n revert\n /* \"#utility.yul\":2016:2068 */\n tag_290:\n /* \"#utility.yul\":2087:2116 */\n tag_291\n /* \"#utility.yul\":2106:2115 */\n dup4\n /* \"#utility.yul\":2087:2116 */\n tag_267\n jump\t// in\n tag_291:\n /* \"#utility.yul\":2077:2116 */\n swap5\n /* \"#utility.yul\":2163:2165 */\n 0x20\n /* \"#utility.yul\":2148:2166 */\n swap4\n swap1\n swap4\n add\n /* \"#utility.yul\":2135:2167 */\n calldataload\n swap4\n pop\n pop\n pop\n /* \"#utility.yul\":1919:2173 */\n jump\t// out\n /* \"#utility.yul\":2178:2506 */\n tag_40:\n /* \"#utility.yul\":2255:2261 */\n 0x00\n /* \"#utility.yul\":2263:2269 */\n dup1\n /* \"#utility.yul\":2271:2277 */\n 0x00\n /* \"#utility.yul\":2324:2326 */\n 0x60\n /* \"#utility.yul\":2312:2321 */\n dup5\n /* \"#utility.yul\":2303:2310 */\n dup7\n /* \"#utility.yul\":2299:2322 */\n sub\n /* \"#utility.yul\":2295:2327 */\n slt\n /* \"#utility.yul\":2292:2344 */\n iszero\n tag_293\n jumpi\n /* \"#utility.yul\":2340:2341 */\n 0x00\n /* \"#utility.yul\":2337:2338 */\n dup1\n /* \"#utility.yul\":2330:2342 */\n revert\n /* \"#utility.yul\":2292:2344 */\n tag_293:\n /* \"#utility.yul\":2363:2392 */\n tag_294\n /* \"#utility.yul\":2382:2391 */\n dup5\n /* \"#utility.yul\":2363:2392 */\n tag_267\n jump\t// in\n tag_294:\n /* \"#utility.yul\":2353:2392 */\n swap3\n pop\n /* \"#utility.yul\":2411:2449 */\n tag_295\n /* \"#utility.yul\":2445:2447 */\n 0x20\n /* \"#utility.yul\":2434:2443 */\n dup6\n /* \"#utility.yul\":2430:2448 */\n add\n /* \"#utility.yul\":2411:2449 */\n tag_267\n jump\t// in\n tag_295:\n /* \"#utility.yul\":2401:2449 */\n swap2\n pop\n /* \"#utility.yul\":2496:2498 */\n 0x40\n /* \"#utility.yul\":2485:2494 */\n dup5\n /* \"#utility.yul\":2481:2499 */\n add\n /* \"#utility.yul\":2468:2500 */\n calldataload\n /* \"#utility.yul\":2458:2500 */\n swap1\n pop\n /* \"#utility.yul\":2178:2506 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":2511:2697 */\n tag_51:\n /* \"#utility.yul\":2570:2576 */\n 0x00\n /* \"#utility.yul\":2623:2625 */\n 0x20\n /* \"#utility.yul\":2611:2620 */\n dup3\n /* \"#utility.yul\":2602:2609 */\n dup5\n /* \"#utility.yul\":2598:2621 */\n sub\n /* \"#utility.yul\":2594:2626 */\n slt\n /* \"#utility.yul\":2591:2643 */\n iszero\n tag_297\n jumpi\n /* \"#utility.yul\":2639:2640 */\n 0x00\n /* \"#utility.yul\":2636:2637 */\n dup1\n /* \"#utility.yul\":2629:2641 */\n revert\n /* \"#utility.yul\":2591:2643 */\n tag_297:\n /* \"#utility.yul\":2662:2691 */\n tag_148\n /* \"#utility.yul\":2681:2690 */\n dup3\n /* \"#utility.yul\":2662:2691 */\n tag_267\n jump\t// in\n /* \"#utility.yul\":2884:3231 */\n tag_60:\n /* \"#utility.yul\":2949:2955 */\n 0x00\n /* \"#utility.yul\":2957:2963 */\n dup1\n /* \"#utility.yul\":3010:3012 */\n 0x40\n /* \"#utility.yul\":2998:3007 */\n dup4\n /* \"#utility.yul\":2989:2996 */\n dup6\n /* \"#utility.yul\":2985:3008 */\n sub\n /* \"#utility.yul\":2981:3013 */\n slt\n /* \"#utility.yul\":2978:3030 */\n iszero\n tag_301\n jumpi\n /* \"#utility.yul\":3026:3027 */\n 0x00\n /* \"#utility.yul\":3023:3024 */\n dup1\n /* \"#utility.yul\":3016:3028 */\n revert\n /* \"#utility.yul\":2978:3030 */\n tag_301:\n /* \"#utility.yul\":3049:3078 */\n tag_302\n /* \"#utility.yul\":3068:3077 */\n dup4\n /* \"#utility.yul\":3049:3078 */\n tag_267\n jump\t// in\n tag_302:\n /* \"#utility.yul\":3039:3078 */\n swap2\n pop\n /* \"#utility.yul\":3128:3130 */\n 0x20\n /* \"#utility.yul\":3117:3126 */\n dup4\n /* \"#utility.yul\":3113:3131 */\n add\n /* \"#utility.yul\":3100:3132 */\n calldataload\n /* \"#utility.yul\":3175:3180 */\n dup1\n /* \"#utility.yul\":3168:3181 */\n iszero\n /* \"#utility.yul\":3161:3182 */\n iszero\n /* \"#utility.yul\":3154:3159 */\n dup2\n /* \"#utility.yul\":3151:3183 */\n eq\n /* \"#utility.yul\":3141:3201 */\n tag_303\n jumpi\n /* \"#utility.yul\":3197:3198 */\n 0x00\n /* \"#utility.yul\":3194:3195 */\n dup1\n /* \"#utility.yul\":3187:3199 */\n revert\n /* \"#utility.yul\":3141:3201 */\n tag_303:\n /* \"#utility.yul\":3220:3225 */\n dup1\n /* \"#utility.yul\":3210:3225 */\n swap2\n pop\n pop\n /* \"#utility.yul\":2884:3231 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3236:3363 */\n tag_203:\n /* \"#utility.yul\":3297:3307 */\n 0x4e487b71\n /* \"#utility.yul\":3292:3295 */\n 0xe0\n /* \"#utility.yul\":3288:3308 */\n shl\n /* \"#utility.yul\":3285:3286 */\n 0x00\n /* \"#utility.yul\":3278:3309 */\n mstore\n /* \"#utility.yul\":3328:3332 */\n 0x41\n /* \"#utility.yul\":3325:3326 */\n 0x04\n /* \"#utility.yul\":3318:3333 */\n mstore\n /* \"#utility.yul\":3352:3356 */\n 0x24\n /* \"#utility.yul\":3349:3350 */\n 0x00\n /* \"#utility.yul\":3342:3357 */\n revert\n /* \"#utility.yul\":3368:4506 */\n tag_64:\n /* \"#utility.yul\":3463:3469 */\n 0x00\n /* \"#utility.yul\":3471:3477 */\n dup1\n /* \"#utility.yul\":3479:3485 */\n 0x00\n /* \"#utility.yul\":3487:3493 */\n dup1\n /* \"#utility.yul\":3540:3543 */\n 0x80\n /* \"#utility.yul\":3528:3537 */\n dup6\n /* \"#utility.yul\":3519:3526 */\n dup8\n /* \"#utility.yul\":3515:3538 */\n sub\n /* \"#utility.yul\":3511:3544 */\n slt\n /* \"#utility.yul\":3508:3561 */\n iszero\n tag_306\n jumpi\n /* \"#utility.yul\":3557:3558 */\n 0x00\n /* \"#utility.yul\":3554:3555 */\n dup1\n /* \"#utility.yul\":3547:3559 */\n revert\n /* \"#utility.yul\":3508:3561 */\n tag_306:\n /* \"#utility.yul\":3580:3609 */\n tag_307\n /* \"#utility.yul\":3599:3608 */\n dup6\n /* \"#utility.yul\":3580:3609 */\n tag_267\n jump\t// in\n tag_307:\n /* \"#utility.yul\":3570:3609 */\n swap4\n pop\n /* \"#utility.yul\":3628:3666 */\n tag_308\n /* \"#utility.yul\":3662:3664 */\n 0x20\n /* \"#utility.yul\":3651:3660 */\n dup7\n /* \"#utility.yul\":3647:3665 */\n add\n /* \"#utility.yul\":3628:3666 */\n tag_267\n jump\t// in\n tag_308:\n /* \"#utility.yul\":3618:3666 */\n swap3\n pop\n /* \"#utility.yul\":3713:3715 */\n 0x40\n /* \"#utility.yul\":3702:3711 */\n dup6\n /* \"#utility.yul\":3698:3716 */\n add\n /* \"#utility.yul\":3685:3717 */\n calldataload\n /* \"#utility.yul\":3675:3717 */\n swap2\n pop\n /* \"#utility.yul\":3768:3770 */\n 0x60\n /* \"#utility.yul\":3757:3766 */\n dup6\n /* \"#utility.yul\":3753:3771 */\n add\n /* \"#utility.yul\":3740:3772 */\n calldataload\n /* \"#utility.yul\":3791:3809 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3832:3834 */\n dup1\n /* \"#utility.yul\":3824:3830 */\n dup3\n /* \"#utility.yul\":3821:3835 */\n gt\n /* \"#utility.yul\":3818:3852 */\n iszero\n tag_309\n jumpi\n /* \"#utility.yul\":3848:3849 */\n 0x00\n /* \"#utility.yul\":3845:3846 */\n dup1\n /* \"#utility.yul\":3838:3850 */\n revert\n /* \"#utility.yul\":3818:3852 */\n tag_309:\n /* \"#utility.yul\":3886:3892 */\n dup2\n /* \"#utility.yul\":3875:3884 */\n dup8\n /* \"#utility.yul\":3871:3893 */\n add\n /* \"#utility.yul\":3861:3893 */\n swap2\n pop\n /* \"#utility.yul\":3931:3938 */\n dup8\n /* \"#utility.yul\":3924:3928 */\n 0x1f\n /* \"#utility.yul\":3920:3922 */\n dup4\n /* \"#utility.yul\":3916:3929 */\n add\n /* \"#utility.yul\":3912:3939 */\n slt\n /* \"#utility.yul\":3902:3957 */\n tag_310\n jumpi\n /* \"#utility.yul\":3953:3954 */\n 0x00\n /* \"#utility.yul\":3950:3951 */\n dup1\n /* \"#utility.yul\":3943:3955 */\n revert\n /* \"#utility.yul\":3902:3957 */\n tag_310:\n /* \"#utility.yul\":3989:3991 */\n dup2\n /* \"#utility.yul\":3976:3992 */\n calldataload\n /* \"#utility.yul\":4011:4013 */\n dup2\n /* \"#utility.yul\":4007:4009 */\n dup2\n /* \"#utility.yul\":4004:4014 */\n gt\n /* \"#utility.yul\":4001:4037 */\n iszero\n tag_312\n jumpi\n /* \"#utility.yul\":4017:4035 */\n tag_312\n tag_203\n jump\t// in\n tag_312:\n /* \"#utility.yul\":4092:4094 */\n 0x40\n /* \"#utility.yul\":4086:4095 */\n mload\n /* \"#utility.yul\":4060:4062 */\n 0x1f\n /* \"#utility.yul\":4146:4159 */\n dup3\n add\n not(0x1f)\n /* \"#utility.yul\":4142:4164 */\n swap1\n dup2\n and\n /* \"#utility.yul\":4166:4168 */\n 0x3f\n /* \"#utility.yul\":4138:4169 */\n add\n /* \"#utility.yul\":4134:4174 */\n and\n /* \"#utility.yul\":4122:4175 */\n dup2\n add\n swap1\n /* \"#utility.yul\":4190:4208 */\n dup4\n dup3\n gt\n /* \"#utility.yul\":4210:4232 */\n dup2\n dup4\n lt\n /* \"#utility.yul\":4187:4233 */\n or\n /* \"#utility.yul\":4184:4256 */\n iszero\n tag_314\n jumpi\n /* \"#utility.yul\":4236:4254 */\n tag_314\n tag_203\n jump\t// in\n tag_314:\n /* \"#utility.yul\":4276:4286 */\n dup2\n /* \"#utility.yul\":4272:4274 */\n 0x40\n /* \"#utility.yul\":4265:4287 */\n mstore\n /* \"#utility.yul\":4311:4313 */\n dup3\n /* \"#utility.yul\":4303:4309 */\n dup2\n /* \"#utility.yul\":4296:4314 */\n mstore\n /* \"#utility.yul\":4351:4358 */\n dup11\n /* \"#utility.yul\":4346:4348 */\n 0x20\n /* \"#utility.yul\":4341:4343 */\n dup5\n /* \"#utility.yul\":4337:4339 */\n dup8\n /* \"#utility.yul\":4333:4344 */\n add\n /* \"#utility.yul\":4329:4349 */\n add\n /* \"#utility.yul\":4326:4359 */\n gt\n /* \"#utility.yul\":4323:4376 */\n iszero\n tag_315\n jumpi\n /* \"#utility.yul\":4372:4373 */\n 0x00\n /* \"#utility.yul\":4369:4370 */\n dup1\n /* \"#utility.yul\":4362:4374 */\n revert\n /* \"#utility.yul\":4323:4376 */\n tag_315:\n /* \"#utility.yul\":4428:4430 */\n dup3\n /* \"#utility.yul\":4423:4425 */\n 0x20\n /* \"#utility.yul\":4419:4421 */\n dup7\n /* \"#utility.yul\":4415:4426 */\n add\n /* \"#utility.yul\":4410:4412 */\n 0x20\n /* \"#utility.yul\":4402:4408 */\n dup4\n /* \"#utility.yul\":4398:4413 */\n add\n /* \"#utility.yul\":4385:4431 */\n calldatacopy\n /* \"#utility.yul\":4473:4474 */\n 0x00\n /* \"#utility.yul\":4468:4470 */\n 0x20\n /* \"#utility.yul\":4463:4465 */\n dup5\n /* \"#utility.yul\":4455:4461 */\n dup4\n /* \"#utility.yul\":4451:4466 */\n add\n /* \"#utility.yul\":4447:4471 */\n add\n /* \"#utility.yul\":4440:4475 */\n mstore\n /* \"#utility.yul\":4494:4500 */\n dup1\n /* \"#utility.yul\":4484:4500 */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n /* \"#utility.yul\":3368:4506 */\n swap3\n swap6\n swap2\n swap5\n pop\n swap3\n pop\n jump\t// out\n /* \"#utility.yul\":4511:4771 */\n tag_72:\n /* \"#utility.yul\":4579:4585 */\n 0x00\n /* \"#utility.yul\":4587:4593 */\n dup1\n /* \"#utility.yul\":4640:4642 */\n 0x40\n /* \"#utility.yul\":4628:4637 */\n dup4\n /* \"#utility.yul\":4619:4626 */\n dup6\n /* \"#utility.yul\":4615:4638 */\n sub\n /* \"#utility.yul\":4611:4643 */\n slt\n /* \"#utility.yul\":4608:4660 */\n iszero\n tag_317\n jumpi\n /* \"#utility.yul\":4656:4657 */\n 0x00\n /* \"#utility.yul\":4653:4654 */\n dup1\n /* \"#utility.yul\":4646:4658 */\n revert\n /* \"#utility.yul\":4608:4660 */\n tag_317:\n /* \"#utility.yul\":4679:4708 */\n tag_318\n /* \"#utility.yul\":4698:4707 */\n dup4\n /* \"#utility.yul\":4679:4708 */\n tag_267\n jump\t// in\n tag_318:\n /* \"#utility.yul\":4669:4708 */\n swap2\n pop\n /* \"#utility.yul\":4727:4765 */\n tag_319\n /* \"#utility.yul\":4761:4763 */\n 0x20\n /* \"#utility.yul\":4750:4759 */\n dup5\n /* \"#utility.yul\":4746:4764 */\n add\n /* \"#utility.yul\":4727:4765 */\n tag_267\n jump\t// in\n tag_319:\n /* \"#utility.yul\":4717:4765 */\n swap1\n pop\n /* \"#utility.yul\":4511:4771 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4776:5156 */\n tag_82:\n /* \"#utility.yul\":4855:4856 */\n 0x01\n /* \"#utility.yul\":4851:4863 */\n dup2\n dup2\n shr\n swap1\n /* \"#utility.yul\":4898:4910 */\n dup3\n and\n dup1\n /* \"#utility.yul\":4919:4980 */\n tag_321\n jumpi\n /* \"#utility.yul\":4973:4977 */\n 0x7f\n /* \"#utility.yul\":4965:4971 */\n dup3\n /* \"#utility.yul\":4961:4978 */\n and\n /* \"#utility.yul\":4951:4978 */\n swap2\n pop\n /* \"#utility.yul\":4919:4980 */\n tag_321:\n /* \"#utility.yul\":5026:5028 */\n 0x20\n /* \"#utility.yul\":5018:5024 */\n dup3\n /* \"#utility.yul\":5015:5029 */\n lt\n /* \"#utility.yul\":4995:5013 */\n dup2\n /* \"#utility.yul\":4992:5030 */\n sub\n /* \"#utility.yul\":4989:5150 */\n tag_322\n jumpi\n /* \"#utility.yul\":5072:5082 */\n 0x4e487b71\n /* \"#utility.yul\":5067:5070 */\n 0xe0\n /* \"#utility.yul\":5063:5083 */\n shl\n /* \"#utility.yul\":5060:5061 */\n 0x00\n /* \"#utility.yul\":5053:5084 */\n mstore\n /* \"#utility.yul\":5107:5111 */\n 0x22\n /* \"#utility.yul\":5104:5105 */\n 0x04\n /* \"#utility.yul\":5097:5112 */\n mstore\n /* \"#utility.yul\":5135:5139 */\n 0x24\n /* \"#utility.yul\":5132:5133 */\n 0x00\n /* \"#utility.yul\":5125:5140 */\n revert\n /* \"#utility.yul\":4989:5150 */\n tag_322:\n pop\n /* \"#utility.yul\":4776:5156 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5993:6402 */\n tag_111:\n /* \"#utility.yul\":6195:6197 */\n 0x20\n /* \"#utility.yul\":6177:6198 */\n dup1\n dup3\n mstore\n /* \"#utility.yul\":6234:6236 */\n 0x2d\n /* \"#utility.yul\":6214:6232 */\n swap1\n dup3\n add\n /* \"#utility.yul\":6207:6237 */\n mstore\n /* \"#utility.yul\":6273:6307 */\n 0x4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65\n /* \"#utility.yul\":6268:6270 */\n 0x40\n /* \"#utility.yul\":6253:6271 */\n dup3\n add\n /* \"#utility.yul\":6246:6308 */\n mstore\n shl(0x9a, 0x1c881bdc88185c1c1c9bdd9959)\n /* \"#utility.yul\":6339:6341 */\n 0x60\n /* \"#utility.yul\":6324:6342 */\n dup3\n add\n /* \"#utility.yul\":6317:6360 */\n mstore\n /* \"#utility.yul\":6392:6395 */\n 0x80\n /* \"#utility.yul\":6377:6396 */\n add\n swap1\n /* \"#utility.yul\":5993:6402 */\n jump\t// out\n /* \"#utility.yul\":7170:7666 */\n tag_152:\n /* \"#utility.yul\":7349:7352 */\n 0x00\n /* \"#utility.yul\":7387:7393 */\n dup4\n /* \"#utility.yul\":7381:7394 */\n mload\n /* \"#utility.yul\":7403:7469 */\n tag_329\n /* \"#utility.yul\":7462:7468 */\n dup2\n /* \"#utility.yul\":7457:7460 */\n dup5\n /* \"#utility.yul\":7450:7454 */\n 0x20\n /* \"#utility.yul\":7442:7448 */\n dup9\n /* \"#utility.yul\":7438:7455 */\n add\n /* \"#utility.yul\":7403:7469 */\n tag_265\n jump\t// in\n tag_329:\n /* \"#utility.yul\":7532:7545 */\n dup4\n mload\n /* \"#utility.yul\":7491:7507 */\n swap1\n dup4\n add\n swap1\n /* \"#utility.yul\":7554:7624 */\n tag_330\n /* \"#utility.yul\":7532:7545 */\n dup2\n /* \"#utility.yul\":7491:7507 */\n dup4\n /* \"#utility.yul\":7601:7605 */\n 0x20\n /* \"#utility.yul\":7589:7606 */\n dup9\n add\n /* \"#utility.yul\":7554:7624 */\n tag_265\n jump\t// in\n tag_330:\n /* \"#utility.yul\":7640:7660 */\n add\n swap5\n /* \"#utility.yul\":7170:7666 */\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7671:8072 */\n tag_173:\n /* \"#utility.yul\":7873:7875 */\n 0x20\n /* \"#utility.yul\":7855:7876 */\n dup1\n dup3\n mstore\n /* \"#utility.yul\":7912:7914 */\n 0x25\n /* \"#utility.yul\":7892:7910 */\n swap1\n dup3\n add\n /* \"#utility.yul\":7885:7915 */\n mstore\n /* \"#utility.yul\":7951:7985 */\n 0x4552433732313a207472616e736665722066726f6d20696e636f727265637420\n /* \"#utility.yul\":7946:7948 */\n 0x40\n /* \"#utility.yul\":7931:7949 */\n dup3\n add\n /* \"#utility.yul\":7924:7986 */\n mstore\n shl(0xd9, 0x37bbb732b9)\n /* \"#utility.yul\":8017:8019 */\n 0x60\n /* \"#utility.yul\":8002:8020 */\n dup3\n add\n /* \"#utility.yul\":7995:8030 */\n mstore\n /* \"#utility.yul\":8062:8065 */\n 0x80\n /* \"#utility.yul\":8047:8066 */\n add\n swap1\n /* \"#utility.yul\":7671:8072 */\n jump\t// out\n /* \"#utility.yul\":8836:9250 */\n tag_196:\n /* \"#utility.yul\":9038:9040 */\n 0x20\n /* \"#utility.yul\":9020:9041 */\n dup1\n dup3\n mstore\n /* \"#utility.yul\":9077:9079 */\n 0x32\n /* \"#utility.yul\":9057:9075 */\n swap1\n dup3\n add\n /* \"#utility.yul\":9050:9080 */\n mstore\n /* \"#utility.yul\":9116:9150 */\n 0x4552433732313a207472616e7366657220746f206e6f6e204552433732315265\n /* \"#utility.yul\":9111:9113 */\n 0x40\n /* \"#utility.yul\":9096:9114 */\n dup3\n add\n /* \"#utility.yul\":9089:9151 */\n mstore\n shl(0x71, 0x31b2b4bb32b91034b6b83632b6b2b73a32b9)\n /* \"#utility.yul\":9182:9184 */\n 0x60\n /* \"#utility.yul\":9167:9185 */\n dup3\n add\n /* \"#utility.yul\":9160:9208 */\n mstore\n /* \"#utility.yul\":9240:9243 */\n 0x80\n /* \"#utility.yul\":9225:9244 */\n add\n swap1\n /* \"#utility.yul\":8836:9250 */\n jump\t// out\n /* \"#utility.yul\":9387:9514 */\n tag_268:\n /* \"#utility.yul\":9448:9458 */\n 0x4e487b71\n /* \"#utility.yul\":9443:9446 */\n 0xe0\n /* \"#utility.yul\":9439:9459 */\n shl\n /* \"#utility.yul\":9436:9437 */\n 0x00\n /* \"#utility.yul\":9429:9460 */\n mstore\n /* \"#utility.yul\":9479:9483 */\n 0x11\n /* \"#utility.yul\":9476:9477 */\n 0x04\n /* \"#utility.yul\":9469:9484 */\n mstore\n /* \"#utility.yul\":9503:9507 */\n 0x24\n /* \"#utility.yul\":9500:9501 */\n 0x00\n /* \"#utility.yul\":9493:9508 */\n revert\n /* \"#utility.yul\":9519:9647 */\n tag_217:\n /* \"#utility.yul\":9586:9595 */\n dup2\n dup2\n sub\n /* \"#utility.yul\":9607:9618 */\n dup2\n dup2\n gt\n /* \"#utility.yul\":9604:9641 */\n iszero\n tag_78\n jumpi\n /* \"#utility.yul\":9621:9639 */\n tag_78\n tag_268\n jump\t// in\n /* \"#utility.yul\":9652:9777 */\n tag_220:\n /* \"#utility.yul\":9717:9726 */\n dup1\n dup3\n add\n /* \"#utility.yul\":9738:9748 */\n dup1\n dup3\n gt\n /* \"#utility.yul\":9735:9771 */\n iszero\n tag_78\n jumpi\n /* \"#utility.yul\":9751:9769 */\n tag_78\n tag_268\n jump\t// in\n /* \"#utility.yul\":9782:10271 */\n tag_228:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":10051:10066 */\n dup6\n dup2\n and\n /* \"#utility.yul\":10033:10067 */\n dup3\n mstore\n /* \"#utility.yul\":10103:10118 */\n dup5\n and\n /* \"#utility.yul\":10098:10100 */\n 0x20\n /* \"#utility.yul\":10083:10101 */\n dup3\n add\n /* \"#utility.yul\":10076:10119 */\n mstore\n /* \"#utility.yul\":10150:10152 */\n 0x40\n /* \"#utility.yul\":10135:10153 */\n dup2\n add\n /* \"#utility.yul\":10128:10162 */\n dup4\n swap1\n mstore\n /* \"#utility.yul\":10198:10201 */\n 0x80\n /* \"#utility.yul\":10193:10195 */\n 0x60\n /* \"#utility.yul\":10178:10196 */\n dup3\n add\n /* \"#utility.yul\":10171:10202 */\n dup2\n swap1\n mstore\n /* \"#utility.yul\":9976:9980 */\n 0x00\n swap1\n /* \"#utility.yul\":10219:10265 */\n tag_344\n swap1\n /* \"#utility.yul\":10245:10264 */\n dup4\n add\n /* \"#utility.yul\":10237:10243 */\n dup5\n /* \"#utility.yul\":10219:10265 */\n tag_266\n jump\t// in\n tag_344:\n /* \"#utility.yul\":10211:10265 */\n swap7\n /* \"#utility.yul\":9782:10271 */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10276:10525 */\n tag_231:\n /* \"#utility.yul\":10345:10351 */\n 0x00\n /* \"#utility.yul\":10398:10400 */\n 0x20\n /* \"#utility.yul\":10386:10395 */\n dup3\n /* \"#utility.yul\":10377:10384 */\n dup5\n /* \"#utility.yul\":10373:10396 */\n sub\n /* \"#utility.yul\":10369:10401 */\n slt\n /* \"#utility.yul\":10366:10418 */\n iszero\n tag_346\n jumpi\n /* \"#utility.yul\":10414:10415 */\n 0x00\n /* \"#utility.yul\":10411:10412 */\n dup1\n /* \"#utility.yul\":10404:10416 */\n revert\n /* \"#utility.yul\":10366:10418 */\n tag_346:\n /* \"#utility.yul\":10446:10455 */\n dup2\n /* \"#utility.yul\":10440:10456 */\n mload\n /* \"#utility.yul\":10465:10495 */\n tag_148\n /* \"#utility.yul\":10489:10494 */\n dup2\n /* \"#utility.yul\":10465:10495 */\n tag_264\n jump\t// in\n\n auxdata: 0xa264697066735822122074d767db8da757096bfdcabb4947ecae2ceceec549326376ce67aa72c1e90d9c64736f6c63430008110033\n}\n",
"bytecode": {
"functionDebugData": {
"@_175": {
"entryPoint": null,
"id": 175,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_string_fromMemory": {
"entryPoint": 112,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 287,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"array_dataslot_string_storage": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_string_storage": {
"entryPoint": 453,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 536,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 393,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x41": {
"entryPoint": 90,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4144:19",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:19",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "46:95:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "63:1:19",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "70:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "75:10:19",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "66:3:19"
},
"nodeType": "YulFunctionCall",
"src": "66:20:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "56:6:19"
},
"nodeType": "YulFunctionCall",
"src": "56:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "56:31:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "103:1:19",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "106:4:19",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "96:6:19"
},
"nodeType": "YulFunctionCall",
"src": "96:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "96:15:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "127:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "130:4:19",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "120:6:19"
},
"nodeType": "YulFunctionCall",
"src": "120:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "120:15:19"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "14:127:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "210:776:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "259:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "268:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "271:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "261:6:19"
},
"nodeType": "YulFunctionCall",
"src": "261:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "261:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "238:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "246:4:19",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "234:3:19"
},
"nodeType": "YulFunctionCall",
"src": "234:17:19"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "253:3:19"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "230:3:19"
},
"nodeType": "YulFunctionCall",
"src": "230:27:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "223:6:19"
},
"nodeType": "YulFunctionCall",
"src": "223:35:19"
},
"nodeType": "YulIf",
"src": "220:55:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "284:23:19",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "300:6:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "294:5:19"
},
"nodeType": "YulFunctionCall",
"src": "294:13:19"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "288:2:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "316:28:19",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "334:2:19",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "338:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "330:3:19"
},
"nodeType": "YulFunctionCall",
"src": "330:10:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "342:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "326:3:19"
},
"nodeType": "YulFunctionCall",
"src": "326:18:19"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "320:2:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "367:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "369:16:19"
},
"nodeType": "YulFunctionCall",
"src": "369:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "369:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "359:2:19"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "363:2:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "356:2:19"
},
"nodeType": "YulFunctionCall",
"src": "356:10:19"
},
"nodeType": "YulIf",
"src": "353:36:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "398:17:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "412:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "408:3:19"
},
"nodeType": "YulFunctionCall",
"src": "408:7:19"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "402:2:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "424:23:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "444:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "438:5:19"
},
"nodeType": "YulFunctionCall",
"src": "438:9:19"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "428:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "456:71:19",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "478:6:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "502:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "506:4:19",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "498:3:19"
},
"nodeType": "YulFunctionCall",
"src": "498:13:19"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "513:2:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "494:3:19"
},
"nodeType": "YulFunctionCall",
"src": "494:22:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "518:2:19",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "490:3:19"
},
"nodeType": "YulFunctionCall",
"src": "490:31:19"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "523:2:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "486:3:19"
},
"nodeType": "YulFunctionCall",
"src": "486:40:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "474:3:19"
},
"nodeType": "YulFunctionCall",
"src": "474:53:19"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "460:10:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "586:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "588:16:19"
},
"nodeType": "YulFunctionCall",
"src": "588:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "588:18:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "545:10:19"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "557:2:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "542:2:19"
},
"nodeType": "YulFunctionCall",
"src": "542:18:19"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "565:10:19"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "577:6:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "562:2:19"
},
"nodeType": "YulFunctionCall",
"src": "562:22:19"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "539:2:19"
},
"nodeType": "YulFunctionCall",
"src": "539:46:19"
},
"nodeType": "YulIf",
"src": "536:72:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "624:2:19",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "628:10:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "617:6:19"
},
"nodeType": "YulFunctionCall",
"src": "617:22:19"
},
"nodeType": "YulExpressionStatement",
"src": "617:22:19"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "655:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "663:2:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "648:6:19"
},
"nodeType": "YulFunctionCall",
"src": "648:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "648:18:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "675:14:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "685:4:19",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "679:2:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "744:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "747:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "737:6:19"
},
"nodeType": "YulFunctionCall",
"src": "737:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "737:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "712:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "720:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "708:3:19"
},
"nodeType": "YulFunctionCall",
"src": "708:15:19"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "725:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "704:3:19"
},
"nodeType": "YulFunctionCall",
"src": "704:24:19"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "730:3:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "701:2:19"
},
"nodeType": "YulFunctionCall",
"src": "701:33:19"
},
"nodeType": "YulIf",
"src": "698:53:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "760:10:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "769:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "764:1:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "825:87:19",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "854:6:19"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "862:1:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "850:3:19"
},
"nodeType": "YulFunctionCall",
"src": "850:14:19"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "866:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "846:3:19"
},
"nodeType": "YulFunctionCall",
"src": "846:23:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "885:6:19"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "893:1:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "881:3:19"
},
"nodeType": "YulFunctionCall",
"src": "881:14:19"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "897:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "877:3:19"
},
"nodeType": "YulFunctionCall",
"src": "877:23:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "871:5:19"
},
"nodeType": "YulFunctionCall",
"src": "871:30:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "839:6:19"
},
"nodeType": "YulFunctionCall",
"src": "839:63:19"
},
"nodeType": "YulExpressionStatement",
"src": "839:63:19"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "790:1:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "793:2:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "787:2:19"
},
"nodeType": "YulFunctionCall",
"src": "787:9:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "797:19:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "799:15:19",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "808:1:19"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "811:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "804:3:19"
},
"nodeType": "YulFunctionCall",
"src": "804:10:19"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "799:1:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "783:3:19",
"statements": []
},
"src": "779:133:19"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "936:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "944:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "932:3:19"
},
"nodeType": "YulFunctionCall",
"src": "932:15:19"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "949:2:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "928:3:19"
},
"nodeType": "YulFunctionCall",
"src": "928:24:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "954:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "921:6:19"
},
"nodeType": "YulFunctionCall",
"src": "921:35:19"
},
"nodeType": "YulExpressionStatement",
"src": "921:35:19"
},
{
"nodeType": "YulAssignment",
"src": "965:15:19",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "974:6:19"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "965:5:19"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "184:6:19",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "192:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "200:5:19",
"type": ""
}
],
"src": "146:840:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:444:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1155:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1164:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1167:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1157:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1157:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "1157:12:19"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1130:7:19"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1139:9:19"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1126:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1126:23:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1151:2:19",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1122:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1122:32:19"
},
"nodeType": "YulIf",
"src": "1119:52:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1180:30:19",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1200:9:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1194:5:19"
},
"nodeType": "YulFunctionCall",
"src": "1194:16:19"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1184:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1219:28:19",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1237:2:19",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1241:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1233:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1233:10:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1245:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1229:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1229:18:19"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1223:2:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1274:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1283:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1276:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1276:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "1276:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1262:6:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1270:2:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1259:2:19"
},
"nodeType": "YulFunctionCall",
"src": "1259:14:19"
},
"nodeType": "YulIf",
"src": "1256:34:19"
},
{
"nodeType": "YulAssignment",
"src": "1299:71:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1342:9:19"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1353:6:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1338:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1338:22:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1362:7:19"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1309:28:19"
},
"nodeType": "YulFunctionCall",
"src": "1309:61:19"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1299:6:19"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1379:41:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1405:9:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1416:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1401:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1401:18:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1395:5:19"
},
"nodeType": "YulFunctionCall",
"src": "1395:25:19"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1383:8:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1449:16:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1458:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1461:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1451:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1451:12:19"
},
"nodeType": "YulExpressionStatement",
"src": "1451:12:19"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1435:8:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1445:2:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1432:2:19"
},
"nodeType": "YulFunctionCall",
"src": "1432:16:19"
},
"nodeType": "YulIf",
"src": "1429:36:19"
},
{
"nodeType": "YulAssignment",
"src": "1474:73:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1517:9:19"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1528:8:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1513:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1513:24:19"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1539:7:19"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1484:28:19"
},
"nodeType": "YulFunctionCall",
"src": "1484:63:19"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1474:6:19"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1067:9:19",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1078:7:19",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1090:6:19",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1098:6:19",
"type": ""
}
],
"src": "991:562:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:325:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:22:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1637:1:19",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1640:4:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "1633:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1633:12:19"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1623:6:19"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1654:38:19",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1684:4:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1690:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1680:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1680:12:19"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1658:18:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1731:31:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1733:27:19",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1747:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1755:4:19",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1743:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1743:17:19"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1733:6:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1711:18:19"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1704:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1704:26:19"
},
"nodeType": "YulIf",
"src": "1701:61:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1821:111:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1842:1:19",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1849:3:19",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1854:10:19",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1845:3:19"
},
"nodeType": "YulFunctionCall",
"src": "1845:20:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1835:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1835:31:19"
},
"nodeType": "YulExpressionStatement",
"src": "1835:31:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1886:1:19",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1889:4:19",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1879:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1879:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "1879:15:19"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1914:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1917:4:19",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1907:6:19"
},
"nodeType": "YulFunctionCall",
"src": "1907:15:19"
},
"nodeType": "YulExpressionStatement",
"src": "1907:15:19"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1777:18:19"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1800:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1808:2:19",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1797:2:19"
},
"nodeType": "YulFunctionCall",
"src": "1797:14:19"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1774:2:19"
},
"nodeType": "YulFunctionCall",
"src": "1774:38:19"
},
"nodeType": "YulIf",
"src": "1771:161:19"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1593:4:19",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1602:6:19",
"type": ""
}
],
"src": "1558:380:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1999:65:19",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2016:1:19",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "2019:3:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2009:6:19"
},
"nodeType": "YulFunctionCall",
"src": "2009:14:19"
},
"nodeType": "YulExpressionStatement",
"src": "2009:14:19"
},
{
"nodeType": "YulAssignment",
"src": "2032:26:19",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2050:1:19",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2053:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "2040:9:19"
},
"nodeType": "YulFunctionCall",
"src": "2040:18:19"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2032:4:19"
}
]
}
]
},
"name": "array_dataslot_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "1982:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1990:4:19",
"type": ""
}
],
"src": "1943:121:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2150:464:19",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2183:425:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2197:11:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2207:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "2201:2:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2228:2:19"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2232:5:19"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2221:6:19"
},
"nodeType": "YulFunctionCall",
"src": "2221:17:19"
},
"nodeType": "YulExpressionStatement",
"src": "2221:17:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2251:31:19",
"value": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2273:2:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2277:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "2263:9:19"
},
"nodeType": "YulFunctionCall",
"src": "2263:19:19"
},
"variables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2255:4:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2295:57:19",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2318:4:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2328:1:19",
"type": "",
"value": "5"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2335:10:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2347:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2331:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2331:19:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2324:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2324:27:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2314:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2314:38:19"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2299:11:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2389:23:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2391:19:19",
"value": {
"name": "data",
"nodeType": "YulIdentifier",
"src": "2406:4:19"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "2391:11:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2371:10:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2383:4:19",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2368:2:19"
},
"nodeType": "YulFunctionCall",
"src": "2368:20:19"
},
"nodeType": "YulIf",
"src": "2365:47:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2425:41:19",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2439:4:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2449:1:19",
"type": "",
"value": "5"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2456:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2461:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2452:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2452:12:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2445:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2445:20:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2435:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2435:31:19"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "2429:2:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2479:24:19",
"value": {
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "2492:11:19"
},
"variables": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2483:5:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2577:21:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2586:5:19"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2593:2:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2579:6:19"
},
"nodeType": "YulFunctionCall",
"src": "2579:17:19"
},
"nodeType": "YulExpressionStatement",
"src": "2579:17:19"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2527:5:19"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "2534:2:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2524:2:19"
},
"nodeType": "YulFunctionCall",
"src": "2524:13:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2538:26:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2540:22:19",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2553:5:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2560:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2549:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2549:13:19"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2540:5:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2520:3:19",
"statements": []
},
"src": "2516:82:19"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2166:3:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2171:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2163:2:19"
},
"nodeType": "YulFunctionCall",
"src": "2163:11:19"
},
"nodeType": "YulIf",
"src": "2160:448:19"
}
]
},
"name": "clean_up_bytearray_end_slots_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2122:5:19",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2129:3:19",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2134:10:19",
"type": ""
}
],
"src": "2069:545:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2704:81:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2714:65:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2729:4:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2747:1:19",
"type": "",
"value": "3"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2750:3:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2743:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2743:11:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2760:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2756:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2756:6:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2739:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2739:24:19"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2735:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2735:29:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2725:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2725:40:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2771:1:19",
"type": "",
"value": "1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2774:3:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2767:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2767:11:19"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2722:2:19"
},
"nodeType": "YulFunctionCall",
"src": "2722:57:19"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "2714:4:19"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2681:4:19",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2687:3:19",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "2695:4:19",
"type": ""
}
],
"src": "2619:166:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2886:1256:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2896:24:19",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2916:3:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2910:5:19"
},
"nodeType": "YulFunctionCall",
"src": "2910:10:19"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "2900:6:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2963:22:19",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2965:16:19"
},
"nodeType": "YulFunctionCall",
"src": "2965:18:19"
},
"nodeType": "YulExpressionStatement",
"src": "2965:18:19"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "2935:6:19"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2951:2:19",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2955:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2947:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2947:10:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2959:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2943:3:19"
},
"nodeType": "YulFunctionCall",
"src": "2943:18:19"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2932:2:19"
},
"nodeType": "YulFunctionCall",
"src": "2932:30:19"
},
"nodeType": "YulIf",
"src": "2929:56:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3038:4:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3076:4:19"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "3070:5:19"
},
"nodeType": "YulFunctionCall",
"src": "3070:11:19"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "3044:25:19"
},
"nodeType": "YulFunctionCall",
"src": "3044:38:19"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3084:6:19"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_string_storage",
"nodeType": "YulIdentifier",
"src": "2994:43:19"
},
"nodeType": "YulFunctionCall",
"src": "2994:97:19"
},
"nodeType": "YulExpressionStatement",
"src": "2994:97:19"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3100:18:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3117:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "3104:9:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3127:23:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3146:4:19",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "srcOffset_1",
"nodeType": "YulTypedName",
"src": "3131:11:19",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3159:24:19",
"value": {
"name": "srcOffset_1",
"nodeType": "YulIdentifier",
"src": "3172:11:19"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3159:9:19"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "3229:656:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3243:35:19",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3262:6:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3274:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3270:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3270:7:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3258:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3258:20:19"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "3247:7:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3291:49:19",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3335:4:19"
}
],
"functionName": {
"name": "array_dataslot_string_storage",
"nodeType": "YulIdentifier",
"src": "3305:29:19"
},
"nodeType": "YulFunctionCall",
"src": "3305:35:19"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "3295:6:19",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3353:10:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3362:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3357:1:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3440:172:19",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "3465:6:19"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3483:3:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3488:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3479:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3479:19:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3473:5:19"
},
"nodeType": "YulFunctionCall",
"src": "3473:26:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "3458:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3458:42:19"
},
"nodeType": "YulExpressionStatement",
"src": "3458:42:19"
},
{
"nodeType": "YulAssignment",
"src": "3517:24:19",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "3531:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3539:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3527:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3527:14:19"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "3517:6:19"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3558:40:19",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3575:9:19"
},
{
"name": "srcOffset_1",
"nodeType": "YulIdentifier",
"src": "3586:11:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3571:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3571:27:19"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3558:9:19"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3387:1:19"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "3390:7:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3384:2:19"
},
"nodeType": "YulFunctionCall",
"src": "3384:14:19"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3399:28:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3401:24:19",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3410:1:19"
},
{
"name": "srcOffset_1",
"nodeType": "YulIdentifier",
"src": "3413:11:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3406:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3406:19:19"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3401:1:19"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3380:3:19",
"statements": []
},
"src": "3376:236:19"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3660:166:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3678:43:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3705:3:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "3710:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3701:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3701:19:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3695:5:19"
},
"nodeType": "YulFunctionCall",
"src": "3695:26:19"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "3682:9:19",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "3745:6:19"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "3757:9:19"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3784:1:19",
"type": "",
"value": "3"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3787:6:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3780:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3780:14:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3796:3:19",
"type": "",
"value": "248"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3776:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3776:24:19"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3806:1:19",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3802:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3802:6:19"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3772:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3772:37:19"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3768:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3768:42:19"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3753:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3753:58:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "3738:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3738:74:19"
},
"nodeType": "YulExpressionStatement",
"src": "3738:74:19"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "3631:7:19"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3640:6:19"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3628:2:19"
},
"nodeType": "YulFunctionCall",
"src": "3628:19:19"
},
"nodeType": "YulIf",
"src": "3625:201:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3846:4:19"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3860:1:19",
"type": "",
"value": "1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3863:6:19"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3856:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3856:14:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3872:1:19",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3852:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3852:22:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "3839:6:19"
},
"nodeType": "YulFunctionCall",
"src": "3839:36:19"
},
"nodeType": "YulExpressionStatement",
"src": "3839:36:19"
}
]
},
"nodeType": "YulCase",
"src": "3222:663:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3227:1:19",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "3902:234:19",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3916:14:19",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3929:1:19",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3920:5:19",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3965:67:19",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3983:35:19",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4002:3:19"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4007:9:19"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3998:3:19"
},
"nodeType": "YulFunctionCall",
"src": "3998:19:19"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3992:5:19"
},
"nodeType": "YulFunctionCall",
"src": "3992:26:19"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3983:5:19"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3946:6:19"
},
"nodeType": "YulIf",
"src": "3943:89:19"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4052:4:19"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4111:5:19"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4118:6:19"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "4058:52:19"
},
"nodeType": "YulFunctionCall",
"src": "4058:67:19"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4045:6:19"
},
"nodeType": "YulFunctionCall",
"src": "4045:81:19"
},
"nodeType": "YulExpressionStatement",
"src": "4045:81:19"
}
]
},
"nodeType": "YulCase",
"src": "3894:242:19",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "3202:6:19"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3210:2:19",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3199:2:19"
},
"nodeType": "YulFunctionCall",
"src": "3199:14:19"
},
"nodeType": "YulSwitch",
"src": "3192:944:19"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2871:4:19",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2877:3:19",
"type": ""
}
],
"src": "2790:1352:19"
}
]
},
"contents": "{\n { }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\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 let _4 := 0x20\n if gt(add(add(offset, _1), _4), end) { revert(0, 0) }\n let i := 0\n for { } lt(i, _1) { i := add(i, _4) }\n {\n mstore(add(add(memPtr, i), _4), mload(add(add(offset, i), _4)))\n }\n mstore(add(add(memPtr, _1), _4), 0)\n array := memPtr\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { 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 }\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 array_dataslot_string_storage(ptr) -> data\n {\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n }\n function clean_up_bytearray_end_slots_string_storage(array, len, startIndex)\n {\n if gt(len, 31)\n {\n let _1 := 0\n mstore(_1, array)\n let data := keccak256(_1, 0x20)\n let deleteStart := add(data, shr(5, add(startIndex, 31)))\n if lt(startIndex, 0x20) { deleteStart := data }\n let _2 := add(data, shr(5, add(len, 31)))\n let start := deleteStart\n for { } lt(start, _2) { start := add(start, 1) }\n { sstore(start, _1) }\n }\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used\n {\n used := or(and(data, not(shr(shl(3, len), not(0)))), shl(1, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src)\n {\n let newLen := mload(src)\n if gt(newLen, sub(shl(64, 1), 1)) { panic_error_0x41() }\n clean_up_bytearray_end_slots_string_storage(slot, extract_byte_array_length(sload(slot)), newLen)\n let srcOffset := 0\n let srcOffset_1 := 0x20\n srcOffset := srcOffset_1\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(31))\n let dstPtr := array_dataslot_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, srcOffset_1) }\n {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, srcOffset_1)\n }\n if lt(loopEnd, newLen)\n {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, and(lastValue, not(shr(and(shl(3, newLen), 248), not(0)))))\n }\n sstore(slot, add(shl(1, newLen), 1))\n }\n default {\n let value := 0\n if newLen\n {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n}",
"id": 19,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040516200149d3803806200149d83398101604081905262000034916200011f565b600062000042838262000218565b50600162000051828262000218565b505050620002e4565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200008257600080fd5b81516001600160401b03808211156200009f576200009f6200005a565b604051601f8301601f19908116603f01168101908282118183101715620000ca57620000ca6200005a565b81604052838152602092508683858801011115620000e757600080fd5b600091505b838210156200010b5785820183015181830184015290820190620000ec565b600093810190920192909252949350505050565b600080604083850312156200013357600080fd5b82516001600160401b03808211156200014b57600080fd5b620001598683870162000070565b935060208501519150808211156200017057600080fd5b506200017f8582860162000070565b9150509250929050565b600181811c908216806200019e57607f821691505b602082108103620001bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021357600081815260208120601f850160051c81016020861015620001ee5750805b601f850160051c820191505b818110156200020f57828155600101620001fa565b5050505b505050565b81516001600160401b038111156200023457620002346200005a565b6200024c8162000245845462000189565b84620001c5565b602080601f8311600181146200028457600084156200026b5750858301515b600019600386901b1c1916600185901b1785556200020f565b600085815260208120601f198616915b82811015620002b55788860151825594840194600190910190840162000294565b5085821015620002d45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6111a980620002f46000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101b3578063b88d4fde146101c6578063c87b56dd146101d9578063e985e9c5146101ec57600080fd5b80636352211e1461017757806370a082311461018a57806395d89b41146101ab57600080fd5b806301ffc9a7146100d457806306fdde03146100fc578063081812fc14610111578063095ea7b31461013c57806323b872dd1461015157806342842e0e14610164575b600080fd5b6100e76100e2366004610cf9565b6101ff565b60405190151581526020015b60405180910390f35b610104610251565b6040516100f39190610d66565b61012461011f366004610d79565b6102e3565b6040516001600160a01b0390911681526020016100f3565b61014f61014a366004610dae565b61030a565b005b61014f61015f366004610dd8565b610424565b61014f610172366004610dd8565b610455565b610124610185366004610d79565b610470565b61019d610198366004610e14565b6104d0565b6040519081526020016100f3565b610104610556565b61014f6101c1366004610e2f565b610565565b61014f6101d4366004610e81565b610574565b6101046101e7366004610d79565b6105ac565b6100e76101fa366004610f5d565b610620565b60006001600160e01b031982166380ac58cd60e01b148061023057506001600160e01b03198216635b5e139f60e01b145b8061024b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461026090610f90565b80601f016020809104026020016040519081016040528092919081815260200182805461028c90610f90565b80156102d95780601f106102ae576101008083540402835291602001916102d9565b820191906000526020600020905b8154815290600101906020018083116102bc57829003601f168201915b5050505050905090565b60006102ee8261064e565b506000908152600460205260409020546001600160a01b031690565b600061031582610470565b9050806001600160a01b0316836001600160a01b0316036103875760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806103a357506103a38133610620565b6104155760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161037e565b61041f83836106b0565b505050565b61042e338261071e565b61044a5760405162461bcd60e51b815260040161037e90610fca565b61041f83838361077d565b61041f83838360405180602001604052806000815250610574565b6000818152600260205260408120546001600160a01b03168061024b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161037e565b60006001600160a01b03821661053a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161037e565b506001600160a01b031660009081526003602052604090205490565b60606001805461026090610f90565b6105703383836108ee565b5050565b61057e338361071e565b61059a5760405162461bcd60e51b815260040161037e90610fca565b6105a6848484846109bc565b50505050565b60606105b78261064e565b60006105ce60408051602081019091526000815290565b905060008151116105ee5760405180602001604052806000815250610619565b806105f8846109ef565b604051602001610609929190611017565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6000818152600260205260409020546001600160a01b03166106ad5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161037e565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906106e582610470565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061072a83610470565b9050806001600160a01b0316846001600160a01b0316148061075157506107518185610620565b806107755750836001600160a01b031661076a846102e3565b6001600160a01b0316145b949350505050565b826001600160a01b031661079082610470565b6001600160a01b0316146107b65760405162461bcd60e51b815260040161037e90611046565b6001600160a01b0382166108185760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161037e565b6108258383836001610a82565b826001600160a01b031661083882610470565b6001600160a01b03161461085e5760405162461bcd60e51b815260040161037e90611046565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b03160361094f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161037e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6109c784848461077d565b6109d384848484610b0a565b6105a65760405162461bcd60e51b815260040161037e9061108b565b606060006109fc83610c0b565b600101905060008167ffffffffffffffff811115610a1c57610a1c610e6b565b6040519080825280601f01601f191660200182016040528015610a46576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084610a5057509392505050565b60018111156105a6576001600160a01b03841615610ac8576001600160a01b03841660009081526003602052604081208054839290610ac29084906110f3565b90915550505b6001600160a01b038316156105a6576001600160a01b03831660009081526003602052604081208054839290610aff908490611106565b909155505050505050565b60006001600160a01b0384163b15610c0057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610b4e903390899088908890600401611119565b6020604051808303816000875af1925050508015610b89575060408051601f3d908101601f19168201909252610b8691810190611156565b60015b610be6573d808015610bb7576040519150601f19603f3d011682016040523d82523d6000602084013e610bbc565b606091505b508051600003610bde5760405162461bcd60e51b815260040161037e9061108b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610775565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310610c4a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310610c76576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310610c9457662386f26fc10000830492506010015b6305f5e1008310610cac576305f5e100830492506008015b6127108310610cc057612710830492506004015b60648310610cd2576064830492506002015b600a831061024b5760010192915050565b6001600160e01b0319811681146106ad57600080fd5b600060208284031215610d0b57600080fd5b813561061981610ce3565b60005b83811015610d31578181015183820152602001610d19565b50506000910152565b60008151808452610d52816020860160208601610d16565b601f01601f19169290920160200192915050565b6020815260006106196020830184610d3a565b600060208284031215610d8b57600080fd5b5035919050565b80356001600160a01b0381168114610da957600080fd5b919050565b60008060408385031215610dc157600080fd5b610dca83610d92565b946020939093013593505050565b600080600060608486031215610ded57600080fd5b610df684610d92565b9250610e0460208501610d92565b9150604084013590509250925092565b600060208284031215610e2657600080fd5b61061982610d92565b60008060408385031215610e4257600080fd5b610e4b83610d92565b915060208301358015158114610e6057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215610e9757600080fd5b610ea085610d92565b9350610eae60208601610d92565b925060408501359150606085013567ffffffffffffffff80821115610ed257600080fd5b818701915087601f830112610ee657600080fd5b813581811115610ef857610ef8610e6b565b604051601f8201601f19908116603f01168101908382118183101715610f2057610f20610e6b565b816040528281528a6020848701011115610f3957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215610f7057600080fd5b610f7983610d92565b9150610f8760208401610d92565b90509250929050565b600181811c90821680610fa457607f821691505b602082108103610fc457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60008351611029818460208801610d16565b83519083019061103d818360208801610d16565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8181038181111561024b5761024b6110dd565b8082018082111561024b5761024b6110dd565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061114c90830184610d3a565b9695505050505050565b60006020828403121561116857600080fd5b815161061981610ce356fea264697066735822122074d767db8da757096bfdcabb4947ecae2ceceec549326376ce67aa72c1e90d9c64736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x149D CODESIZE SUB DUP1 PUSH3 0x149D DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x11F JUMP JUMPDEST PUSH1 0x0 PUSH3 0x42 DUP4 DUP3 PUSH3 0x218 JUMP JUMPDEST POP PUSH1 0x1 PUSH3 0x51 DUP3 DUP3 PUSH3 0x218 JUMP JUMPDEST POP POP POP PUSH3 0x2E4 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x82 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x9F JUMPI PUSH3 0x9F PUSH3 0x5A 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 0xCA JUMPI PUSH3 0xCA PUSH3 0x5A JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0xE7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x10B JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0xEC JUMP JUMPDEST PUSH1 0x0 SWAP4 DUP2 ADD SWAP1 SWAP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x14B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x159 DUP7 DUP4 DUP8 ADD PUSH3 0x70 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x170 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x17F DUP6 DUP3 DUP7 ADD PUSH3 0x70 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x19E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x1BF 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 0x1F DUP3 GT ISZERO PUSH3 0x213 JUMPI PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP7 LT ISZERO PUSH3 0x1EE JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP6 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x20F JUMPI DUP3 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0x1FA JUMP JUMPDEST POP POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH3 0x234 JUMPI PUSH3 0x234 PUSH3 0x5A JUMP JUMPDEST PUSH3 0x24C DUP2 PUSH3 0x245 DUP5 SLOAD PUSH3 0x189 JUMP JUMPDEST DUP5 PUSH3 0x1C5 JUMP JUMPDEST PUSH1 0x20 DUP1 PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x284 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x26B JUMPI POP DUP6 DUP4 ADD MLOAD JUMPDEST PUSH1 0x0 NOT PUSH1 0x3 DUP7 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP6 SWAP1 SHL OR DUP6 SSTORE PUSH3 0x20F JUMP JUMPDEST PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP7 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x2B5 JUMPI DUP9 DUP7 ADD MLOAD DUP3 SSTORE SWAP5 DUP5 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 DUP5 ADD PUSH3 0x294 JUMP JUMPDEST POP DUP6 DUP3 LT ISZERO PUSH3 0x2D4 JUMPI DUP8 DUP6 ADD MLOAD PUSH1 0x0 NOT PUSH1 0x3 DUP9 SWAP1 SHL PUSH1 0xF8 AND SHR NOT AND DUP2 SSTORE JUMPDEST POP POP POP POP POP PUSH1 0x1 SWAP1 DUP2 SHL ADD SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0x11A9 DUP1 PUSH3 0x2F4 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x18A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFC JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x151 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x164 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xCF9 JUMP JUMPDEST PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH2 0x251 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF3 SWAP2 SWAP1 PUSH2 0xD66 JUMP JUMPDEST PUSH2 0x124 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x2E3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xDAE JUMP JUMPDEST PUSH2 0x30A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14F PUSH2 0x15F CALLDATASIZE PUSH1 0x4 PUSH2 0xDD8 JUMP JUMPDEST PUSH2 0x424 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x172 CALLDATASIZE PUSH1 0x4 PUSH2 0xDD8 JUMP JUMPDEST PUSH2 0x455 JUMP JUMPDEST PUSH2 0x124 PUSH2 0x185 CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x470 JUMP JUMPDEST PUSH2 0x19D PUSH2 0x198 CALLDATASIZE PUSH1 0x4 PUSH2 0xE14 JUMP JUMPDEST PUSH2 0x4D0 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xF3 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x556 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xE2F JUMP JUMPDEST PUSH2 0x565 JUMP JUMPDEST PUSH2 0x14F PUSH2 0x1D4 CALLDATASIZE PUSH1 0x4 PUSH2 0xE81 JUMP JUMPDEST PUSH2 0x574 JUMP JUMPDEST PUSH2 0x104 PUSH2 0x1E7 CALLDATASIZE PUSH1 0x4 PUSH2 0xD79 JUMP JUMPDEST PUSH2 0x5AC JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1FA CALLDATASIZE PUSH1 0x4 PUSH2 0xF5D JUMP JUMPDEST PUSH2 0x620 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x230 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x24B JUMPI POP PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP4 AND EQ JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x260 SWAP1 PUSH2 0xF90 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 0x28C SWAP1 PUSH2 0xF90 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2D9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2AE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2D9 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 0x2BC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EE DUP3 PUSH2 0x64E 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 0x315 DUP3 PUSH2 0x470 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x387 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 JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND EQ DUP1 PUSH2 0x3A3 JUMPI POP PUSH2 0x3A3 DUP2 CALLER PUSH2 0x620 JUMP JUMPDEST PUSH2 0x415 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x37E JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 PUSH2 0x6B0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x42E CALLER DUP3 PUSH2 0x71E JUMP JUMPDEST PUSH2 0x44A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 DUP4 PUSH2 0x77D JUMP JUMPDEST PUSH2 0x41F DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x574 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 0x24B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x37E JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x53A 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 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x44 DUP3 ADD MSTORE PUSH9 0x3634B21037BBB732B9 PUSH1 0xB9 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x37E 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 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x260 SWAP1 PUSH2 0xF90 JUMP JUMPDEST PUSH2 0x570 CALLER DUP4 DUP4 PUSH2 0x8EE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x57E CALLER DUP4 PUSH2 0x71E JUMP JUMPDEST PUSH2 0x59A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0xFCA JUMP JUMPDEST PUSH2 0x5A6 DUP5 DUP5 DUP5 DUP5 PUSH2 0x9BC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x5B7 DUP3 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5CE PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x5EE JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x619 JUMP JUMPDEST DUP1 PUSH2 0x5F8 DUP5 PUSH2 0x9EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x609 SWAP3 SWAP2 SWAP1 PUSH2 0x1017 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 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 PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x6AD JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x18 PUSH1 0x24 DUP3 ADD MSTORE PUSH24 0x115490CDCC8C4E881A5B9D985B1A59081D1BDAD95B881251 PUSH1 0x42 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x37E JUMP JUMPDEST POP 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 0x6E5 DUP3 PUSH2 0x470 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 DUP1 PUSH2 0x72A DUP4 PUSH2 0x470 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 0x751 JUMPI POP PUSH2 0x751 DUP2 DUP6 PUSH2 0x620 JUMP JUMPDEST DUP1 PUSH2 0x775 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x76A DUP5 PUSH2 0x2E3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x790 DUP3 PUSH2 0x470 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x7B6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x1046 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x818 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 0x37E JUMP JUMPDEST PUSH2 0x825 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xA82 JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x838 DUP3 PUSH2 0x470 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x85E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x1046 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP1 DUP2 AND SWAP1 SWAP2 SSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND DUP1 DUP7 MSTORE PUSH1 0x3 DUP6 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x0 NOT ADD SWAP1 SSTORE SWAP1 DUP8 AND DUP1 DUP7 MSTORE DUP4 DUP7 KECCAK256 DUP1 SLOAD PUSH1 0x1 ADD SWAP1 SSTORE DUP7 DUP7 MSTORE PUSH1 0x2 SWAP1 SWAP5 MSTORE DUP3 DUP6 KECCAK256 DUP1 SLOAD SWAP1 SWAP3 AND DUP5 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD DUP5 SWAP4 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB PUSH2 0x94F 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 0x37E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP7 ISZERO ISZERO SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD SWAP2 DUP3 MSTORE PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x9C7 DUP5 DUP5 DUP5 PUSH2 0x77D JUMP JUMPDEST PUSH2 0x9D3 DUP5 DUP5 DUP5 DUP5 PUSH2 0xB0A JUMP JUMPDEST PUSH2 0x5A6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x108B JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x9FC DUP4 PUSH2 0xC0B JUMP JUMPDEST PUSH1 0x1 ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA1C JUMPI PUSH2 0xA1C PUSH2 0xE6B 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 0xA46 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP DUP2 DUP2 ADD PUSH1 0x20 ADD JUMPDEST PUSH1 0x0 NOT ADD PUSH16 0x181899199A1A9B1B9C1CB0B131B232B3 PUSH1 0x81 SHL PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DIV SWAP5 POP DUP5 PUSH2 0xA50 JUMPI POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x5A6 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND ISZERO PUSH2 0xAC8 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD DUP4 SWAP3 SWAP1 PUSH2 0xAC2 SWAP1 DUP5 SWAP1 PUSH2 0x10F3 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND ISZERO PUSH2 0x5A6 JUMPI 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 DUP4 SWAP3 SWAP1 PUSH2 0xAFF SWAP1 DUP5 SWAP1 PUSH2 0x1106 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO PUSH2 0xC00 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 0xB4E SWAP1 CALLER SWAP1 DUP10 SWAP1 DUP9 SWAP1 DUP9 SWAP1 PUSH1 0x4 ADD PUSH2 0x1119 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xB89 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xB86 SWAP2 DUP2 ADD SWAP1 PUSH2 0x1156 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xBE6 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xBB7 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 0xBBC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH1 0x0 SUB PUSH2 0xBDE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37E SWAP1 PUSH2 0x108B 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 0x775 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 LT PUSH2 0xC4A JUMPI PUSH19 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F01 PUSH1 0x40 SHL DUP4 DIV SWAP3 POP PUSH1 0x40 ADD JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0xC76 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DIV SWAP3 POP PUSH1 0x20 ADD JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0xC94 JUMPI PUSH7 0x2386F26FC10000 DUP4 DIV SWAP3 POP PUSH1 0x10 ADD JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0xCAC JUMPI PUSH4 0x5F5E100 DUP4 DIV SWAP3 POP PUSH1 0x8 ADD JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0xCC0 JUMPI PUSH2 0x2710 DUP4 DIV SWAP3 POP PUSH1 0x4 ADD JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0xCD2 JUMPI PUSH1 0x64 DUP4 DIV SWAP3 POP PUSH1 0x2 ADD JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x24B JUMPI PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x6AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD0B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x619 DUP2 PUSH2 0xCE3 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xD31 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0xD19 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xD52 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0xD16 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x619 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD3A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xDA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDCA DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xDED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xDF6 DUP5 PUSH2 0xD92 JUMP JUMPDEST SWAP3 POP PUSH2 0xE04 PUSH1 0x20 DUP6 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x619 DUP3 PUSH2 0xD92 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE42 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE4B DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xE60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xE97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEA0 DUP6 PUSH2 0xD92 JUMP JUMPDEST SWAP4 POP PUSH2 0xEAE PUSH1 0x20 DUP7 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP3 POP PUSH1 0x40 DUP6 ADD CALLDATALOAD SWAP2 POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xED2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP8 ADD SWAP2 POP DUP8 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xEE6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xEF8 JUMPI PUSH2 0xEF8 PUSH2 0xE6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0xF20 JUMPI PUSH2 0xF20 PUSH2 0xE6B JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP11 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0xF39 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH1 0x0 PUSH1 0x20 DUP5 DUP4 ADD ADD MSTORE DUP1 SWAP6 POP POP POP POP POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF79 DUP4 PUSH2 0xD92 JUMP JUMPDEST SWAP2 POP PUSH2 0xF87 PUSH1 0x20 DUP5 ADD PUSH2 0xD92 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0xFA4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xFC4 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x2D SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH13 0x1C881BDC88185C1C1C9BDD9959 PUSH1 0x9A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0x1029 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0xD16 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x103D DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0xD16 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x25 SWAP1 DUP3 ADD MSTORE PUSH32 0x4
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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