Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save heyJonBray/1279364110c2f82860261bccd8f3d2d1 to your computer and use it in GitHub Desktop.
Save heyJonBray/1279364110c2f82860261bccd8f3d2d1 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.9+commit.e5eed63a.js&optimize=true&runs=200&gist=
{
"id": "58d2424ba7d343b63c107f03bcbb236a",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.9",
"solcLongVersion": "0.8.9+commit.e5eed63a",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/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@4.8.2/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@4.8.2/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.9+commit.e5eed63a\"},\"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@4.8.2/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts@4.8.2/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\".deps/npm/@openzeppelin/contracts@4.8.2/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@4.8.2/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@4.8.2/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.9+commit.e5eed63a\"},\"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@4.8.2/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts@4.8.2/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@4.8.2/access/Ownable.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.8.2/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@4.8.2/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",
"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,
"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,
"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,
"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,
"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,
"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,
"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,
"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,
"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,
"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",
"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,
"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,
"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,
"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",
"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,
"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@4.8.2/utils/Context.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.8.2/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,
"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,
"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.9+commit.e5eed63a"
},
"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@4.8.2/access/Ownable.sol": "Ownable"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/access/Ownable.sol": {
"keccak256": "0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673",
"license": "MIT",
"urls": [
"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2",
"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y"
]
},
".deps/npm/@openzeppelin/contracts@4.8.2/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);
}
}
{
"id": "bdd68008ea4922237d8bf6288675d12e",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.9",
"solcLongVersion": "0.8.9+commit.e5eed63a",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/governance/utils/IVotes.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol)\npragma solidity ^0.8.0;\n\n/**\n * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.\n *\n * _Available since v4.5._\n */\ninterface IVotes {\n /**\n * @dev Emitted when an account changes their delegate.\n */\n event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);\n\n /**\n * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.\n */\n event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);\n\n /**\n * @dev Returns the current amount of votes that `account` has.\n */\n function getVotes(address account) external view returns (uint256);\n\n /**\n * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).\n */\n function getPastVotes(address account, uint256 blockNumber) external view returns (uint256);\n\n /**\n * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).\n *\n * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n * Votes that have not been delegated are still part of total supply, even though they would not participate in a\n * vote.\n */\n function getPastTotalSupply(uint256 blockNumber) external view returns (uint256);\n\n /**\n * @dev Returns the delegate that `account` has chosen.\n */\n function delegates(address account) external view returns (address);\n\n /**\n * @dev Delegates votes from the sender to `delegatee`.\n */\n function delegate(address delegatee) external;\n\n /**\n * @dev Delegates votes from signer to `delegatee`.\n */\n function delegateBySig(\n address delegatee,\n uint256 nonce,\n uint256 expiry,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\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@4.8.2/governance/utils/IVotes.sol": {
"IVotes": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "fromDelegate",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "toDelegate",
"type": "address"
}
],
"name": "DelegateChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegate",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "previousBalance",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "newBalance",
"type": "uint256"
}
],
"name": "DelegateVotesChanged",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
}
],
"name": "delegate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "expiry",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "delegateBySig",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "delegates",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastTotalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "getVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. _Available since v4.5._",
"events": {
"DelegateChanged(address,address,address)": {
"details": "Emitted when an account changes their delegate."
},
"DelegateVotesChanged(address,uint256,uint256)": {
"details": "Emitted when a token transfer or delegate change results in changes to a delegate's number of votes."
}
},
"kind": "dev",
"methods": {
"delegate(address)": {
"details": "Delegates votes from the sender to `delegatee`."
},
"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)": {
"details": "Delegates votes from signer to `delegatee`."
},
"delegates(address)": {
"details": "Returns the delegate that `account` has chosen."
},
"getPastTotalSupply(uint256)": {
"details": "Returns the total supply of votes available at the end of a past block (`blockNumber`). NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote."
},
"getPastVotes(address,uint256)": {
"details": "Returns the amount of votes that `account` had at the end of a past block (`blockNumber`)."
},
"getVotes(address)": {
"details": "Returns the current amount of votes that `account` has."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"delegate(address)": "5c19a95c",
"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)": "c3cda520",
"delegates(address)": "587cde1e",
"getPastTotalSupply(uint256)": "8e539e8c",
"getPastVotes(address,uint256)": "3a46b1a8",
"getVotes(address)": "9ab24eb0"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.9+commit.e5eed63a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"fromDelegate\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"toDelegate\",\"type\":\"address\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegate\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"previousBalance\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newBalance\",\"type\":\"uint256\"}],\"name\":\"DelegateVotesChanged\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"delegates\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"getPastTotalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"getPastVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"getVotes\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. _Available since v4.5._\",\"events\":{\"DelegateChanged(address,address,address)\":{\"details\":\"Emitted when an account changes their delegate.\"},\"DelegateVotesChanged(address,uint256,uint256)\":{\"details\":\"Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.\"}},\"kind\":\"dev\",\"methods\":{\"delegate(address)\":{\"details\":\"Delegates votes from the sender to `delegatee`.\"},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates votes from signer to `delegatee`.\"},\"delegates(address)\":{\"details\":\"Returns the delegate that `account` has chosen.\"},\"getPastTotalSupply(uint256)\":{\"details\":\"Returns the total supply of votes available at the end of a past block (`blockNumber`). NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote.\"},\"getPastVotes(address,uint256)\":{\"details\":\"Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).\"},\"getVotes(address)\":{\"details\":\"Returns the current amount of votes that `account` has.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts@4.8.2/governance/utils/IVotes.sol\":\"IVotes\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts@4.8.2/governance/utils/IVotes.sol\":{\"keccak256\":\"0xf5324a55ee9c0b4a840ea57c055ac9d046f88986ceef567e1cf68113e46a79c0\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f41fe2bddc33c17ccccfc25379b1869354e9ee62d8b28d2acc95229eeba37a86\",\"dweb:/ipfs/Qmb6SF2XL2uSvH6k5JSjtx4Xoqz41ACkhdAhtbW1Yh3RiY\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/governance/utils/IVotes.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.8.2/governance/utils/IVotes.sol",
"exportedSymbols": {
"IVotes": [
77
]
},
"id": 78,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "110:23:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "IVotes",
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 2,
"nodeType": "StructuredDocumentation",
"src": "135:132:0",
"text": " @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.\n _Available since v4.5._"
},
"fullyImplemented": false,
"id": 77,
"linearizedBaseContracts": [
77
],
"name": "IVotes",
"nameLocation": "278:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"anonymous": false,
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "291:71:0",
"text": " @dev Emitted when an account changes their delegate."
},
"id": 11,
"name": "DelegateChanged",
"nameLocation": "373:15:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 10,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5,
"indexed": true,
"mutability": "mutable",
"name": "delegator",
"nameLocation": "405:9:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "389:25:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 4,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "389:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 7,
"indexed": true,
"mutability": "mutable",
"name": "fromDelegate",
"nameLocation": "432:12:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "416:28:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 6,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "416:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"indexed": true,
"mutability": "mutable",
"name": "toDelegate",
"nameLocation": "462:10:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "446:26:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 8,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "446:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "388:85:0"
},
"src": "367:107:0"
},
{
"anonymous": false,
"documentation": {
"id": 12,
"nodeType": "StructuredDocumentation",
"src": "480:124:0",
"text": " @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes."
},
"id": 20,
"name": "DelegateVotesChanged",
"nameLocation": "615:20:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 19,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 14,
"indexed": true,
"mutability": "mutable",
"name": "delegate",
"nameLocation": "652:8:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "636:24:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 13,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "636:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 16,
"indexed": false,
"mutability": "mutable",
"name": "previousBalance",
"nameLocation": "670:15:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "662:23:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 15,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "662:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 18,
"indexed": false,
"mutability": "mutable",
"name": "newBalance",
"nameLocation": "695:10:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "687:18:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 17,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "687:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "635:71:0"
},
"src": "609:98:0"
},
{
"documentation": {
"id": 21,
"nodeType": "StructuredDocumentation",
"src": "713:79:0",
"text": " @dev Returns the current amount of votes that `account` has."
},
"functionSelector": "9ab24eb0",
"id": 28,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "getVotes",
"nameLocation": "806:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 24,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 23,
"mutability": "mutable",
"name": "account",
"nameLocation": "823:7:0",
"nodeType": "VariableDeclaration",
"scope": 28,
"src": "815:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 22,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "815:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "814:17:0"
},
"returnParameters": {
"id": 27,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 26,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 28,
"src": "855:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 25,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "855:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "854:9:0"
},
"scope": 77,
"src": "797:67:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 29,
"nodeType": "StructuredDocumentation",
"src": "870:114:0",
"text": " @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`)."
},
"functionSelector": "3a46b1a8",
"id": 38,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "getPastVotes",
"nameLocation": "998:12:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 34,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 31,
"mutability": "mutable",
"name": "account",
"nameLocation": "1019:7:0",
"nodeType": "VariableDeclaration",
"scope": 38,
"src": "1011:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 30,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1011:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 33,
"mutability": "mutable",
"name": "blockNumber",
"nameLocation": "1036:11:0",
"nodeType": "VariableDeclaration",
"scope": 38,
"src": "1028:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 32,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1028:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1010:38:0"
},
"returnParameters": {
"id": 37,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 36,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 38,
"src": "1072:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 35,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1072:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1071:9:0"
},
"scope": 77,
"src": "989:92:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 39,
"nodeType": "StructuredDocumentation",
"src": "1087:365:0",
"text": " @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).\n NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.\n Votes that have not been delegated are still part of total supply, even though they would not participate in a\n vote."
},
"functionSelector": "8e539e8c",
"id": 46,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "getPastTotalSupply",
"nameLocation": "1466:18:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 42,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 41,
"mutability": "mutable",
"name": "blockNumber",
"nameLocation": "1493:11:0",
"nodeType": "VariableDeclaration",
"scope": 46,
"src": "1485:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 40,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1485:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1484:21:0"
},
"returnParameters": {
"id": 45,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 44,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 46,
"src": "1529:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 43,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1529:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1528:9:0"
},
"scope": 77,
"src": "1457:81:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 47,
"nodeType": "StructuredDocumentation",
"src": "1544:71:0",
"text": " @dev Returns the delegate that `account` has chosen."
},
"functionSelector": "587cde1e",
"id": 54,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "delegates",
"nameLocation": "1629:9:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 50,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 49,
"mutability": "mutable",
"name": "account",
"nameLocation": "1647:7:0",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "1639:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 48,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1639:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1638:17:0"
},
"returnParameters": {
"id": 53,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 52,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "1679:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 51,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1679:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1678:9:0"
},
"scope": 77,
"src": "1620:68:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 55,
"nodeType": "StructuredDocumentation",
"src": "1694:71:0",
"text": " @dev Delegates votes from the sender to `delegatee`."
},
"functionSelector": "5c19a95c",
"id": 60,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "delegate",
"nameLocation": "1779:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 58,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 57,
"mutability": "mutable",
"name": "delegatee",
"nameLocation": "1796:9:0",
"nodeType": "VariableDeclaration",
"scope": 60,
"src": "1788:17:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 56,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1788:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1787:19:0"
},
"returnParameters": {
"id": 59,
"nodeType": "ParameterList",
"parameters": [],
"src": "1815:0:0"
},
"scope": 77,
"src": "1770:46:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 61,
"nodeType": "StructuredDocumentation",
"src": "1822:67:0",
"text": " @dev Delegates votes from signer to `delegatee`."
},
"functionSelector": "c3cda520",
"id": 76,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "delegateBySig",
"nameLocation": "1903:13:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 74,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 63,
"mutability": "mutable",
"name": "delegatee",
"nameLocation": "1934:9:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "1926:17:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 62,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1926:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 65,
"mutability": "mutable",
"name": "nonce",
"nameLocation": "1961:5:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "1953:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 64,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1953:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 67,
"mutability": "mutable",
"name": "expiry",
"nameLocation": "1984:6:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "1976:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 66,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1976:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 69,
"mutability": "mutable",
"name": "v",
"nameLocation": "2006:1:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2000:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
},
"typeName": {
"id": 68,
"name": "uint8",
"nodeType": "ElementaryTypeName",
"src": "2000:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint8",
"typeString": "uint8"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 71,
"mutability": "mutable",
"name": "r",
"nameLocation": "2025:1:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2017:9:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 70,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2017:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 73,
"mutability": "mutable",
"name": "s",
"nameLocation": "2044:1:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2036:9:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 72,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2036:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "1916:135:0"
},
"returnParameters": {
"id": 75,
"nodeType": "ParameterList",
"parameters": [],
"src": "2060:0:0"
},
"scope": 77,
"src": "1894:167:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
}
],
"scope": 78,
"src": "268:1795:0",
"usedErrors": []
}
],
"src": "110:1954:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"delegate(address)": "5c19a95c",
"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)": "c3cda520",
"delegates(address)": "587cde1e",
"getPastTotalSupply(uint256)": "8e539e8c",
"getPastVotes(address,uint256)": "3a46b1a8",
"getVotes(address)": "9ab24eb0"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "fromDelegate",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "toDelegate",
"type": "address"
}
],
"name": "DelegateChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegate",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "previousBalance",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "newBalance",
"type": "uint256"
}
],
"name": "DelegateVotesChanged",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
}
],
"name": "delegate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "expiry",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "delegateBySig",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "delegates",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastTotalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "getVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegator",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "fromDelegate",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "toDelegate",
"type": "address"
}
],
"name": "DelegateChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "delegate",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "previousBalance",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "newBalance",
"type": "uint256"
}
],
"name": "DelegateVotesChanged",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
}
],
"name": "delegate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "delegatee",
"type": "address"
},
{
"internalType": "uint256",
"name": "nonce",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "expiry",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "delegateBySig",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "delegates",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastTotalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "blockNumber",
"type": "uint256"
}
],
"name": "getPastVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "getVotes",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. _Available since v4.5._",
"events": {
"DelegateChanged(address,address,address)": {
"details": "Emitted when an account changes their delegate."
},
"DelegateVotesChanged(address,uint256,uint256)": {
"details": "Emitted when a token transfer or delegate change results in changes to a delegate's number of votes."
}
},
"kind": "dev",
"methods": {
"delegate(address)": {
"details": "Delegates votes from the sender to `delegatee`."
},
"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)": {
"details": "Delegates votes from signer to `delegatee`."
},
"delegates(address)": {
"details": "Returns the delegate that `account` has chosen."
},
"getPastTotalSupply(uint256)": {
"details": "Returns the total supply of votes available at the end of a past block (`blockNumber`). NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. Votes that have not been delegated are still part of total supply, even though they would not participate in a vote."
},
"getPastVotes(address,uint256)": {
"details": "Returns the amount of votes that `account` had at the end of a past block (`blockNumber`)."
},
"getVotes(address)": {
"details": "Returns the current amount of votes that `account` has."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.8.2/governance/utils/IVotes.sol": "IVotes"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/governance/utils/IVotes.sol": {
"keccak256": "0xf5324a55ee9c0b4a840ea57c055ac9d046f88986ceef567e1cf68113e46a79c0",
"license": "MIT",
"urls": [
"bzz-raw://f41fe2bddc33c17ccccfc25379b1869354e9ee62d8b28d2acc95229eeba37a86",
"dweb:/ipfs/Qmb6SF2XL2uSvH6k5JSjtx4Xoqz41ACkhdAhtbW1Yh3RiY"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol)
pragma solidity ^0.8.0;
/**
* @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.
*
* _Available since v4.5._
*/
interface IVotes {
/**
* @dev Emitted when an account changes their delegate.
*/
event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);
/**
* @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes.
*/
event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);
/**
* @dev Returns the current amount of votes that `account` has.
*/
function getVotes(address account) external view returns (uint256);
/**
* @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).
*/
function getPastVotes(address account, uint256 blockNumber) external view returns (uint256);
/**
* @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).
*
* NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
* Votes that have not been delegated are still part of total supply, even though they would not participate in a
* vote.
*/
function getPastTotalSupply(uint256 blockNumber) external view returns (uint256);
/**
* @dev Returns the delegate that `account` has chosen.
*/
function delegates(address account) external view returns (address);
/**
* @dev Delegates votes from the sender to `delegatee`.
*/
function delegate(address delegatee) external;
/**
* @dev Delegates votes from signer to `delegatee`.
*/
function delegateBySig(
address delegatee,
uint256 nonce,
uint256 expiry,
uint8 v,
bytes32 r,
bytes32 s
) external;
}
{
"id": "d1f8a8cd1f72489f80d2663c09ac3ad2",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.9",
"solcLongVersion": "0.8.9+commit.e5eed63a",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashLender.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC3156FlashBorrower.sol\";\n\n/**\n * @dev Interface of the ERC3156 FlashLender, as defined in\n * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].\n *\n * _Available since v4.1._\n */\ninterface IERC3156FlashLender {\n /**\n * @dev The amount of currency available to be lended.\n * @param token The loan currency.\n * @return The amount of `token` that can be borrowed.\n */\n function maxFlashLoan(address token) external view returns (uint256);\n\n /**\n * @dev The fee to be charged for a given loan.\n * @param token The loan currency.\n * @param amount The amount of tokens lent.\n * @return The amount of `token` to be charged for the loan, on top of the returned principal.\n */\n function flashFee(address token, uint256 amount) external view returns (uint256);\n\n /**\n * @dev Initiate a flash loan.\n * @param receiver The receiver of the tokens in the loan, and the receiver of the callback.\n * @param token The loan currency.\n * @param amount The amount of tokens lent.\n * @param data Arbitrary data structure, intended to contain user-defined parameters.\n */\n function flashLoan(\n IERC3156FlashBorrower receiver,\n address token,\n uint256 amount,\n bytes calldata data\n ) external returns (bool);\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashBorrower.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (interfaces/IERC3156FlashBorrower.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC3156 FlashBorrower, as defined in\n * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].\n *\n * _Available since v4.1._\n */\ninterface IERC3156FlashBorrower {\n /**\n * @dev Receive a flash loan.\n * @param initiator The initiator of the loan.\n * @param token The loan currency.\n * @param amount The amount of tokens lent.\n * @param fee The additional amount of tokens to repay.\n * @param data Arbitrary data structure, intended to contain user-defined parameters.\n * @return The keccak256 hash of \"IERC3156FlashBorrower.onFlashLoan\"\n */\n function onFlashLoan(\n address initiator,\n address token,\n uint256 amount,\n uint256 fee,\n bytes calldata data\n ) external returns (bytes32);\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@4.8.2/interfaces/IERC3156FlashBorrower.sol": {
"IERC3156FlashBorrower": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "initiator",
"type": "address"
},
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "fee",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "onFlashLoan",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC3156 FlashBorrower, as defined in https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. _Available since v4.1._",
"kind": "dev",
"methods": {
"onFlashLoan(address,address,uint256,uint256,bytes)": {
"details": "Receive a flash loan.",
"params": {
"amount": "The amount of tokens lent.",
"data": "Arbitrary data structure, intended to contain user-defined parameters.",
"fee": "The additional amount of tokens to repay.",
"initiator": "The initiator of the loan.",
"token": "The loan currency."
},
"returns": {
"_0": "The keccak256 hash of \"IERC3156FlashBorrower.onFlashLoan\""
}
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"onFlashLoan(address,address,uint256,uint256,bytes)": "23e30c8b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.9+commit.e5eed63a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initiator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"fee\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"onFlashLoan\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC3156 FlashBorrower, as defined in https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. _Available since v4.1._\",\"kind\":\"dev\",\"methods\":{\"onFlashLoan(address,address,uint256,uint256,bytes)\":{\"details\":\"Receive a flash loan.\",\"params\":{\"amount\":\"The amount of tokens lent.\",\"data\":\"Arbitrary data structure, intended to contain user-defined parameters.\",\"fee\":\"The additional amount of tokens to repay.\",\"initiator\":\"The initiator of the loan.\",\"token\":\"The loan currency.\"},\"returns\":{\"_0\":\"The keccak256 hash of \\\"IERC3156FlashBorrower.onFlashLoan\\\"\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashBorrower.sol\":\"IERC3156FlashBorrower\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashBorrower.sol\":{\"keccak256\":\"0x294520bb88c710bb1d3c21285f9b531acb5cb9950d77eaeef5598c7328afedb4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d6ea5de496f90e56940f98692c4869e78e8fc6952a416318e3986674d0aef27d\",\"dweb:/ipfs/QmeDAgZDoMBBdEYB8LTgAy7DLc1footigkkmLuT1qwvxQv\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashLender.sol": {
"IERC3156FlashLender": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "flashFee",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "contract IERC3156FlashBorrower",
"name": "receiver",
"type": "address"
},
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "flashLoan",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
}
],
"name": "maxFlashLoan",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC3156 FlashLender, as defined in https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. _Available since v4.1._",
"kind": "dev",
"methods": {
"flashFee(address,uint256)": {
"details": "The fee to be charged for a given loan.",
"params": {
"amount": "The amount of tokens lent.",
"token": "The loan currency."
},
"returns": {
"_0": "The amount of `token` to be charged for the loan, on top of the returned principal."
}
},
"flashLoan(address,address,uint256,bytes)": {
"details": "Initiate a flash loan.",
"params": {
"amount": "The amount of tokens lent.",
"data": "Arbitrary data structure, intended to contain user-defined parameters.",
"receiver": "The receiver of the tokens in the loan, and the receiver of the callback.",
"token": "The loan currency."
}
},
"maxFlashLoan(address)": {
"details": "The amount of currency available to be lended.",
"params": {
"token": "The loan currency."
},
"returns": {
"_0": "The amount of `token` that can be borrowed."
}
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"flashFee(address,uint256)": "d9d98ce4",
"flashLoan(address,address,uint256,bytes)": "5cffe9de",
"maxFlashLoan(address)": "613255ab"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.9+commit.e5eed63a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"flashFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IERC3156FlashBorrower\",\"name\":\"receiver\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"flashLoan\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"token\",\"type\":\"address\"}],\"name\":\"maxFlashLoan\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC3156 FlashLender, as defined in https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. _Available since v4.1._\",\"kind\":\"dev\",\"methods\":{\"flashFee(address,uint256)\":{\"details\":\"The fee to be charged for a given loan.\",\"params\":{\"amount\":\"The amount of tokens lent.\",\"token\":\"The loan currency.\"},\"returns\":{\"_0\":\"The amount of `token` to be charged for the loan, on top of the returned principal.\"}},\"flashLoan(address,address,uint256,bytes)\":{\"details\":\"Initiate a flash loan.\",\"params\":{\"amount\":\"The amount of tokens lent.\",\"data\":\"Arbitrary data structure, intended to contain user-defined parameters.\",\"receiver\":\"The receiver of the tokens in the loan, and the receiver of the callback.\",\"token\":\"The loan currency.\"}},\"maxFlashLoan(address)\":{\"details\":\"The amount of currency available to be lended.\",\"params\":{\"token\":\"The loan currency.\"},\"returns\":{\"_0\":\"The amount of `token` that can be borrowed.\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashLender.sol\":\"IERC3156FlashLender\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashBorrower.sol\":{\"keccak256\":\"0x294520bb88c710bb1d3c21285f9b531acb5cb9950d77eaeef5598c7328afedb4\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d6ea5de496f90e56940f98692c4869e78e8fc6952a416318e3986674d0aef27d\",\"dweb:/ipfs/QmeDAgZDoMBBdEYB8LTgAy7DLc1footigkkmLuT1qwvxQv\"]},\".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashLender.sol\":{\"keccak256\":\"0x0d9159aa6c1a0d8006fb152b0aee46a0f9b8938575ede1a0d7e186b3bc79c8d7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ccbfca0b4091d2f0caa762a3da47b56613d3ad06d1ce2a78dc2660be4febe49a\",\"dweb:/ipfs/QmeV9wZXFgdeUptik1GBzGn9NQfQQdXqRZF1m52jz9tdCY\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashBorrower.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashBorrower.sol",
"exportedSymbols": {
"IERC3156FlashBorrower": [
19
]
},
"id": 20,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "120:23:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "IERC3156FlashBorrower",
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 2,
"nodeType": "StructuredDocumentation",
"src": "145:153:0",
"text": " @dev Interface of the ERC3156 FlashBorrower, as defined in\n https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].\n _Available since v4.1._"
},
"fullyImplemented": false,
"id": 19,
"linearizedBaseContracts": [
19
],
"name": "IERC3156FlashBorrower",
"nameLocation": "309:21:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "337:406:0",
"text": " @dev Receive a flash loan.\n @param initiator The initiator of the loan.\n @param token The loan currency.\n @param amount The amount of tokens lent.\n @param fee The additional amount of tokens to repay.\n @param data Arbitrary data structure, intended to contain user-defined parameters.\n @return The keccak256 hash of \"IERC3156FlashBorrower.onFlashLoan\""
},
"functionSelector": "23e30c8b",
"id": 18,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "onFlashLoan",
"nameLocation": "757:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 14,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5,
"mutability": "mutable",
"name": "initiator",
"nameLocation": "786:9:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "778:17:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 4,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "778:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "token",
"nameLocation": "813:5:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "805:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 6,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "805:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"mutability": "mutable",
"name": "amount",
"nameLocation": "836:6:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "828:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 8,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "828:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 11,
"mutability": "mutable",
"name": "fee",
"nameLocation": "860:3:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "852:11:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 10,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "852:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 13,
"mutability": "mutable",
"name": "data",
"nameLocation": "888:4:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "873:19:0",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 12,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "873:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "768:130:0"
},
"returnParameters": {
"id": 17,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 16,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "917:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 15,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "917:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "916:9:0"
},
"scope": 19,
"src": "748:178:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
}
],
"scope": 20,
"src": "299:629:0",
"usedErrors": []
}
],
"src": "120:809:0"
},
"id": 0
},
".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashLender.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashLender.sol",
"exportedSymbols": {
"IERC3156FlashBorrower": [
19
],
"IERC3156FlashLender": [
57
]
},
"id": 58,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 21,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "103:23:1"
},
{
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashBorrower.sol",
"file": "./IERC3156FlashBorrower.sol",
"id": 22,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 58,
"sourceUnit": 20,
"src": "128:37:1",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "IERC3156FlashLender",
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 23,
"nodeType": "StructuredDocumentation",
"src": "167:151:1",
"text": " @dev Interface of the ERC3156 FlashLender, as defined in\n https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].\n _Available since v4.1._"
},
"fullyImplemented": false,
"id": 57,
"linearizedBaseContracts": [
57
],
"name": "IERC3156FlashLender",
"nameLocation": "329:19:1",
"nodeType": "ContractDefinition",
"nodes": [
{
"documentation": {
"id": 24,
"nodeType": "StructuredDocumentation",
"src": "355:168:1",
"text": " @dev The amount of currency available to be lended.\n @param token The loan currency.\n @return The amount of `token` that can be borrowed."
},
"functionSelector": "613255ab",
"id": 31,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "maxFlashLoan",
"nameLocation": "537:12:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 27,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 26,
"mutability": "mutable",
"name": "token",
"nameLocation": "558:5:1",
"nodeType": "VariableDeclaration",
"scope": 31,
"src": "550:13:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 25,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "550:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "549:15:1"
},
"returnParameters": {
"id": 30,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 29,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 31,
"src": "588:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 28,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "588:7:1",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "587:9:1"
},
"scope": 57,
"src": "528:69:1",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 32,
"nodeType": "StructuredDocumentation",
"src": "603:249:1",
"text": " @dev The fee to be charged for a given loan.\n @param token The loan currency.\n @param amount The amount of tokens lent.\n @return The amount of `token` to be charged for the loan, on top of the returned principal."
},
"functionSelector": "d9d98ce4",
"id": 41,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "flashFee",
"nameLocation": "866:8:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 37,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 34,
"mutability": "mutable",
"name": "token",
"nameLocation": "883:5:1",
"nodeType": "VariableDeclaration",
"scope": 41,
"src": "875:13:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 33,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "875:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 36,
"mutability": "mutable",
"name": "amount",
"nameLocation": "898:6:1",
"nodeType": "VariableDeclaration",
"scope": 41,
"src": "890:14:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 35,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "890:7:1",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "874:31:1"
},
"returnParameters": {
"id": 40,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 39,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 41,
"src": "929:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 38,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "929:7:1",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "928:9:1"
},
"scope": 57,
"src": "857:81:1",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 42,
"nodeType": "StructuredDocumentation",
"src": "944:320:1",
"text": " @dev Initiate a flash loan.\n @param receiver The receiver of the tokens in the loan, and the receiver of the callback.\n @param token The loan currency.\n @param amount The amount of tokens lent.\n @param data Arbitrary data structure, intended to contain user-defined parameters."
},
"functionSelector": "5cffe9de",
"id": 56,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "flashLoan",
"nameLocation": "1278:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 52,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 45,
"mutability": "mutable",
"name": "receiver",
"nameLocation": "1319:8:1",
"nodeType": "VariableDeclaration",
"scope": 56,
"src": "1297:30:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_contract$_IERC3156FlashBorrower_$19",
"typeString": "contract IERC3156FlashBorrower"
},
"typeName": {
"id": 44,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 43,
"name": "IERC3156FlashBorrower",
"nodeType": "IdentifierPath",
"referencedDeclaration": 19,
"src": "1297:21:1"
},
"referencedDeclaration": 19,
"src": "1297:21:1",
"typeDescriptions": {
"typeIdentifier": "t_contract$_IERC3156FlashBorrower_$19",
"typeString": "contract IERC3156FlashBorrower"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 47,
"mutability": "mutable",
"name": "token",
"nameLocation": "1345:5:1",
"nodeType": "VariableDeclaration",
"scope": 56,
"src": "1337:13:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 46,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1337:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 49,
"mutability": "mutable",
"name": "amount",
"nameLocation": "1368:6:1",
"nodeType": "VariableDeclaration",
"scope": 56,
"src": "1360:14:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 48,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1360:7:1",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 51,
"mutability": "mutable",
"name": "data",
"nameLocation": "1399:4:1",
"nodeType": "VariableDeclaration",
"scope": 56,
"src": "1384:19:1",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 50,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "1384:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "1287:122:1"
},
"returnParameters": {
"id": 55,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 54,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 56,
"src": "1428:4:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 53,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "1428:4:1",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "1427:6:1"
},
"scope": 57,
"src": "1269:165:1",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
}
],
"scope": 58,
"src": "319:1117:1",
"usedErrors": []
}
],
"src": "103:1334: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": {
"flashFee(address,uint256)": "d9d98ce4",
"flashLoan(address,address,uint256,bytes)": "5cffe9de",
"maxFlashLoan(address)": "613255ab"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "flashFee",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "contract IERC3156FlashBorrower",
"name": "receiver",
"type": "address"
},
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "flashLoan",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
}
],
"name": "maxFlashLoan",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "flashFee",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "contract IERC3156FlashBorrower",
"name": "receiver",
"type": "address"
},
{
"internalType": "address",
"name": "token",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "flashLoan",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "token",
"type": "address"
}
],
"name": "maxFlashLoan",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC3156 FlashLender, as defined in https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. _Available since v4.1._",
"kind": "dev",
"methods": {
"flashFee(address,uint256)": {
"details": "The fee to be charged for a given loan.",
"params": {
"amount": "The amount of tokens lent.",
"token": "The loan currency."
},
"returns": {
"_0": "The amount of `token` to be charged for the loan, on top of the returned principal."
}
},
"flashLoan(address,address,uint256,bytes)": {
"details": "Initiate a flash loan.",
"params": {
"amount": "The amount of tokens lent.",
"data": "Arbitrary data structure, intended to contain user-defined parameters.",
"receiver": "The receiver of the tokens in the loan, and the receiver of the callback.",
"token": "The loan currency."
}
},
"maxFlashLoan(address)": {
"details": "The amount of currency available to be lended.",
"params": {
"token": "The loan currency."
},
"returns": {
"_0": "The amount of `token` that can be borrowed."
}
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashLender.sol": "IERC3156FlashLender"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashBorrower.sol": {
"keccak256": "0x294520bb88c710bb1d3c21285f9b531acb5cb9950d77eaeef5598c7328afedb4",
"license": "MIT",
"urls": [
"bzz-raw://d6ea5de496f90e56940f98692c4869e78e8fc6952a416318e3986674d0aef27d",
"dweb:/ipfs/QmeDAgZDoMBBdEYB8LTgAy7DLc1footigkkmLuT1qwvxQv"
]
},
".deps/npm/@openzeppelin/contracts@4.8.2/interfaces/IERC3156FlashLender.sol": {
"keccak256": "0x0d9159aa6c1a0d8006fb152b0aee46a0f9b8938575ede1a0d7e186b3bc79c8d7",
"license": "MIT",
"urls": [
"bzz-raw://ccbfca0b4091d2f0caa762a3da47b56613d3ad06d1ce2a78dc2660be4febe49a",
"dweb:/ipfs/QmeV9wZXFgdeUptik1GBzGn9NQfQQdXqRZF1m52jz9tdCY"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (interfaces/IERC3156FlashBorrower.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC3156 FlashBorrower, as defined in
* https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
*
* _Available since v4.1._
*/
interface IERC3156FlashBorrower {
/**
* @dev Receive a flash loan.
* @param initiator The initiator of the loan.
* @param token The loan currency.
* @param amount The amount of tokens lent.
* @param fee The additional amount of tokens to repay.
* @param data Arbitrary data structure, intended to contain user-defined parameters.
* @return The keccak256 hash of "IERC3156FlashBorrower.onFlashLoan"
*/
function onFlashLoan(
address initiator,
address token,
uint256 amount,
uint256 fee,
bytes calldata data
) external returns (bytes32);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol)
pragma solidity ^0.8.0;
import "./IERC3156FlashBorrower.sol";
/**
* @dev Interface of the ERC3156 FlashLender, as defined in
* https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
*
* _Available since v4.1._
*/
interface IERC3156FlashLender {
/**
* @dev The amount of currency available to be lended.
* @param token The loan currency.
* @return The amount of `token` that can be borrowed.
*/
function maxFlashLoan(address token) external view returns (uint256);
/**
* @dev The fee to be charged for a given loan.
* @param token The loan currency.
* @param amount The amount of tokens lent.
* @return The amount of `token` to be charged for the loan, on top of the returned principal.
*/
function flashFee(address token, uint256 amount) external view returns (uint256);
/**
* @dev Initiate a flash loan.
* @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
* @param token The loan currency.
* @param amount The amount of tokens lent.
* @param data Arbitrary data structure, intended to contain user-defined parameters.
*/
function flashLoan(
IERC3156FlashBorrower receiver,
address token,
uint256 amount,
bytes calldata data
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
{
"id": "4996c4fe760e245b08817a71d4353dee",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.9",
"solcLongVersion": "0.8.9+commit.e5eed63a",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 amount\n ) external returns (bool);\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@4.8.2/token/ERC20/IERC20.sol": {
"IERC20": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC20 standard as defined in the EIP.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "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."
},
"approve(address,uint256)": {
"details": "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."
},
"balanceOf(address)": {
"details": "Returns the amount of tokens owned by `account`."
},
"totalSupply()": {
"details": "Returns the amount of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "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."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.9+commit.e5eed63a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"approve\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceOf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"balanceOf(address)\":{\"details\":\"Returns the amount of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the amount of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol\":{\"keccak256\":\"0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34\",\"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol",
"exportedSymbols": {
"IERC20": [
77
]
},
"id": 78,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "106:23:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "IERC20",
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 2,
"nodeType": "StructuredDocumentation",
"src": "131:70:0",
"text": " @dev Interface of the ERC20 standard as defined in the EIP."
},
"fullyImplemented": false,
"id": 77,
"linearizedBaseContracts": [
77
],
"name": "IERC20",
"nameLocation": "212:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"anonymous": false,
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "225:158:0",
"text": " @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."
},
"id": 11,
"name": "Transfer",
"nameLocation": "394:8:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 10,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5,
"indexed": true,
"mutability": "mutable",
"name": "from",
"nameLocation": "419:4:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "403:20:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 4,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "403:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 7,
"indexed": true,
"mutability": "mutable",
"name": "to",
"nameLocation": "441:2:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "425:18:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 6,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "425:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"indexed": false,
"mutability": "mutable",
"name": "value",
"nameLocation": "453:5:0",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "445:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 8,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "445:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "402:57:0"
},
"src": "388:72:0"
},
{
"anonymous": false,
"documentation": {
"id": 12,
"nodeType": "StructuredDocumentation",
"src": "466:148:0",
"text": " @dev Emitted when the allowance of a `spender` for an `owner` is set by\n a call to {approve}. `value` is the new allowance."
},
"id": 20,
"name": "Approval",
"nameLocation": "625:8:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 19,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 14,
"indexed": true,
"mutability": "mutable",
"name": "owner",
"nameLocation": "650:5:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "634:21:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 13,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "634:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 16,
"indexed": true,
"mutability": "mutable",
"name": "spender",
"nameLocation": "673:7:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "657:23:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 15,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "657:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 18,
"indexed": false,
"mutability": "mutable",
"name": "value",
"nameLocation": "690:5:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "682:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 17,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "682:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "633:63:0"
},
"src": "619:78:0"
},
{
"documentation": {
"id": 21,
"nodeType": "StructuredDocumentation",
"src": "703:66:0",
"text": " @dev Returns the amount of tokens in existence."
},
"functionSelector": "18160ddd",
"id": 26,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "totalSupply",
"nameLocation": "783:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 22,
"nodeType": "ParameterList",
"parameters": [],
"src": "794:2:0"
},
"returnParameters": {
"id": 25,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 24,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 26,
"src": "820:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 23,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "820:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "819:9:0"
},
"scope": 77,
"src": "774:55:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 27,
"nodeType": "StructuredDocumentation",
"src": "835:72:0",
"text": " @dev Returns the amount of tokens owned by `account`."
},
"functionSelector": "70a08231",
"id": 34,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "balanceOf",
"nameLocation": "921:9:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 30,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 29,
"mutability": "mutable",
"name": "account",
"nameLocation": "939:7:0",
"nodeType": "VariableDeclaration",
"scope": 34,
"src": "931:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 28,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "931:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "930:17:0"
},
"returnParameters": {
"id": 33,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 32,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 34,
"src": "971:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 31,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "971:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "970:9:0"
},
"scope": 77,
"src": "912:68:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 35,
"nodeType": "StructuredDocumentation",
"src": "986:202:0",
"text": " @dev Moves `amount` tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."
},
"functionSelector": "a9059cbb",
"id": 44,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "transfer",
"nameLocation": "1202:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 40,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 37,
"mutability": "mutable",
"name": "to",
"nameLocation": "1219:2:0",
"nodeType": "VariableDeclaration",
"scope": 44,
"src": "1211:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 36,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1211:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 39,
"mutability": "mutable",
"name": "amount",
"nameLocation": "1231:6:0",
"nodeType": "VariableDeclaration",
"scope": 44,
"src": "1223:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 38,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1223:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1210:28:0"
},
"returnParameters": {
"id": 43,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 42,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 44,
"src": "1257:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 41,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "1257:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "1256:6:0"
},
"scope": 77,
"src": "1193:70:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 45,
"nodeType": "StructuredDocumentation",
"src": "1269:264:0",
"text": " @dev Returns the remaining number of tokens that `spender` will be\n allowed to spend on behalf of `owner` through {transferFrom}. This is\n zero by default.\n This value changes when {approve} or {transferFrom} are called."
},
"functionSelector": "dd62ed3e",
"id": 54,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "allowance",
"nameLocation": "1547:9:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 50,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 47,
"mutability": "mutable",
"name": "owner",
"nameLocation": "1565:5:0",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "1557:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 46,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1557:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 49,
"mutability": "mutable",
"name": "spender",
"nameLocation": "1580:7:0",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "1572:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 48,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1572:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1556:32:0"
},
"returnParameters": {
"id": 53,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 52,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "1612:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 51,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "1612:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1611:9:0"
},
"scope": 77,
"src": "1538:83:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 55,
"nodeType": "StructuredDocumentation",
"src": "1627:642:0",
"text": " @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n Returns a boolean value indicating whether the operation succeeded.\n IMPORTANT: Beware that changing an allowance with this method brings the risk\n that someone may use both the old and the new allowance by unfortunate\n transaction ordering. One possible solution to mitigate this race\n condition is to first reduce the spender's allowance to 0 and set the\n desired value afterwards:\n https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n Emits an {Approval} event."
},
"functionSelector": "095ea7b3",
"id": 64,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "approve",
"nameLocation": "2283:7:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 60,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 57,
"mutability": "mutable",
"name": "spender",
"nameLocation": "2299:7:0",
"nodeType": "VariableDeclaration",
"scope": 64,
"src": "2291:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 56,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2291:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 59,
"mutability": "mutable",
"name": "amount",
"nameLocation": "2316:6:0",
"nodeType": "VariableDeclaration",
"scope": 64,
"src": "2308:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 58,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "2308:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "2290:33:0"
},
"returnParameters": {
"id": 63,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 62,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 64,
"src": "2342:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 61,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "2342:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "2341:6:0"
},
"scope": 77,
"src": "2274:74:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 65,
"nodeType": "StructuredDocumentation",
"src": "2354:287:0",
"text": " @dev Moves `amount` tokens from `from` to `to` using the\n allowance mechanism. `amount` is then deducted from the caller's\n allowance.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."
},
"functionSelector": "23b872dd",
"id": 76,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "transferFrom",
"nameLocation": "2655:12:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 72,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 67,
"mutability": "mutable",
"name": "from",
"nameLocation": "2685:4:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2677:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 66,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2677:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 69,
"mutability": "mutable",
"name": "to",
"nameLocation": "2707:2:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2699:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 68,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2699:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 71,
"mutability": "mutable",
"name": "amount",
"nameLocation": "2727:6:0",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2719:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 70,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "2719:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "2667:72:0"
},
"returnParameters": {
"id": 75,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 74,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 76,
"src": "2758:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 73,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "2758:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "2757:6:0"
},
"scope": 77,
"src": "2646:118:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
}
],
"scope": 78,
"src": "202:2564:0",
"usedErrors": []
}
],
"src": "106:2661:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_string_fromMemory": {
"entryPoint": 292,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 475,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"extract_byte_array_length": {
"entryPoint": 581,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x41": {
"entryPoint": 270,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1985:4",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:4",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "46:95:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "63:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "70:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "75:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "66:3:4"
},
"nodeType": "YulFunctionCall",
"src": "66:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "56:6:4"
},
"nodeType": "YulFunctionCall",
"src": "56:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "56:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "103:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "106:4:4",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "96:6:4"
},
"nodeType": "YulFunctionCall",
"src": "96:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "96:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "127:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "130:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "120:6:4"
},
"nodeType": "YulFunctionCall",
"src": "120:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "120:15:4"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "14:127:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "210:821:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "259:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "268:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "271:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "261:6:4"
},
"nodeType": "YulFunctionCall",
"src": "261:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "261:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "238:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "246:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "234:3:4"
},
"nodeType": "YulFunctionCall",
"src": "234:17:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "253:3:4"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "230:3:4"
},
"nodeType": "YulFunctionCall",
"src": "230:27:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "223:6:4"
},
"nodeType": "YulFunctionCall",
"src": "223:35:4"
},
"nodeType": "YulIf",
"src": "220:55:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "284:23:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "300:6:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "294:5:4"
},
"nodeType": "YulFunctionCall",
"src": "294:13:4"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "288:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "316:28:4",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "334:2:4",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "338:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "330:3:4"
},
"nodeType": "YulFunctionCall",
"src": "330:10:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "342:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "326:3:4"
},
"nodeType": "YulFunctionCall",
"src": "326:18:4"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "320:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "367:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "369:16:4"
},
"nodeType": "YulFunctionCall",
"src": "369:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "369:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "359:2:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "363:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "356:2:4"
},
"nodeType": "YulFunctionCall",
"src": "356:10:4"
},
"nodeType": "YulIf",
"src": "353:36:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "398:17:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "412:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "408:3:4"
},
"nodeType": "YulFunctionCall",
"src": "408:7:4"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "402:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "424:23:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "444:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "438:5:4"
},
"nodeType": "YulFunctionCall",
"src": "438:9:4"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "428:6:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "456:71:4",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "478:6:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "502:2:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "506:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "498:3:4"
},
"nodeType": "YulFunctionCall",
"src": "498:13:4"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "513:2:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "494:3:4"
},
"nodeType": "YulFunctionCall",
"src": "494:22:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "518:2:4",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "490:3:4"
},
"nodeType": "YulFunctionCall",
"src": "490:31:4"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "523:2:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "486:3:4"
},
"nodeType": "YulFunctionCall",
"src": "486:40:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "474:3:4"
},
"nodeType": "YulFunctionCall",
"src": "474:53:4"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "460:10:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "586:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "588:16:4"
},
"nodeType": "YulFunctionCall",
"src": "588:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "588:18:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "545:10:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "557:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "542:2:4"
},
"nodeType": "YulFunctionCall",
"src": "542:18:4"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "565:10:4"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "577:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "562:2:4"
},
"nodeType": "YulFunctionCall",
"src": "562:22:4"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "539:2:4"
},
"nodeType": "YulFunctionCall",
"src": "539:46:4"
},
"nodeType": "YulIf",
"src": "536:72:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "624:2:4",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "628:10:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "617:6:4"
},
"nodeType": "YulFunctionCall",
"src": "617:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "617:22:4"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "655:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "663:2:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "648:6:4"
},
"nodeType": "YulFunctionCall",
"src": "648:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "648:18:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "675:14:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "685:4:4",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "679:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "744:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "747:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "737:6:4"
},
"nodeType": "YulFunctionCall",
"src": "737:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "737:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "712:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "720:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "708:3:4"
},
"nodeType": "YulFunctionCall",
"src": "708:15:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "725:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "704:3:4"
},
"nodeType": "YulFunctionCall",
"src": "704:24:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "730:3:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "701:2:4"
},
"nodeType": "YulFunctionCall",
"src": "701:33:4"
},
"nodeType": "YulIf",
"src": "698:53:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "760:10:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "769:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "764:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "825:87:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "854:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "862:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "850:3:4"
},
"nodeType": "YulFunctionCall",
"src": "850:14:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "866:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "846:3:4"
},
"nodeType": "YulFunctionCall",
"src": "846:23:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "885:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "893:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "881:3:4"
},
"nodeType": "YulFunctionCall",
"src": "881:14:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "897:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "877:3:4"
},
"nodeType": "YulFunctionCall",
"src": "877:23:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "871:5:4"
},
"nodeType": "YulFunctionCall",
"src": "871:30:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "839:6:4"
},
"nodeType": "YulFunctionCall",
"src": "839:63:4"
},
"nodeType": "YulExpressionStatement",
"src": "839:63:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "790:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "793:2:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "787:2:4"
},
"nodeType": "YulFunctionCall",
"src": "787:9:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "797:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "799:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "808:1:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "811:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "804:3:4"
},
"nodeType": "YulFunctionCall",
"src": "804:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "799:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "783:3:4",
"statements": []
},
"src": "779:133:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "942:59:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "971:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "979:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "967:3:4"
},
"nodeType": "YulFunctionCall",
"src": "967:15:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "984:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "963:3:4"
},
"nodeType": "YulFunctionCall",
"src": "963:24:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "989:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "956:6:4"
},
"nodeType": "YulFunctionCall",
"src": "956:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "956:35:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "927:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "930:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "924:2:4"
},
"nodeType": "YulFunctionCall",
"src": "924:9:4"
},
"nodeType": "YulIf",
"src": "921:80:4"
},
{
"nodeType": "YulAssignment",
"src": "1010:15:4",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1019:6:4"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1010:5:4"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "184:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "192:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "200:5:4",
"type": ""
}
],
"src": "146:885:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1154:444:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1200:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1209:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1212:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1202:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1202:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1202:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1175:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1184:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1171:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1171:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1196:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1167:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1167:32:4"
},
"nodeType": "YulIf",
"src": "1164:52:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1225:30:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1245:9:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1239:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1239:16:4"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1229:6:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1264:28:4",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1282:2:4",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1278:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1278:10:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1290:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1274:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1274:18:4"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1268:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1319:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1328:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1331:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1321:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1321:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1321:12:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1307:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1315:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1304:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1304:14:4"
},
"nodeType": "YulIf",
"src": "1301:34:4"
},
{
"nodeType": "YulAssignment",
"src": "1344:71:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1387:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1398:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1383:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1383:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1407:7:4"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1354:28:4"
},
"nodeType": "YulFunctionCall",
"src": "1354:61:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1344:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1424:41:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1450:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1461:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1446:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1446:18:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1440:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1440:25:4"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1428:8:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1494:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1503:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1506:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1496:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1496:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1496:12:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1480:8:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1490:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1477:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1477:16:4"
},
"nodeType": "YulIf",
"src": "1474:36:4"
},
{
"nodeType": "YulAssignment",
"src": "1519:73:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1562:9:4"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1573:8:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1558:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1558:24:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1584:7:4"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1529:28:4"
},
"nodeType": "YulFunctionCall",
"src": "1529:63:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1519:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1112:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1123:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1135:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1143:6:4",
"type": ""
}
],
"src": "1036:562:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1658:325:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1668:22:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1682:1:4",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1685:4:4"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "1678:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1678:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1668:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1699:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1729:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1735:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1725:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1725:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1703:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1776:31:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1778:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1792:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1800:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1788:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1788:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1778:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1756:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1749:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1749:26:4"
},
"nodeType": "YulIf",
"src": "1746:61:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1866:111:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1887:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1894:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1890:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1890:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1880:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1880:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "1880:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1931:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1934:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1924:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1924:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "1924:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1959:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1962:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1952:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1952:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "1952:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1822:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1845:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1853:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1842:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1842:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1819:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1819:38:4"
},
"nodeType": "YulIf",
"src": "1816:161:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1638:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1647:6:4",
"type": ""
}
],
"src": "1603:380:4"
}
]
},
"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 if gt(i, _1)\n {\n mstore(add(add(memPtr, _1), _4), 0)\n }\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}",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162000aef38038062000aef8339810160408190526200003491620001db565b81516200004990600390602085019062000068565b5080516200005f90600490602084019062000068565b50505062000282565b828054620000769062000245565b90600052602060002090601f0160209004810192826200009a5760008555620000e5565b82601f10620000b557805160ff1916838001178555620000e5565b82800160010185558215620000e5579182015b82811115620000e5578251825591602001919060010190620000c8565b50620000f3929150620000f7565b5090565b5b80821115620000f35760008155600101620000f8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200013657600080fd5b81516001600160401b03808211156200015357620001536200010e565b604051601f8301601f19908116603f011681019082821181831017156200017e576200017e6200010e565b816040528381526020925086838588010111156200019b57600080fd5b600091505b83821015620001bf5785820183015181830184015290820190620001a0565b83821115620001d15760008385830101525b9695505050505050565b60008060408385031215620001ef57600080fd5b82516001600160401b03808211156200020757600080fd5b620002158683870162000124565b935060208501519150808211156200022c57600080fd5b506200023b8582860162000124565b9150509250929050565b600181811c908216806200025a57607f821691505b602082108114156200027c57634e487b7160e01b600052602260045260246000fd5b50919050565b61085d80620002926000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101a0565b6040516100c3919061069a565b60405180910390f35b6100df6100da36600461070b565b610232565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610735565b61024a565b604051601281526020016100c3565b6100df61013136600461070b565b61026e565b6100f3610144366004610771565b6001600160a01b031660009081526020819052604090205490565b6100b6610290565b6100df61017536600461070b565b61029f565b6100df61018836600461070b565b61031f565b6100f361019b366004610793565b61032d565b6060600380546101af906107c6565b80601f01602080910402602001604051908101604052809291908181526020018280546101db906107c6565b80156102285780601f106101fd57610100808354040283529160200191610228565b820191906000526020600020905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b600033610240818585610358565b5060019392505050565b60003361025885828561047c565b6102638585856104f6565b506001949350505050565b600033610240818585610281838361032d565b61028b9190610801565b610358565b6060600480546101af906107c6565b600033816102ad828661032d565b9050838110156103125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102638286868403610358565b6000336102408185856104f6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610309565b6001600160a01b03821661041b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610309565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610488848461032d565b905060001981146104f057818110156104e35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610309565b6104f08484848403610358565b50505050565b6001600160a01b03831661055a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610309565b6001600160a01b0382166105bc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610309565b6001600160a01b038316600090815260208190526040902054818110156106345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610309565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36104f0565b600060208083528351808285015260005b818110156106c7578581018301518582016040015282016106ab565b818111156106d9576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461070657600080fd5b919050565b6000806040838503121561071e57600080fd5b610727836106ef565b946020939093013593505050565b60008060006060848603121561074a57600080fd5b610753846106ef565b9250610761602085016106ef565b9150604084013590509250925092565b60006020828403121561078357600080fd5b61078c826106ef565b9392505050565b600080604083850312156107a657600080fd5b6107af836106ef565b91506107bd602084016106ef565b90509250929050565b600181811c908216806107da57607f821691505b602082108114156107fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561082257634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212206ed9beb4f0272a0b4a13776eea436147203c0459fe3f9a8a4d856e75da3d1bdd64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xAEF CODESIZE SUB DUP1 PUSH3 0xAEF DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1DB JUMP JUMPDEST DUP2 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP POP POP PUSH3 0x282 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x76 SWAP1 PUSH3 0x245 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x9A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xB5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xE5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xE5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC8 JUMP JUMPDEST POP PUSH3 0xF3 SWAP3 SWAP2 POP PUSH3 0xF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xF8 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 0x136 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x153 JUMPI PUSH3 0x153 PUSH3 0x10E 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 0x17E JUMPI PUSH3 0x17E PUSH3 0x10E JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x19B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1BF JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x1A0 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1D1 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x207 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x215 DUP7 DUP4 DUP8 ADD PUSH3 0x124 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x22C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x23B DUP6 DUP3 DUP7 ADD PUSH3 0x124 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x25A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x27C 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 PUSH2 0x85D DUP1 PUSH3 0x292 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 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15F JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x1A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x69A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x232 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0x735 JUMP JUMPDEST PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x131 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x26E JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x144 CALLDATASIZE PUSH1 0x4 PUSH2 0x771 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xB6 PUSH2 0x290 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x29F JUMP JUMPDEST PUSH2 0xDF PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x31F JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x793 JUMP JUMPDEST PUSH2 0x32D JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C6 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 0x1DB SWAP1 PUSH2 0x7C6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x228 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1FD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x228 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 0x20B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x358 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x258 DUP6 DUP3 DUP6 PUSH2 0x47C JUMP JUMPDEST PUSH2 0x263 DUP6 DUP6 DUP6 PUSH2 0x4F6 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x281 DUP4 DUP4 PUSH2 0x32D JUMP JUMPDEST PUSH2 0x28B SWAP2 SWAP1 PUSH2 0x801 JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C6 JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x2AD DUP3 DUP7 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x312 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x263 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x358 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3BA 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 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x41B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x488 DUP5 DUP5 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x4F0 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x309 JUMP JUMPDEST PUSH2 0x4F0 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x358 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x55A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5BC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x634 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4F0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x6C7 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x6AB JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x6D9 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x706 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x71E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x727 DUP4 PUSH2 0x6EF 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 0x74A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x753 DUP5 PUSH2 0x6EF JUMP JUMPDEST SWAP3 POP PUSH2 0x761 PUSH1 0x20 DUP6 ADD PUSH2 0x6EF 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 0x783 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x78C DUP3 PUSH2 0x6EF JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7AF DUP4 PUSH2 0x6EF JUMP JUMPDEST SWAP2 POP PUSH2 0x7BD PUSH1 0x20 DUP5 ADD PUSH2 0x6EF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7DA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x7FB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x822 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH15 0xD9BEB4F0272A0B4A13776EEA436147 KECCAK256 EXTCODECOPY DIV MSIZE INVALID EXTCODEHASH SWAP11 DUP11 0x4D DUP6 PUSH15 0x75DA3D1BDD64736F6C634300080900 CALLER ",
"sourceMap": "1401:11610:0:-:0;;;1976:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2042:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;2065:17:0;;;;:7;;:17;;;;;:::i;:::-;;1976:113;;1401:11610;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1401:11610:0;;;-1:-1:-1;1401:11610:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:127:4;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:885;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:4;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:4;;;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;;;930:2;927:1;924:9;921:80;;;989:1;984:2;979;971:6;967:15;963:24;956:35;921:80;1019:6;146:885;-1:-1:-1;;;;;;146:885:4:o;1036:562::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1239:16;;-1:-1:-1;;;;;1304:14:4;;;1301:34;;;1331:1;1328;1321:12;1301:34;1354:61;1407:7;1398:6;1387:9;1383:22;1354:61;:::i;:::-;1344:71;;1461:2;1450:9;1446:18;1440:25;1424:41;;1490:2;1480:8;1477:16;1474:36;;;1506:1;1503;1496:12;1474:36;;1529:63;1584:7;1573:8;1562:9;1558:24;1529:63;:::i;:::-;1519:73;;;1036:562;;;;;:::o;1603:380::-;1682:1;1678:12;;;;1725;;;1746:61;;1800:4;1792:6;1788:17;1778:27;;1746:61;1853:2;1845:6;1842:14;1822:18;1819:38;1816:161;;;1899:10;1894:3;1890:20;1887:1;1880:31;1934:4;1931:1;1924:15;1962:4;1959:1;1952:15;1816:161;;1603:380;;;:::o;:::-;1401:11610:0;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_585": {
"entryPoint": null,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_520": {
"entryPoint": 856,
"id": 520,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": null,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_701": {
"entryPoint": null,
"id": 701,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_563": {
"entryPoint": 1148,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_346": {
"entryPoint": 1270,
"id": 346,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_141": {
"entryPoint": 813,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_166": {
"entryPoint": 562,
"id": 166,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_98": {
"entryPoint": null,
"id": 98,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_74": {
"entryPoint": null,
"id": 74,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_269": {
"entryPoint": 671,
"id": 269,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_228": {
"entryPoint": 622,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_54": {
"entryPoint": 416,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_64": {
"entryPoint": 656,
"id": 64,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_84": {
"entryPoint": null,
"id": 84,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 586,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_123": {
"entryPoint": 799,
"id": 123,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_address": {
"entryPoint": 1775,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 1905,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 1939,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 1845,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 1803,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"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": 1690,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2049,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1990,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5806:4",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:4",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "135:476:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "145:12:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "155:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "149:2:4",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "173:9:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "184:2:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "166:6:4"
},
"nodeType": "YulFunctionCall",
"src": "166:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "166:21:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "196:27:4",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "216:6:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "210:5:4"
},
"nodeType": "YulFunctionCall",
"src": "210:13:4"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "200:6:4",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "243:9:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "254:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "239:3:4"
},
"nodeType": "YulFunctionCall",
"src": "239:18:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "259:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "232:6:4"
},
"nodeType": "YulFunctionCall",
"src": "232:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "232:34:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "275:10:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "284:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "279:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "344:90:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "373:9:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "384:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "369:3:4"
},
"nodeType": "YulFunctionCall",
"src": "369:17:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "388:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "365:3:4"
},
"nodeType": "YulFunctionCall",
"src": "365:26:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "407:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "415:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "403:3:4"
},
"nodeType": "YulFunctionCall",
"src": "403:14:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "419:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "399:3:4"
},
"nodeType": "YulFunctionCall",
"src": "399:23:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "393:5:4"
},
"nodeType": "YulFunctionCall",
"src": "393:30:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "358:6:4"
},
"nodeType": "YulFunctionCall",
"src": "358:66:4"
},
"nodeType": "YulExpressionStatement",
"src": "358:66:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "305:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "308:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "302:2:4"
},
"nodeType": "YulFunctionCall",
"src": "302:13:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "316:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "318:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "327:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "330:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "323:3:4"
},
"nodeType": "YulFunctionCall",
"src": "323:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "318:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "298:3:4",
"statements": []
},
"src": "294:140:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "468:66:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "497:9:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "508:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "493:3:4"
},
"nodeType": "YulFunctionCall",
"src": "493:22:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "517:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "489:3:4"
},
"nodeType": "YulFunctionCall",
"src": "489:31:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "522:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "482:6:4"
},
"nodeType": "YulFunctionCall",
"src": "482:42:4"
},
"nodeType": "YulExpressionStatement",
"src": "482:42:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "449:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "452:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "446:2:4"
},
"nodeType": "YulFunctionCall",
"src": "446:13:4"
},
"nodeType": "YulIf",
"src": "443:91:4"
},
{
"nodeType": "YulAssignment",
"src": "543:62:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "559:9:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "578:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "586:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "574:3:4"
},
"nodeType": "YulFunctionCall",
"src": "574:15:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "595:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "591:3:4"
},
"nodeType": "YulFunctionCall",
"src": "591:7:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "570:3:4"
},
"nodeType": "YulFunctionCall",
"src": "570:29:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "555:3:4"
},
"nodeType": "YulFunctionCall",
"src": "555:45:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "602:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "551:3:4"
},
"nodeType": "YulFunctionCall",
"src": "551:54:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "543:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "104:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "115:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "126:4:4",
"type": ""
}
],
"src": "14:597:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "665:124:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "675:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "697:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "684:12:4"
},
"nodeType": "YulFunctionCall",
"src": "684:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "675:5:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "767:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "776:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "779:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "769:6:4"
},
"nodeType": "YulFunctionCall",
"src": "769:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "769:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "726:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "737:5:4"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:3:4",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "757:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "748:3:4"
},
"nodeType": "YulFunctionCall",
"src": "748:11:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "761:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "744:3:4"
},
"nodeType": "YulFunctionCall",
"src": "744:19:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "733:3:4"
},
"nodeType": "YulFunctionCall",
"src": "733:31:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "723:2:4"
},
"nodeType": "YulFunctionCall",
"src": "723:42:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "716:6:4"
},
"nodeType": "YulFunctionCall",
"src": "716:50:4"
},
"nodeType": "YulIf",
"src": "713:70:4"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "655:5:4",
"type": ""
}
],
"src": "616:173:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "881:167:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "927:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "929:6:4"
},
"nodeType": "YulFunctionCall",
"src": "929:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "929:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "902:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "911:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "898:3:4"
},
"nodeType": "YulFunctionCall",
"src": "898:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "923:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "894:3:4"
},
"nodeType": "YulFunctionCall",
"src": "894:32:4"
},
"nodeType": "YulIf",
"src": "891:52:4"
},
{
"nodeType": "YulAssignment",
"src": "952:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "981:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "962:18:4"
},
"nodeType": "YulFunctionCall",
"src": "962:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "952:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1000:42:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1027:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1038:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1023:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1023:18:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1010:12:4"
},
"nodeType": "YulFunctionCall",
"src": "1010:32:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1000:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "839:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "850:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "862:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "870:6:4",
"type": ""
}
],
"src": "794:254:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1148:92:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1158:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1170:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1166:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1166:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1158:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1200:9:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1225:6:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1218:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1218:14:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1211:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1211:22:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1193:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1193:41:4"
},
"nodeType": "YulExpressionStatement",
"src": "1193:41:4"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1117:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1128:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1139:4:4",
"type": ""
}
],
"src": "1053:187:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1346:76:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1356:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1368:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1379:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1364:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1364:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1356:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1398:9:4"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1409:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1391:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1391:25:4"
},
"nodeType": "YulExpressionStatement",
"src": "1391:25:4"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1315:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1326:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1337:4:4",
"type": ""
}
],
"src": "1245:177:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1531:224:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1577:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1586:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1589:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1579:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1579:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1579:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1552:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1561:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1548:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1548:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1573:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1544:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1544:32:4"
},
"nodeType": "YulIf",
"src": "1541:52:4"
},
{
"nodeType": "YulAssignment",
"src": "1602:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1631:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1612:18:4"
},
"nodeType": "YulFunctionCall",
"src": "1612:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1602:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1650:48:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1683:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1694:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1679:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1679:18:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1660:18:4"
},
"nodeType": "YulFunctionCall",
"src": "1660:38:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1650:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1707:42:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1734:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1745:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1730:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1730:18:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1717:12:4"
},
"nodeType": "YulFunctionCall",
"src": "1717:32:4"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1707:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1481:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1492:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1504:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1512:6:4",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1520:6:4",
"type": ""
}
],
"src": "1427:328:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1857:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1867:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1879:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1890:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1875:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1875:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1867:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1909:9:4"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1924:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1932:4:4",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1920:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1920:17:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1902:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1902:36:4"
},
"nodeType": "YulExpressionStatement",
"src": "1902:36:4"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1826:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1837:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1848:4:4",
"type": ""
}
],
"src": "1760:184:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2019:116:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2065:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2074:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2077:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2067:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2067:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2067:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2040:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2049:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2036:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2036:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2061:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2032:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2032:32:4"
},
"nodeType": "YulIf",
"src": "2029:52:4"
},
{
"nodeType": "YulAssignment",
"src": "2090:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2119:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2100:18:4"
},
"nodeType": "YulFunctionCall",
"src": "2100:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2090:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1985:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1996:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2008:6:4",
"type": ""
}
],
"src": "1949:186:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2227:173:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2273:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2282:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2285:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2275:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2275:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2275:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2248:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2257:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2244:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2244:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2269:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2240:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2240:32:4"
},
"nodeType": "YulIf",
"src": "2237:52:4"
},
{
"nodeType": "YulAssignment",
"src": "2298:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2327:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2308:18:4"
},
"nodeType": "YulFunctionCall",
"src": "2308:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2298:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2346:48:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2379:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2390:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2375:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2375:18:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2356:18:4"
},
"nodeType": "YulFunctionCall",
"src": "2356:38:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2346:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2185:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2196:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2208:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2216:6:4",
"type": ""
}
],
"src": "2140:260:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2460:325:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2470:22:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2484:1:4",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2487:4:4"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2480:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2480:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2470:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2501:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2531:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2537:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2527:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2527:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2505:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2578:31:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2580:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2594:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2602:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2590:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2590:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2580:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2558:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2551:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2551:26:4"
},
"nodeType": "YulIf",
"src": "2548:61:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2668:111:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2689:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2696:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2701:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2692:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2692:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2682:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2682:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "2682:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2733:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2736:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2726:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2726:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2726:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2761:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2764:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2754:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2754:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2754:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2624:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2647:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2655:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2644:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2644:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2621:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2621:38:4"
},
"nodeType": "YulIf",
"src": "2618:161:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2440:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2449:6:4",
"type": ""
}
],
"src": "2405:380:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2838:177:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2873:111:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2894:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2901:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2906:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2897:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2897:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2887:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2887:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "2887:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2938:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2941:4:4",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2931:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2931:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2931:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2966:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2969:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2959:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2959:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2959:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2854:1:4"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2861:1:4"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2857:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2857:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2851:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2851:13:4"
},
"nodeType": "YulIf",
"src": "2848:136:4"
},
{
"nodeType": "YulAssignment",
"src": "2993:16:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3004:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3007:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3000:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3000:9:4"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2993:3:4"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2821:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2824:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2830:3:4",
"type": ""
}
],
"src": "2790:225:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3194:227:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3211:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3222:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3204:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3204:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "3204:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3245:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3256:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3241:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3241:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3261:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3234:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3234:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3234:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3284:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3295:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3280:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3280:18:4"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3300:34:4",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3273:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3273:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "3273:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3355:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3366:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3351:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3351:18:4"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3371:7:4",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3344:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3344:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "3344:35:4"
},
{
"nodeType": "YulAssignment",
"src": "3388:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3400:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3411:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3396:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3396:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3388:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3171:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3185:4:4",
"type": ""
}
],
"src": "3020:401:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3600:226:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3617:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3628:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3610:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3610:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "3610:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3651:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3662:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3647:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3647:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3667:2:4",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3640:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3640:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3640:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3686:18:4"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3706:34:4",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3679:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3679:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "3679:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3761:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3772:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3757:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3757:18:4"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3777:6:4",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3750:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3750:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "3750:34:4"
},
{
"nodeType": "YulAssignment",
"src": "3793:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3805:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3816:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3801:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3801:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3793:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3577:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3591:4:4",
"type": ""
}
],
"src": "3426:400:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4005:224:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4022:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4033:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4015:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4015:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4015:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4056:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4067:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4052:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4052:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4072:2:4",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4045:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4045:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4045:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4095:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4106:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4091:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4091:18:4"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4111:34:4",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4084:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4084:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "4084:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4166:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4177:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4162:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4162:18:4"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4182:4:4",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4155:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4155:32:4"
},
"nodeType": "YulExpressionStatement",
"src": "4155:32:4"
},
{
"nodeType": "YulAssignment",
"src": "4196:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4208:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4219:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4204:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4204:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4196:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3982:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3996:4:4",
"type": ""
}
],
"src": "3831:398:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4408:179:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4425:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4436:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4418:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4418:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4418:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4459:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4470:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4455:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4455:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4475:2:4",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4448:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4448:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4448:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4498:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4509:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4494:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4494:18:4"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4514:31:4",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4487:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4487:59:4"
},
"nodeType": "YulExpressionStatement",
"src": "4487:59:4"
},
{
"nodeType": "YulAssignment",
"src": "4555:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4567:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4578:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4563:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4563:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4555:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4385:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4399:4:4",
"type": ""
}
],
"src": "4234:353:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4766:227:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4783:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4794:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4776:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4776:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4776:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4817:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4828:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4813:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4813:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4833:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4806:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4806:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4806:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4856:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4867:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4852:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4852:18:4"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4872:34:4",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4845:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4845:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "4845:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4927:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4938:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4923:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4923:18:4"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4943:7:4",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4916:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4916:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "4916:35:4"
},
{
"nodeType": "YulAssignment",
"src": "4960:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4972:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4983:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4968:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4968:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4960:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4743:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4757:4:4",
"type": ""
}
],
"src": "4592:401:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5172:225:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5189:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5200:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5182:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5182:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "5182:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5223:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5234:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5219:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5219:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5239:2:4",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5212:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5212:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "5212:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5262:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5273:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5258:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5258:18:4"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5278:34:4",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5251:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5251:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "5251:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5333:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5344:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5329:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5329:18:4"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5349:5:4",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5322:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5322:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "5322:33:4"
},
{
"nodeType": "YulAssignment",
"src": "5364:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5376:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5387:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5372:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5372:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5364:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5149:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5163:4:4",
"type": ""
}
],
"src": "4998:399:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5576:228:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5593:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5604:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5586:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5586:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "5586:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5627:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5638:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5623:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5623:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5643:2:4",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5616:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5616:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "5616:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5666:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5677:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5662:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5662:18:4"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5682:34:4",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5655:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5655:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "5655:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5737:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5748:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5733:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5733:18:4"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5753:8:4",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5726:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5726:36:4"
},
"nodeType": "YulExpressionStatement",
"src": "5726:36:4"
},
{
"nodeType": "YulAssignment",
"src": "5771:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5783:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5794:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5779:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5779:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5771:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5553:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5567:4:4",
"type": ""
}
],
"src": "5402:402:4"
}
]
},
"contents": "{\n { }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n mstore(headStart, _1)\n let length := mload(value0)\n mstore(add(headStart, _1), length)\n let i := 0\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n }\n if gt(i, length)\n {\n mstore(add(add(headStart, length), 64), 0)\n }\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\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_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_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_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_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xff))\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function 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 checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n sum := add(x, y)\n }\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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), \"ERC20: decreased allowance below\")\n mstore(add(headStart, 96), \" zero\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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), \"ERC20: approve from the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n mstore(add(headStart, 96), \"ss\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"ERC20: insufficient allowance\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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), \"ERC20: transfer from the zero ad\")\n mstore(add(headStart, 96), \"dress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n mstore(add(headStart, 96), \"ess\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n mstore(add(headStart, 96), \"alance\")\n tail := add(headStart, 128)\n }\n}",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101a0565b6040516100c3919061069a565b60405180910390f35b6100df6100da36600461070b565b610232565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610735565b61024a565b604051601281526020016100c3565b6100df61013136600461070b565b61026e565b6100f3610144366004610771565b6001600160a01b031660009081526020819052604090205490565b6100b6610290565b6100df61017536600461070b565b61029f565b6100df61018836600461070b565b61031f565b6100f361019b366004610793565b61032d565b6060600380546101af906107c6565b80601f01602080910402602001604051908101604052809291908181526020018280546101db906107c6565b80156102285780601f106101fd57610100808354040283529160200191610228565b820191906000526020600020905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b600033610240818585610358565b5060019392505050565b60003361025885828561047c565b6102638585856104f6565b506001949350505050565b600033610240818585610281838361032d565b61028b9190610801565b610358565b6060600480546101af906107c6565b600033816102ad828661032d565b9050838110156103125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102638286868403610358565b6000336102408185856104f6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610309565b6001600160a01b03821661041b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610309565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610488848461032d565b905060001981146104f057818110156104e35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610309565b6104f08484848403610358565b50505050565b6001600160a01b03831661055a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610309565b6001600160a01b0382166105bc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610309565b6001600160a01b038316600090815260208190526040902054818110156106345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610309565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36104f0565b600060208083528351808285015260005b818110156106c7578581018301518582016040015282016106ab565b818111156106d9576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461070657600080fd5b919050565b6000806040838503121561071e57600080fd5b610727836106ef565b946020939093013593505050565b60008060006060848603121561074a57600080fd5b610753846106ef565b9250610761602085016106ef565b9150604084013590509250925092565b60006020828403121561078357600080fd5b61078c826106ef565b9392505050565b600080604083850312156107a657600080fd5b6107af836106ef565b91506107bd602084016106ef565b90509250929050565b600181811c908216806107da57607f821691505b602082108114156107fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561082257634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212206ed9beb4f0272a0b4a13776eea436147203c0459fe3f9a8a4d856e75da3d1bdd64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15F JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x1A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x69A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x232 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0x735 JUMP JUMPDEST PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x131 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x26E JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x144 CALLDATASIZE PUSH1 0x4 PUSH2 0x771 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xB6 PUSH2 0x290 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x29F JUMP JUMPDEST PUSH2 0xDF PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x31F JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x793 JUMP JUMPDEST PUSH2 0x32D JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C6 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 0x1DB SWAP1 PUSH2 0x7C6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x228 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1FD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x228 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 0x20B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x358 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x258 DUP6 DUP3 DUP6 PUSH2 0x47C JUMP JUMPDEST PUSH2 0x263 DUP6 DUP6 DUP6 PUSH2 0x4F6 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x281 DUP4 DUP4 PUSH2 0x32D JUMP JUMPDEST PUSH2 0x28B SWAP2 SWAP1 PUSH2 0x801 JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C6 JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x2AD DUP3 DUP7 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x312 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x263 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x358 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3BA 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 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x41B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x488 DUP5 DUP5 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x4F0 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x309 JUMP JUMPDEST PUSH2 0x4F0 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x358 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x55A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5BC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x634 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4F0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x6C7 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x6AB JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x6D9 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x706 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x71E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x727 DUP4 PUSH2 0x6EF 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 0x74A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x753 DUP5 PUSH2 0x6EF JUMP JUMPDEST SWAP3 POP PUSH2 0x761 PUSH1 0x20 DUP6 ADD PUSH2 0x6EF 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 0x783 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x78C DUP3 PUSH2 0x6EF JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7AF DUP4 PUSH2 0x6EF JUMP JUMPDEST SWAP2 POP PUSH2 0x7BD PUSH1 0x20 DUP5 ADD PUSH2 0x6EF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7DA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x7FB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x822 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH15 0xD9BEB4F0272A0B4A13776EEA436147 KECCAK256 EXTCODECOPY DIV MSIZE INVALID EXTCODEHASH SWAP11 DUP11 0x4D DUP6 PUSH15 0x75DA3D1BDD64736F6C634300080900 CALLER ",
"sourceMap": "1401:11610:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:4;;1211:22;1193:41;;1181:2;1166:18;4431:197:0;1053:187:4;3242:106:0;3329:12;;3242:106;;;1391:25:4;;;1379:2;1364:18;3242:106:0;1245:177:4;5190:286:0;;;;;;:::i;:::-;;:::i;3091:91::-;;;3173:2;1902:36:4;;1890:2;1875:18;3091:91:0;1760:184:4;5871:234:0;;;;;;:::i;:::-;;:::i;3406:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3506:18:0;3480:7;3506:18;;;;;;;;;;;;3406:125;2365:102;;;:::i;6592:427::-;;;;;;:::i;:::-;;:::i;3727:189::-;;;;;;:::i;:::-;;:::i;3974:149::-;;;;;;:::i;:::-;;:::i;2154:98::-;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:3;4568:32:0;719:10:3;4584:7:0;4593:6;4568:8;:32::i;:::-;-1:-1:-1;4617:4:0;;4431:197;-1:-1:-1;;;4431:197:0:o;5190:286::-;5317:4;719:10:3;5373:38:0;5389:4;719:10:3;5404:6:0;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;-1:-1:-1;5465:4:0;;5190:286;-1:-1:-1;;;;5190:286:0:o;5871:234::-;5959:4;719:10:3;6013:64:0;719:10:3;6029:7:0;6066:10;6038:25;719:10:3;6029:7:0;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;2365:102::-;2421:13;2453:7;2446:14;;;;;:::i;6592:427::-;6685:4;719:10:3;6685:4:0;6766:25;719:10:3;6783:7:0;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:0;;3222:2:4;6801:85:0;;;3204:21:4;3261:2;3241:18;;;3234:30;3300:34;3280:18;;;3273:62;-1:-1:-1;;;3351:18:4;;;3344:35;3396:19;;6801:85:0;;;;;;;;;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;3727:189::-;3806:4;719:10:3;3860:28:0;719:10:3;3877:2:0;3881:6;3860:9;:28::i;3974:149::-;-1:-1:-1;;;;;4089:18:0;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149::o;10504:370::-;-1:-1:-1;;;;;10635:19:0;;10627:68;;;;-1:-1:-1;;;10627:68:0;;3628:2:4;10627:68:0;;;3610:21:4;3667:2;3647:18;;;3640:30;3706:34;3686:18;;;3679:62;-1:-1:-1;;;3757:18:4;;;3750:34;3801:19;;10627:68:0;3426:400:4;10627:68:0;-1:-1:-1;;;;;10713:21:0;;10705:68;;;;-1:-1:-1;;;10705:68:0;;4033:2:4;10705:68:0;;;4015:21:4;4072:2;4052:18;;;4045:30;4111:34;4091:18;;;4084:62;-1:-1:-1;;;4162:18:4;;;4155:32;4204:19;;10705:68:0;3831:398:4;10705:68:0;-1:-1:-1;;;;;10784:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;1391:25:4;;;10835:32:0;;1364:18:4;10835:32:0;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;-1:-1:-1;;11351:16:0;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:0;;4436:2:4;11404:68:0;;;4418:21:4;4475:2;4455:18;;;4448:30;4514:31;4494:18;;;4487:59;4563:18;;11404:68:0;4234:353:4;11404:68:0;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11275:321;11155:441;;;:::o;7473:818::-;-1:-1:-1;;;;;7599:18:0;;7591:68;;;;-1:-1:-1;;;7591:68:0;;4794:2:4;7591:68:0;;;4776:21:4;4833:2;4813:18;;;4806:30;4872:34;4852:18;;;4845:62;-1:-1:-1;;;4923:18:4;;;4916:35;4968:19;;7591:68:0;4592:401:4;7591:68:0;-1:-1:-1;;;;;7677:16:0;;7669:64;;;;-1:-1:-1;;;7669:64:0;;5200:2:4;7669:64:0;;;5182:21:4;5239:2;5219:18;;;5212:30;5278:34;5258:18;;;5251:62;-1:-1:-1;;;5329:18:4;;;5322:33;5372:19;;7669:64:0;4998:399:4;7669:64:0;-1:-1:-1;;;;;7815:15:0;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:0;;5604:2:4;7840:72:0;;;5586:21:4;5643:2;5623:18;;;5616:30;5682:34;5662:18;;;5655:62;-1:-1:-1;;;5733:18:4;;;5726:36;5779:19;;7840:72:0;5402:402:4;7840:72:0;-1:-1:-1;;;;;7946:15:0;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;1391:25:4;;;8161:13:0;;8210:26;;1364:18:4;8210:26:0;;;;;;;8247:37;12180:121;14:597:4;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:4;574:15;-1:-1:-1;;570:29:4;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:4:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:4;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:4:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:4:o;2140:260::-;2208:6;2216;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;:::-;2298:39;;2356:38;2390:2;2379:9;2375:18;2356:38;:::i;:::-;2346:48;;2140:260;;;;;:::o;2405:380::-;2484:1;2480:12;;;;2527;;;2548:61;;2602:4;2594:6;2590:17;2580:27;;2548:61;2655:2;2647:6;2644:14;2624:18;2621:38;2618:161;;;2701:10;2696:3;2692:20;2689:1;2682:31;2736:4;2733:1;2726:15;2764:4;2761:1;2754:15;2618:161;;2405:380;;;:::o;2790:225::-;2830:3;2861:1;2857:6;2854:1;2851:13;2848:136;;;2906:10;2901:3;2897:20;2894:1;2887:31;2941:4;2938:1;2931:15;2969:4;2966:1;2959:15;2848:136;-1:-1:-1;3000:9:4;;2790:225::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "428200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "24624",
"balanceOf(address)": "2562",
"decimals()": "266",
"decreaseAllowance(address,uint256)": "27016",
"increaseAllowance(address,uint256)": "26978",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2326",
"transfer(address,uint256)": "51134",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_afterTokenTransfer(address,address,uint256)": "infinite",
"_approve(address,address,uint256)": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "infinite",
"_burn(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_spendAllowance(address,address,uint256)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"increaseAllowance(address,uint256)": "39509351",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"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": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "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}.",
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "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."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "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."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol": "ERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol": {
"keccak256": "0x4ffc0547c02ad22925310c585c0f166f8759e2648a09e9b489100c42f15dd98d",
"license": "MIT",
"urls": [
"bzz-raw://15f52f51413a9de1ff191e2f6367c62178e1df7806d7880fe857a98b0b66253d",
"dweb:/ipfs/QmaQG1fwfgUt5E9nu2cccFiV47B2V78MM1tCy1qB7n4MsH"
]
},
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol": {
"keccak256": "0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b",
"license": "MIT",
"urls": [
"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34",
"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr"
]
},
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.9+commit.e5eed63a"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC20 standard as defined in the EIP.",
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "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."
},
"approve(address,uint256)": {
"details": "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."
},
"balanceOf(address)": {
"details": "Returns the amount of tokens owned by `account`."
},
"totalSupply()": {
"details": "Returns the amount of tokens in existence."
},
"transfer(address,uint256)": {
"details": "Moves `amount` tokens from the caller's account to `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event."
},
"transferFrom(address,address,uint256)": {
"details": "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."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol": "IERC20"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol": {
"keccak256": "0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b",
"license": "MIT",
"urls": [
"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34",
"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr"
]
}
},
"version": 1
}
// 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.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);
}
This file has been truncated, but you can view the full file.
{
"id": "fc557f21f6721b56248893b1ff88694f",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.9",
"solcLongVersion": "0.8.9+commit.e5eed63a",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC20.sol\";\nimport \"./extensions/IERC20Metadata.sol\";\nimport \"../../utils/Context.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n * For a generic mechanism see {ERC20PresetMinterPauser}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n *\n * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}\n * functions have been added to mitigate the well-known issues around setting\n * allowances. See {IERC20-approve}.\n */\ncontract ERC20 is Context, IERC20, IERC20Metadata {\n mapping(address => uint256) private _balances;\n\n mapping(address => mapping(address => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * The default value of {decimals} is 18. To select a different value for\n * {decimals} you should overload it.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the value {ERC20} uses, unless this function is\n * overridden;\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual override returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual override returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual override returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `amount`.\n */\n function transfer(address to, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual override returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 amount) public virtual override returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, amount);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `amount`.\n */\n function transferFrom(\n address from,\n address to,\n uint256 amount\n ) public virtual override returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, amount);\n _transfer(from, to, amount);\n return true;\n }\n\n /**\n * @dev Atomically increases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, allowance(owner, spender) + addedValue);\n return true;\n }\n\n /**\n * @dev Atomically decreases the allowance granted to `spender` by the caller.\n *\n * This is an alternative to {approve} that can be used as a mitigation for\n * problems described in {IERC20-approve}.\n *\n * Emits an {Approval} event indicating the updated allowance.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `spender` must have allowance for the caller of at least\n * `subtractedValue`.\n */\n function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {\n address owner = _msgSender();\n uint256 currentAllowance = allowance(owner, spender);\n require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n unchecked {\n _approve(owner, spender, currentAllowance - subtractedValue);\n }\n\n return true;\n }\n\n /**\n * @dev Moves `amount` of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `from` must have a balance of at least `amount`.\n */\n function _transfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {\n require(from != address(0), \"ERC20: transfer from the zero address\");\n require(to != address(0), \"ERC20: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, amount);\n\n uint256 fromBalance = _balances[from];\n require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n unchecked {\n _balances[from] = fromBalance - amount;\n // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n // decrementing then incrementing.\n _balances[to] += amount;\n }\n\n emit Transfer(from, to, amount);\n\n _afterTokenTransfer(from, to, amount);\n }\n\n /** @dev Creates `amount` tokens and assigns them to `account`, increasing\n * the total supply.\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n */\n function _mint(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: mint to the zero address\");\n\n _beforeTokenTransfer(address(0), account, amount);\n\n _totalSupply += amount;\n unchecked {\n // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n _balances[account] += amount;\n }\n emit Transfer(address(0), account, amount);\n\n _afterTokenTransfer(address(0), account, amount);\n }\n\n /**\n * @dev Destroys `amount` tokens from `account`, reducing the\n * total supply.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * Requirements:\n *\n * - `account` cannot be the zero address.\n * - `account` must have at least `amount` tokens.\n */\n function _burn(address account, uint256 amount) internal virtual {\n require(account != address(0), \"ERC20: burn from the zero address\");\n\n _beforeTokenTransfer(account, address(0), amount);\n\n uint256 accountBalance = _balances[account];\n require(accountBalance >= amount, \"ERC20: burn amount exceeds balance\");\n unchecked {\n _balances[account] = accountBalance - amount;\n // Overflow not possible: amount <= accountBalance <= totalSupply.\n _totalSupply -= amount;\n }\n\n emit Transfer(account, address(0), amount);\n\n _afterTokenTransfer(account, address(0), amount);\n }\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n */\n function _approve(\n address owner,\n address spender,\n uint256 amount\n ) internal virtual {\n require(owner != address(0), \"ERC20: approve from the zero address\");\n require(spender != address(0), \"ERC20: approve to the zero address\");\n\n _allowances[owner][spender] = amount;\n emit Approval(owner, spender, amount);\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n *\n * Does not update the allowance amount in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Might emit an {Approval} event.\n */\n function _spendAllowance(\n address owner,\n address spender,\n uint256 amount\n ) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n unchecked {\n _approve(owner, spender, currentAllowance - amount);\n }\n }\n }\n\n /**\n * @dev Hook that is called before any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * will be transferred to `to`.\n * - when `from` is zero, `amount` tokens will be minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens\n * has been transferred to `to`.\n * - when `from` is zero, `amount` tokens have been minted for `to`.\n * - when `to` is zero, `amount` of ``from``'s tokens have been burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 amount\n ) internal virtual {}\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/extensions/IERC20Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n *\n * _Available since v4.1._\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"
},
".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 amount\n ) external returns (bool);\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@4.8.2/token/ERC20/ERC20.sol": {
"ERC20": {
"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": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "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}.",
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "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."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"constructor": {
"details": "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."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. 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`."
}
},
"version": 1
},
"evm": {
"assembly": " /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":1401:13011 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n mstore(0x40, 0x80)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":1976:2089 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 /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2042:2055 _name = name_ */\n dup2\n mload\n tag_6\n swap1\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2042:2047 _name */\n 0x03\n swap1\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2042:2055 _name = name_ */\n 0x20\n dup6\n add\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2065:2082 _symbol = symbol_ */\n dup1\n mload\n tag_8\n swap1\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2065:2072 _symbol */\n 0x04\n swap1\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2065:2082 _symbol = symbol_ */\n 0x20\n dup5\n add\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":1976:2089 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":1401:13011 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n jump(tag_23)\ntag_7:\n dup3\n dup1\n sload\n tag_10\n swap1\n tag_11\n jump\t// in\ntag_10:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_13\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_16)\ntag_13:\n dup3\n 0x1f\n lt\n tag_14\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_16)\ntag_14:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_16\n jumpi\n swap2\n dup3\n add\ntag_15:\n dup3\n dup2\n gt\n iszero\n tag_16\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_15)\ntag_16:\n pop\n tag_17\n swap3\n swap2\n pop\n tag_18\n jump\t// in\ntag_17:\n pop\n swap1\n jump\t// out\ntag_18:\ntag_19:\n dup1\n dup3\n gt\n iszero\n tag_17\n jumpi\n 0x00\n dup2\n sstore\n 0x01\n add\n jump(tag_19)\n /* \"#utility.yul\":14:141 */\ntag_21:\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:1031 */\ntag_22:\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_26\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_26:\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_28\n jumpi\n /* \"#utility.yul\":369:387 */\n tag_28\n tag_21\n jump\t// in\ntag_28:\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_30\n jumpi\n /* \"#utility.yul\":588:606 */\n tag_30\n tag_21\n jump\t// in\ntag_30:\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_31\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_31:\n /* \"#utility.yul\":769:770 */\n 0x00\n /* \"#utility.yul\":760:770 */\n swap2\n pop\n /* \"#utility.yul\":779:912 */\ntag_32:\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_34\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_32)\ntag_34:\n /* \"#utility.yul\":930:932 */\n dup4\n /* \"#utility.yul\":927:928 */\n dup3\n /* \"#utility.yul\":924:933 */\n gt\n /* \"#utility.yul\":921:1001 */\n iszero\n tag_35\n jumpi\n /* \"#utility.yul\":989:990 */\n 0x00\n /* \"#utility.yul\":984:986 */\n dup4\n /* \"#utility.yul\":979:981 */\n dup6\n /* \"#utility.yul\":971:977 */\n dup4\n /* \"#utility.yul\":967:982 */\n add\n /* \"#utility.yul\":963:987 */\n add\n /* \"#utility.yul\":956:991 */\n mstore\n /* \"#utility.yul\":921:1001 */\ntag_35:\n /* \"#utility.yul\":1019:1025 */\n swap7\n /* \"#utility.yul\":146:1031 */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1036:1598 */\ntag_3:\n /* \"#utility.yul\":1135:1141 */\n 0x00\n /* \"#utility.yul\":1143:1149 */\n dup1\n /* \"#utility.yul\":1196:1198 */\n 0x40\n /* \"#utility.yul\":1184:1193 */\n dup4\n /* \"#utility.yul\":1175:1182 */\n dup6\n /* \"#utility.yul\":1171:1194 */\n sub\n /* \"#utility.yul\":1167:1199 */\n slt\n /* \"#utility.yul\":1164:1216 */\n iszero\n tag_37\n jumpi\n /* \"#utility.yul\":1212:1213 */\n 0x00\n /* \"#utility.yul\":1209:1210 */\n dup1\n /* \"#utility.yul\":1202:1214 */\n revert\n /* \"#utility.yul\":1164:1216 */\ntag_37:\n /* \"#utility.yul\":1239:1255 */\n dup3\n mload\n sub(shl(0x40, 0x01), 0x01)\n /* \"#utility.yul\":1304:1318 */\n dup1\n dup3\n gt\n /* \"#utility.yul\":1301:1335 */\n iszero\n tag_38\n jumpi\n /* \"#utility.yul\":1331:1332 */\n 0x00\n /* \"#utility.yul\":1328:1329 */\n dup1\n /* \"#utility.yul\":1321:1333 */\n revert\n /* \"#utility.yul\":1301:1335 */\ntag_38:\n /* \"#utility.yul\":1354:1415 */\n tag_39\n /* \"#utility.yul\":1407:1414 */\n dup7\n /* \"#utility.yul\":1398:1404 */\n dup4\n /* \"#utility.yul\":1387:1396 */\n dup8\n /* \"#utility.yul\":1383:1405 */\n add\n /* \"#utility.yul\":1354:1415 */\n tag_22\n jump\t// in\ntag_39:\n /* \"#utility.yul\":1344:1415 */\n swap4\n pop\n /* \"#utility.yul\":1461:1463 */\n 0x20\n /* \"#utility.yul\":1450:1459 */\n dup6\n /* \"#utility.yul\":1446:1464 */\n add\n /* \"#utility.yul\":1440:1465 */\n mload\n /* \"#utility.yul\":1424:1465 */\n swap2\n pop\n /* \"#utility.yul\":1490:1492 */\n dup1\n /* \"#utility.yul\":1480:1488 */\n dup3\n /* \"#utility.yul\":1477:1493 */\n gt\n /* \"#utility.yul\":1474:1510 */\n iszero\n tag_40\n jumpi\n /* \"#utility.yul\":1506:1507 */\n 0x00\n /* \"#utility.yul\":1503:1504 */\n dup1\n /* \"#utility.yul\":1496:1508 */\n revert\n /* \"#utility.yul\":1474:1510 */\ntag_40:\n pop\n /* \"#utility.yul\":1529:1592 */\n tag_41\n /* \"#utility.yul\":1584:1591 */\n dup6\n /* \"#utility.yul\":1573:1581 */\n dup3\n /* \"#utility.yul\":1562:1571 */\n dup7\n /* \"#utility.yul\":1558:1582 */\n add\n /* \"#utility.yul\":1529:1592 */\n tag_22\n jump\t// in\ntag_41:\n /* \"#utility.yul\":1519:1592 */\n swap2\n pop\n pop\n /* \"#utility.yul\":1036:1598 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1603:1983 */\ntag_11:\n /* \"#utility.yul\":1682:1683 */\n 0x01\n /* \"#utility.yul\":1678:1690 */\n dup2\n dup2\n shr\n swap1\n /* \"#utility.yul\":1725:1737 */\n dup3\n and\n dup1\n /* \"#utility.yul\":1746:1807 */\n tag_43\n jumpi\n /* \"#utility.yul\":1800:1804 */\n 0x7f\n /* \"#utility.yul\":1792:1798 */\n dup3\n /* \"#utility.yul\":1788:1805 */\n and\n /* \"#utility.yul\":1778:1805 */\n swap2\n pop\n /* \"#utility.yul\":1746:1807 */\ntag_43:\n /* \"#utility.yul\":1853:1855 */\n 0x20\n /* \"#utility.yul\":1845:1851 */\n dup3\n /* \"#utility.yul\":1842:1856 */\n lt\n /* \"#utility.yul\":1822:1840 */\n dup2\n /* \"#utility.yul\":1819:1857 */\n eq\n /* \"#utility.yul\":1816:1977 */\n iszero\n tag_44\n jumpi\n /* \"#utility.yul\":1899:1909 */\n 0x4e487b71\n /* \"#utility.yul\":1894:1897 */\n 0xe0\n /* \"#utility.yul\":1890:1910 */\n shl\n /* \"#utility.yul\":1887:1888 */\n 0x00\n /* \"#utility.yul\":1880:1911 */\n mstore\n /* \"#utility.yul\":1934:1938 */\n 0x22\n /* \"#utility.yul\":1931:1932 */\n 0x04\n /* \"#utility.yul\":1924:1939 */\n mstore\n /* \"#utility.yul\":1962:1966 */\n 0x24\n /* \"#utility.yul\":1959:1960 */\n 0x00\n /* \"#utility.yul\":1952:1967 */\n revert\n /* \"#utility.yul\":1816:1977 */\ntag_44:\n pop\n /* \"#utility.yul\":1603:1983 */\n swap2\n swap1\n pop\n jump\t// out\ntag_23:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":1401:13011 contract ERC20 is Context, IERC20, IERC20Metadata {... */\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":1401:13011 contract ERC20 is Context, IERC20, IERC20Metadata {... */\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 0x39509351\n gt\n tag_14\n jumpi\n dup1\n 0x39509351\n eq\n tag_8\n jumpi\n dup1\n 0x70a08231\n eq\n tag_9\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_10\n jumpi\n dup1\n 0xa457c2d7\n eq\n tag_11\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_12\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_13\n jumpi\n 0x00\n dup1\n revert\n tag_14:\n dup1\n 0x06fdde03\n eq\n tag_3\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_4\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_5\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_6\n jumpi\n dup1\n 0x313ce567\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n tag_3:\n tag_15\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_4:\n tag_19\n tag_20\n calldatasize\n 0x04\n tag_21\n jump\t// in\n tag_20:\n tag_22\n jump\t// in\n tag_19:\n mload(0x40)\n /* \"#utility.yul\":1218:1232 */\n swap1\n iszero\n /* \"#utility.yul\":1211:1233 */\n iszero\n /* \"#utility.yul\":1193:1234 */\n dup2\n mstore\n /* \"#utility.yul\":1181:1183 */\n 0x20\n /* \"#utility.yul\":1166:1184 */\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_17\n /* \"#utility.yul\":1053:1240 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n tag_5:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3329:3341 _totalSupply */\n sload(0x02)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n tag_25:\n mload(0x40)\n /* \"#utility.yul\":1391:1416 */\n swap1\n dup2\n mstore\n /* \"#utility.yul\":1379:1381 */\n 0x20\n /* \"#utility.yul\":1364:1382 */\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3242:3348 function totalSupply() public view virtual override returns (uint256) {... */\n tag_17\n /* \"#utility.yul\":1245:1422 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5190:5476 function transferFrom(... */\n tag_6:\n tag_19\n tag_30\n calldatasize\n 0x04\n tag_31\n jump\t// in\n tag_30:\n tag_32\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3091:3182 function decimals() public view virtual override returns (uint8) {... */\n tag_7:\n mload(0x40)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3173:3175 18 */\n 0x12\n /* \"#utility.yul\":1902:1938 */\n dup2\n mstore\n /* \"#utility.yul\":1890:1892 */\n 0x20\n /* \"#utility.yul\":1875:1893 */\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3091:3182 function decimals() public view virtual override returns (uint8) {... */\n tag_17\n /* \"#utility.yul\":1760:1944 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5871:6105 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_8:\n tag_19\n tag_39\n calldatasize\n 0x04\n tag_21\n jump\t// in\n tag_39:\n tag_40\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3406:3531 function balanceOf(address account) public view virtual override returns (uint256) {... */\n tag_9:\n tag_25\n tag_43\n calldatasize\n 0x04\n tag_44\n jump\t// in\n tag_43:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3506:3524 _balances[account] */\n and\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3480:3487 uint256 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3506:3524 _balances[account] */\n swap1\n dup2\n mstore\n 0x20\n dup2\n swap1\n mstore\n 0x40\n swap1\n keccak256\n sload\n swap1\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3406:3531 function balanceOf(address account) public view virtual override returns (uint256) {... */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2365:2467 function symbol() public view virtual override returns (string memory) {... */\n tag_10:\n tag_15\n tag_48\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6592:7019 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_11:\n tag_19\n tag_51\n calldatasize\n 0x04\n tag_21\n jump\t// in\n tag_51:\n tag_52\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3727:3916 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_12:\n tag_19\n tag_55\n calldatasize\n 0x04\n tag_21\n jump\t// in\n tag_55:\n tag_56\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_13:\n tag_25\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 /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n tag_16:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2208:2221 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2240:2245 _name */\n 0x03\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2233:2245 return _name */\n dup1\n sload\n tag_64\n swap1\n tag_65\n jump\t// in\n tag_64:\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_66\n swap1\n tag_65\n jump\t// in\n tag_66:\n dup1\n iszero\n tag_67\n jumpi\n dup1\n 0x1f\n lt\n tag_68\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_67)\n tag_68:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_69:\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_69\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_67:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2154:2252 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n tag_22:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4514:4518 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4568:4600 _approve(owner, spender, amount) */\n tag_73\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4584:4591 spender */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4593:4599 amount */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4568:4576 _approve */\n tag_74\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4568:4600 _approve(owner, spender, amount) */\n jump\t// in\n tag_73:\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4617:4621 true */\n 0x01\n swap4\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4431:4628 function approve(address spender, uint256 amount) public virtual override returns (bool) {... */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5190:5476 function transferFrom(... */\n tag_32:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5317:5321 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5373:5411 _spendAllowance(from, spender, amount) */\n tag_78\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5389:5393 from */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5404:5410 amount */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5373:5388 _spendAllowance */\n tag_79\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5373:5411 _spendAllowance(from, spender, amount) */\n jump\t// in\n tag_78:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5421:5448 _transfer(from, to, amount) */\n tag_80\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5431:5435 from */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5437:5439 to */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5441:5447 amount */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5421:5430 _transfer */\n tag_81\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5421:5448 _transfer(from, to, amount) */\n jump\t// in\n tag_80:\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5465:5469 true */\n 0x01\n swap5\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5190:5476 function transferFrom(... */\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5871:6105 function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {... */\n tag_40:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":5959:5963 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6013:6077 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n tag_73\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6029:6036 spender */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6066:6076 addedValue */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6038:6063 allowance(owner, spender) */\n tag_86\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6029:6036 spender */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6038:6047 allowance */\n tag_61\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6038:6063 allowance(owner, spender) */\n jump\t// in\n tag_86:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6038:6076 allowance(owner, spender) + addedValue */\n tag_87\n swap2\n swap1\n tag_88\n jump\t// in\n tag_87:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6013:6021 _approve */\n tag_74\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6013:6077 _approve(owner, spender, allowance(owner, spender) + addedValue) */\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2365:2467 function symbol() public view virtual override returns (string memory) {... */\n tag_48:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2421:2434 string memory */\n 0x60\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2453:2460 _symbol */\n 0x04\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":2446:2460 return _symbol */\n dup1\n sload\n tag_64\n swap1\n tag_65\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6592:7019 function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {... */\n tag_52:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6685:6689 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6685:6689 bool */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6766:6791 allowance(owner, spender) */\n tag_98\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6783:6790 spender */\n dup7\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6766:6775 allowance */\n tag_61\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6766:6791 allowance(owner, spender) */\n jump\t// in\n tag_98:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6739:6791 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6829:6844 subtractedValue */\n dup4\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6809:6825 currentAllowance */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6809:6844 currentAllowance >= subtractedValue */\n lt\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6801:6886 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_99\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":3222:3224 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6801:6886 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":3204:3225 */\n mstore\n /* \"#utility.yul\":3261:3263 */\n 0x25\n /* \"#utility.yul\":3241:3259 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":3234:3264 */\n mstore\n /* \"#utility.yul\":3300:3334 */\n 0x45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77\n /* \"#utility.yul\":3280:3298 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":3273:3335 */\n mstore\n shl(0xd8, 0x207a65726f)\n /* \"#utility.yul\":3351:3369 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":3344:3379 */\n mstore\n /* \"#utility.yul\":3396:3415 */\n 0x84\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6801:6886 require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\") */\n tag_100:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_99:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6920:6980 _approve(owner, spender, currentAllowance - subtractedValue) */\n tag_80\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6929:6934 owner */\n dup3\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6936:6943 spender */\n dup7\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6964:6979 subtractedValue */\n dup7\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6945:6961 currentAllowance */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6945:6979 currentAllowance - subtractedValue */\n sub\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6920:6928 _approve */\n tag_74\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":6920:6980 _approve(owner, spender, currentAllowance - subtractedValue) */\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3727:3916 function transfer(address to, uint256 amount) public virtual override returns (bool) {... */\n tag_56:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3806:3810 bool */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3860:3888 _transfer(owner, to, amount) */\n tag_73\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/utils/Context.sol\":719:729 msg.sender */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3877:3879 to */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3881:3887 amount */\n dup6\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3860:3869 _transfer */\n tag_81\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3860:3888 _transfer(owner, to, amount) */\n jump\t// in\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n tag_61:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4089:4107 _allowances[owner] */\n swap2\n dup3\n and\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4063:4070 uint256 */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4089:4107 _allowances[owner] */\n swap1\n dup2\n mstore\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4089:4100 _allowances */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4089:4107 _allowances[owner] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":4089:4116 _allowances[owner][spender] */\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 swap1\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":3974:4123 function allowance(address owner, address spender) public view virtual override returns (uint256) {... */\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10504:10874 function _approve(... */\n tag_74:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10635:10654 owner != address(0) */\n dup4\n and\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10627:10695 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_109\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":3628:3630 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10627:10695 require(owner != address(0), \"ERC20: approve from the zero address\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":3610:3631 */\n mstore\n /* \"#utility.yul\":3667:3669 */\n 0x24\n /* \"#utility.yul\":3647:3665 */\n dup1\n dup3\n add\n /* \"#utility.yul\":3640:3670 */\n mstore\n /* \"#utility.yul\":3706:3740 */\n 0x45524332303a20617070726f76652066726f6d20746865207a65726f20616464\n /* \"#utility.yul\":3686:3704 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":3679:3741 */\n mstore\n shl(0xe0, 0x72657373)\n /* \"#utility.yul\":3757:3775 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":3750:3784 */\n mstore\n /* \"#utility.yul\":3801:3820 */\n 0x84\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10627:10695 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_100\n /* \"#utility.yul\":3426:3826 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10627:10695 require(owner != address(0), \"ERC20: approve from the zero address\") */\n tag_109:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10713:10734 spender != address(0) */\n dup3\n and\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10705:10773 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_112\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":4033:4035 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10705:10773 require(spender != address(0), \"ERC20: approve to the zero address\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":4015:4036 */\n mstore\n /* \"#utility.yul\":4072:4074 */\n 0x22\n /* \"#utility.yul\":4052:4070 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":4045:4075 */\n mstore\n /* \"#utility.yul\":4111:4145 */\n 0x45524332303a20617070726f766520746f20746865207a65726f206164647265\n /* \"#utility.yul\":4091:4109 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":4084:4146 */\n mstore\n shl(0xf0, 0x7373)\n /* \"#utility.yul\":4162:4180 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":4155:4187 */\n mstore\n /* \"#utility.yul\":4204:4223 */\n 0x84\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10705:10773 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_100\n /* \"#utility.yul\":3831:4229 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10705:10773 require(spender != address(0), \"ERC20: approve to the zero address\") */\n tag_112:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10784:10802 _allowances[owner] */\n dup4\n dup2\n and\n 0x00\n dup2\n dup2\n mstore\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10784:10795 _allowances */\n 0x01\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10784:10802 _allowances[owner] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10784:10811 _allowances[owner][spender] */\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 /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10784:10820 _allowances[owner][spender] = amount */\n dup6\n swap1\n sstore\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10835:10867 Approval(owner, spender, amount) */\n swap1\n mload\n /* \"#utility.yul\":1391:1416 */\n dup5\n dup2\n mstore\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10835:10867 Approval(owner, spender, amount) */\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n swap2\n /* \"#utility.yul\":1364:1382 */\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10835:10867 Approval(owner, spender, amount) */\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":10504:10874 function _approve(... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11155:11596 function _spendAllowance(... */\n tag_79:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11285:11309 uint256 currentAllowance */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11312:11337 allowance(owner, spender) */\n tag_117\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11322:11327 owner */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11329:11336 spender */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11312:11321 allowance */\n tag_61\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11312:11337 allowance(owner, spender) */\n jump\t// in\n tag_117:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11285:11337 uint256 currentAllowance = allowance(owner, spender) */\n swap1\n pop\n not(0x00)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11351:11367 currentAllowance */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11351:11388 currentAllowance != type(uint256).max */\n eq\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11347:11590 if (currentAllowance != type(uint256).max) {... */\n tag_122\n jumpi\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11432:11438 amount */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11412:11428 currentAllowance */\n dup2\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11412:11438 currentAllowance >= amount */\n lt\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11404:11472 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_119\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":4436:4438 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11404:11472 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":4418:4439 */\n mstore\n /* \"#utility.yul\":4475:4477 */\n 0x1d\n /* \"#utility.yul\":4455:4473 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":4448:4478 */\n mstore\n /* \"#utility.yul\":4514:4545 */\n 0x45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000\n /* \"#utility.yul\":4494:4512 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":4487:4546 */\n mstore\n /* \"#utility.yul\":4563:4581 */\n 0x64\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11404:11472 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_100\n /* \"#utility.yul\":4234:4587 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11404:11472 require(currentAllowance >= amount, \"ERC20: insufficient allowance\") */\n tag_119:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11514:11565 _approve(owner, spender, currentAllowance - amount) */\n tag_122\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11523:11528 owner */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11530:11537 spender */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11558:11564 amount */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11539:11555 currentAllowance */\n dup5\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11539:11564 currentAllowance - amount */\n sub\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11514:11522 _approve */\n tag_74\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11514:11565 _approve(owner, spender, currentAllowance - amount) */\n jump\t// in\n tag_122:\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11275:11596 {... */\n pop\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":11155:11596 function _spendAllowance(... */\n pop\n pop\n pop\n jump\t// out\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7473:8291 function _transfer(... */\n tag_81:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7599:7617 from != address(0) */\n dup4\n and\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7591:7659 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_124\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":4794:4796 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7591:7659 require(from != address(0), \"ERC20: transfer from the zero address\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":4776:4797 */\n mstore\n /* \"#utility.yul\":4833:4835 */\n 0x25\n /* \"#utility.yul\":4813:4831 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":4806:4836 */\n mstore\n /* \"#utility.yul\":4872:4906 */\n 0x45524332303a207472616e736665722066726f6d20746865207a65726f206164\n /* \"#utility.yul\":4852:4870 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":4845:4907 */\n mstore\n shl(0xd8, 0x6472657373)\n /* \"#utility.yul\":4923:4941 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":4916:4951 */\n mstore\n /* \"#utility.yul\":4968:4987 */\n 0x84\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7591:7659 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_100\n /* \"#utility.yul\":4592:4993 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7591:7659 require(from != address(0), \"ERC20: transfer from the zero address\") */\n tag_124:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7677:7693 to != address(0) */\n dup3\n and\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7669:7733 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_127\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":5200:5202 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7669:7733 require(to != address(0), \"ERC20: transfer to the zero address\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":5182:5203 */\n mstore\n /* \"#utility.yul\":5239:5241 */\n 0x23\n /* \"#utility.yul\":5219:5237 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":5212:5242 */\n mstore\n /* \"#utility.yul\":5278:5312 */\n 0x45524332303a207472616e7366657220746f20746865207a65726f2061646472\n /* \"#utility.yul\":5258:5276 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":5251:5313 */\n mstore\n shl(0xe8, 0x657373)\n /* \"#utility.yul\":5329:5347 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":5322:5355 */\n mstore\n /* \"#utility.yul\":5372:5391 */\n 0x84\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7669:7733 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_100\n /* \"#utility.yul\":4998:5397 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7669:7733 require(to != address(0), \"ERC20: transfer to the zero address\") */\n tag_127:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7815:7830 _balances[from] */\n dup4\n and\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7793:7812 uint256 fromBalance */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7815:7830 _balances[from] */\n swap1\n dup2\n mstore\n 0x20\n dup2\n swap1\n mstore\n 0x40\n swap1\n keccak256\n sload\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7848:7869 fromBalance >= amount */\n dup2\n dup2\n lt\n iszero\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7840:7912 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_132\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":5604:5606 */\n 0x20\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7840:7912 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":5586:5607 */\n mstore\n /* \"#utility.yul\":5643:5645 */\n 0x26\n /* \"#utility.yul\":5623:5641 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":5616:5646 */\n mstore\n /* \"#utility.yul\":5682:5716 */\n 0x45524332303a207472616e7366657220616d6f756e7420657863656564732062\n /* \"#utility.yul\":5662:5680 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":5655:5717 */\n mstore\n shl(0xd0, 0x616c616e6365)\n /* \"#utility.yul\":5733:5751 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":5726:5762 */\n mstore\n /* \"#utility.yul\":5779:5798 */\n 0x84\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7840:7912 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_100\n /* \"#utility.yul\":5402:5804 */\n jump\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7840:7912 require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\") */\n tag_132:\n sub(shl(0xa0, 0x01), 0x01)\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7946:7961 _balances[from] */\n dup5\n dup2\n and\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7946:7955 _balances */\n 0x00\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7946:7961 _balances[from] */\n dup2\n dup2\n mstore\n 0x20\n dup2\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7964:7984 fromBalance - amount */\n dup8\n dup8\n sub\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":7946:7984 _balances[from] = fromBalance - amount */\n swap1\n sstore\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":8161:8174 _balances[to] */\n swap4\n dup8\n and\n dup1\n dup4\n mstore\n swap2\n dup5\n swap1\n keccak256\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":8161:8184 _balances[to] += amount */\n dup1\n sload\n dup8\n add\n swap1\n sstore\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":8210:8236 Transfer(from, to, amount) */\n swap3\n mload\n /* \"#utility.yul\":1391:1416 */\n dup6\n dup2\n mstore\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":8161:8174 _balances[to] */\n swap1\n swap3\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":8210:8236 Transfer(from, to, amount) */\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n swap2\n /* \"#utility.yul\":1364:1382 */\n add\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":8210:8236 Transfer(from, to, amount) */\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":8247:8284 _afterTokenTransfer(from, to, amount) */\n tag_122\n /* \".deps/npm/@openzeppelin/contracts@4.8.2/token/ERC20/ERC20.sol\":12180:12301 function _beforeTokenTransfer(... */\n jump\n /* \"#utility.yul\":14:611 */\n tag_18:\n /* \"#utility.yul\":126:130 */\n 0x00\n /* \"#utility.yul\":155:157 */\n 0x20\n /* \"#utility.yul\":184:186 */\n dup1\n /* \"#utility.yul\":173:182 */\n dup4\n /* \"#utility.yul\":166:187 */\n mstore\n /* \"#utility.yul\":216:222 */\n dup4\n /* \"#utility.yul\":210:223 */\n mload\n /* \"#utility.yul\":259:265 */\n dup1\n /* \"#utility.yul\":254:256 */\n dup3\n /* \"#utility.yul\":243:252 */\n dup6\n /* \"#utility.yul\":239:257 */\n add\n /* \"#utility.yul\":232:266 */\n mstore\n /* \"#utility.yul\":284:285 */\n 0x00\n /* \"#utility.yul\":294:434 */\n tag_143:\n /* \"#utility.yul\":308:314 */\n dup2\n /* \"#utility.yul\":305:306 */\n dup2\n /* \"#utility.yul\":302:315 */\n lt\n /* \"#utility.yul\":294:434 */\n iszero\n tag_145\n jumpi\n /* \"#utility.yul\":403:417 */\n dup6\n dup2\n add\n /* \"#utility.yul\":399:422 */\n dup4\n add\n /* \"#utility.yul\":393:423 */\n mload\n /* \"#utility.yul\":369:386 */\n dup6\n dup3\n add\n /* \"#utility.yul\":388:390 */\n 0x40\n /* \"#utility.yul\":365:391 */\n add\n /* \"#utility.yul\":358:424 */\n mstore\n /* \"#utility.yul\":323:333 */\n dup3\n add\n /* \"#utility.yul\":294:434 */\n jump(tag_143)\n tag_145:\n /* \"#utility.yul\":452:458 */\n dup2\n /* \"#utility.yul\":449:450 */\n dup2\n /* \"#utility.yul\":446:459 */\n gt\n /* \"#utility.yul\":443:534 */\n iszero\n tag_146\n jumpi\n /* \"#utility.yul\":522:523 */\n 0x00\n /* \"#utility.yul\":517:519 */\n 0x40\n /* \"#utility.yul\":508:514 */\n dup4\n /* \"#utility.yul\":497:506 */\n dup8\n /* \"#utility.yul\":493:515 */\n add\n /* \"#utility.yul\":489:520 */\n add\n /* \"#utility.yul\":482:524 */\n mstore\n /* \"#utility.yul\":443:534 */\n tag_146:\n pop\n /* \"#utility.yul\":595:597 */\n 0x1f\n /* \"#utility.yul\":574:589 */\n add\n not(0x1f)\n /* \"#utility.yul\":570:599 */\n and\n /* \"#utility.yul\":555:600 */\n swap3\n swap1\n swap3\n add\n /* \"#utility.yul\":602:604 */\n 0x40\n /* \"#utility.yul\":551:605 */\n add\n swap4\n /* \"#utility.yul\":14:611 */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":616:789 */\n tag_140:\n /* \"#utility.yul\":684:704 */\n dup1\n calldataload\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":733:764 */\n dup2\n and\n /* \"#utility.yul\":723:765 */\n dup2\n eq\n /* \"#utility.yul\":713:783 */\n tag_148\n jumpi\n /* \"#utility.yul\":779:780 */\n 0x00\n /* \"#utility.yul\":776:777 */\n dup1\n /* \"#utility.yul\":769:781 */\n revert\n /* \"#utility.yul\":713:783 */\n tag_148:\n /* \"#utility.yul\":616:789 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":794:1048 */\n tag_21:\n /* \"#utility.yul\":862:868 */\n 0x00\n /* \"#utility.yul\":870:876 */\n dup1\n /* \"#utility.yul\":923:925 */\n 0x40\n /* \"#utility.yul\":911:920 */\n dup4\n /* \"#utility.yul\":902:909 */\n dup6\n /* \"#utility.yul\":898:921 */\n sub\n /* \"#utility.yul\":894:926 */\n slt\n /* \"#utility.yul\":891:943 */\n iszero\n tag_150\n jumpi\n /* \"#utility.yul\":939:940 */\n 0x00\n /* \"#utility.yul\":936:937 */\n dup1\n /* \"#utility.yul\":929:941 */\n revert\n /* \"#utility.yul\":891:943 */\n tag_150:\n /* \"#utility.yul\":962:991 */\n tag_151\n /* \"#utility.yul\":981:990 */\n dup4\n /* \"#utility.yul\":962:991 */\n tag_140\n jump\t// in\n tag_151:\n /* \"#utility.yul\":952:991 */\n swap5\n /* \"#utility.yul\":1038:1040 */\n 0x20\n /* \"#utility.yul\":1023:1041 */\n swap4\n swap1\n swap4\n add\n /* \"#utility.yul\":1010:1042 */\n calldataload\n swap4\n pop\n pop\n pop\n /* \"#utility.yul\":794:1048 */\n jump\t// out\n /* \"#utility.yul\":1427:1755 */\n tag_31:\n /* \"#utility.yul\":1504:1510 */\n 0x00\n /* \"#utility.yul\":1512:1518 */\n dup1\n /* \"#utility.yul\":1520:1526 */\n 0x00\n /* \"#utility.yul\":1573:1575 */\n 0x60\n /* \"#utility.yul\":1561:1570 */\n dup5\n /* \"#utility.yul\":1552:1559 */\n dup7\n /* \"#utility.yul\":1548:1571 */\n sub\n /* \"#utility.yul\":1544:1576 */\n slt\n /* \"#utility.yul\":1541:1593 */\n iszero\n tag_155\n jumpi\n /* \"#utility.yul\":1589:1590 */\n 0x00\n /* \"#utility.yul\":1586:1587 */\n dup1\n /* \"#utility.yul\":1579:1591 */\n revert\n /* \"#utility.yul\":1541:1593 */\n tag_155:\n /* \"#utility.yul\":1612:1641 */\n tag_156\n /* \"#utility.yul\":1631:1640 */\n dup5\n /* \"#utility.yul\":1612:1641 */\n tag_140\n jump\t// in\n tag_156:\n /* \"#utility.yul\":1602:1641 */\n swap3\n pop\n /* \"#utility.yul\":1660:1698 */\n tag_157\n /* \"#utility.yul\":1694:1696 */\n 0x20\n /* \"#utility.yul\":1683:1692 */\n dup6\n /* \"#utility.yul\":1679:1697 */\n add\n /* \"#utility.yul\":1660:1698 */\n tag_140\n jump\t// in\n tag_157:\n /* \"#utility.yul\":1650:1698 */\n swap2\n pop\n /* \"#utility.yul\":1745:1747 */\n 0x40\n /* \"#utility.yul\":1734:1743 */\n dup5\n /* \"#utility.yul\":1730:1748 */\n add\n /* \"#utility.yul\":1717:1749 */\n calldataload\n /* \"#utility.yul\":1707:1749 */\n swap1\n pop\n /* \"#utility.yul\":1427:1755 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":1949:2135 */\n tag_44:\n /* \"#utility.yul\":2008:2014 */\n 0x00\n /* \"#utility.yul\":2061:2063 */\n 0x20\n /* \"#utility.yul\":2049:2058 */\n dup3\n /* \"#utility.yul\":2040:2047 */\n dup5\n /* \"#utility.yul\":2036:2059 */\n sub\n /* \"#utility.yul\":2032:2064 */\n slt\n /* \"#utility.yul\":2029:2081 */\n iszero\n tag_160\n jumpi\n /* \"#utility.yul\":2077:2078 */\n 0x00\n /* \"#utility.yul\":2074:2075 */\n dup1\n /* \"#utility.yul\":2067:2079 */\n revert\n /* \"#utility.yul\":2029:2081 */\n tag_160:\n /* \"#utility.yul\":2100:2129 */\n tag_161\n /* \"#utility.yul\":2119:2128 */\n dup3\n /* \"#utility.yul\":2100:2129 */\n tag_140\n jump\t// in\n tag_161:\n /* \"#utility.yul\":2090:2129 */\n swap4\n /* \"#utility.yul\":1949:2135 */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2140:2400 */\n tag_60:\n /* \"#utility.yul\":2208:2214 */\n 0x00\n /* \"#utility.yul\":2216:2222 */\n dup1\n /* \"#utility.yul\":2269:2271 */\n 0x40\n /* \"#utility.yul\":2257:2266 */\n dup4\n /* \"#utility.yul\":2248:2255 */\n dup6\n /* \"#utility.yul\":2244:2267 */\n sub\n /* \"#utility.yul\":2240:2272 */\n slt\n /* \"#utility.yul\":2237:2289 */\n iszero\n tag_163\n jumpi\n /* \"#utility.yul\":2285:2286 */\n 0x00\n /* \"#utility.yul\":2282:2283 */\n dup1\n /* \"#utility.yul\":2275:2287 */\n revert\n /* \"#utility.yul\":2237:2289 */\n tag_163:\n /* \"#utility.yul\":2308:2337 */\n tag_164\n /* \"#utility.yul\":2327:2336 */\n dup4\n /* \"#utility.yul\":2308:2337 */\n tag_140\n jump\t// in\n tag_164:\n /* \"#utility.yul\":2298:2337 */\n swap2\n pop\n /* \"#utility.yul\":2356:2394 */\n tag_165\n /* \"#utility.yul\":2390:2392 */\n 0x20\n /* \"#utility.yul\":2379:2388 */\n dup5\n /* \"#utility.yul\":2375:2393 */\n add\n /* \"#utility.yul\":2356:2394 */\n tag_140\n jump\t// in\n tag_165:\n /* \"#utility.yul\":2346:2394 */\n swap1\n pop\n /* \"#utility.yul\":2140:2400 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2405:2785 */\n tag_65:\n /* \"#utility.yul\":2484:2485 */\n 0x01\n /* \"#utility.yul\":2480:2492 */\n dup2\n dup2\n shr\n swap1\n /* \"#utility.yul\":2527:2539 */\n dup3\n and\n dup1\n /* \"#utility.yul\":2548:2609 */\n tag_167\n jumpi\n /* \"#utility.yul\":2602:2606 */\n 0x7f\n /* \"#utility.yul\":2594:2600 */\n dup3\n /* \"#utility.yul\":2590:2607 */\n and\n /* \"#utility.yul\":2580:2607 */\n swap2\n pop\n /* \"#utility.yul\":2548:2609 */\n tag_167:\n /* \"#utility.yul\":2655:2657 */\n 0x20\n /* \"#utility.yul\":2647:2653 */\n dup3\n /* \"#utility.yul\":2644:2658 */\n lt\n /* \"#utility.yul\":2624:2642 */\n dup2\n /* \"#utility.yul\":2621:2659 */\n eq\n /* \"#utility.yul\":2618:2779 */\n iszero\n tag_168\n jumpi\n /* \"#utility.yul\":2701:2711 */\n 0x4e487b71\n /* \"#utility.yul\":2696:2699 */\n 0xe0\n /* \"#utility.yul\":2692:2712 */\n shl\n /* \"#utility.yul\":2689:2690 */\n 0x00\n /* \"#utility.yul\":2682:2713 */\n mstore\n /* \"#utility.yul\":2736:2740 */\n 0x22\n /* \"#utility.yul\":2733:2734 */\n 0x04\n /* \"#utility.yul\":2726:2741 */\n mstore\n /* \"#utility.yul\":2764:2768 */\n 0x24\n /* \"#utility.yul\":2761:2762 */\n 0x00\n /* \"#utility.yul\":2754:2769 */\n revert\n /* \"#utility.yul\":2618:2779 */\n tag_168:\n pop\n /* \"#utility.yul\":2405:2785 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2790:3015 */\n tag_88:\n /* \"#utility.yul\":2830:2833 */\n 0x00\n /* \"#utility.yul\":2861:2862 */\n dup3\n /* \"#utility.yul\":2857:2863 */\n not\n /* \"#utility.yul\":2854:2855 */\n dup3\n /* \"#utility.yul\":2851:2864 */\n gt\n /* \"#utility.yul\":2848:2984 */\n iszero\n tag_170\n jumpi\n /* \"#utility.yul\":2906:2916 */\n 0x4e487b71\n /* \"#utility.yul\":2901:2904 */\n 0xe0\n /* \"#utility.yul\":2897:2917 */\n shl\n /* \"#utility.yul\":2894:2895 */\n 0x00\n /* \"#utility.yul\":2887:2918 */\n mstore\n /* \"#utility.yul\":2941:2945 */\n 0x11\n /* \"#utility.yul\":2938:2939 */\n 0x04\n /* \"#utility.yul\":2931:2946 */\n mstore\n /* \"#utility.yul\":2969:2973 */\n 0x24\n /* \"#utility.yul\":2966:2967 */\n 0x00\n /* \"#utility.yul\":2959:2974 */\n revert\n /* \"#utility.yul\":2848:2984 */\n tag_170:\n pop\n /* \"#utility.yul\":3000:3009 */\n add\n swap1\n /* \"#utility.yul\":2790:3015 */\n jump\t// out\n\n auxdata: 0xa26469706673582212206ed9beb4f0272a0b4a13776eea436147203c0459fe3f9a8a4d856e75da3d1bdd64736f6c63430008090033\n}\n",
"bytecode": {
"functionDebugData": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_string_fromMemory": {
"entryPoint": 292,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 475,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"extract_byte_array_length": {
"entryPoint": 581,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x41": {
"entryPoint": 270,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1985:4",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:4",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "46:95:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "63:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "70:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "75:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "66:3:4"
},
"nodeType": "YulFunctionCall",
"src": "66:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "56:6:4"
},
"nodeType": "YulFunctionCall",
"src": "56:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "56:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "103:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "106:4:4",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "96:6:4"
},
"nodeType": "YulFunctionCall",
"src": "96:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "96:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "127:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "130:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "120:6:4"
},
"nodeType": "YulFunctionCall",
"src": "120:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "120:15:4"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "14:127:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "210:821:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "259:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "268:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "271:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "261:6:4"
},
"nodeType": "YulFunctionCall",
"src": "261:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "261:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "238:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "246:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "234:3:4"
},
"nodeType": "YulFunctionCall",
"src": "234:17:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "253:3:4"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "230:3:4"
},
"nodeType": "YulFunctionCall",
"src": "230:27:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "223:6:4"
},
"nodeType": "YulFunctionCall",
"src": "223:35:4"
},
"nodeType": "YulIf",
"src": "220:55:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "284:23:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "300:6:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "294:5:4"
},
"nodeType": "YulFunctionCall",
"src": "294:13:4"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "288:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "316:28:4",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "334:2:4",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "338:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "330:3:4"
},
"nodeType": "YulFunctionCall",
"src": "330:10:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "342:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "326:3:4"
},
"nodeType": "YulFunctionCall",
"src": "326:18:4"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "320:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "367:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "369:16:4"
},
"nodeType": "YulFunctionCall",
"src": "369:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "369:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "359:2:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "363:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "356:2:4"
},
"nodeType": "YulFunctionCall",
"src": "356:10:4"
},
"nodeType": "YulIf",
"src": "353:36:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "398:17:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "412:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "408:3:4"
},
"nodeType": "YulFunctionCall",
"src": "408:7:4"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "402:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "424:23:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "444:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "438:5:4"
},
"nodeType": "YulFunctionCall",
"src": "438:9:4"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "428:6:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "456:71:4",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "478:6:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "502:2:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "506:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "498:3:4"
},
"nodeType": "YulFunctionCall",
"src": "498:13:4"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "513:2:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "494:3:4"
},
"nodeType": "YulFunctionCall",
"src": "494:22:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "518:2:4",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "490:3:4"
},
"nodeType": "YulFunctionCall",
"src": "490:31:4"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "523:2:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "486:3:4"
},
"nodeType": "YulFunctionCall",
"src": "486:40:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "474:3:4"
},
"nodeType": "YulFunctionCall",
"src": "474:53:4"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "460:10:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "586:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "588:16:4"
},
"nodeType": "YulFunctionCall",
"src": "588:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "588:18:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "545:10:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "557:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "542:2:4"
},
"nodeType": "YulFunctionCall",
"src": "542:18:4"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "565:10:4"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "577:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "562:2:4"
},
"nodeType": "YulFunctionCall",
"src": "562:22:4"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "539:2:4"
},
"nodeType": "YulFunctionCall",
"src": "539:46:4"
},
"nodeType": "YulIf",
"src": "536:72:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "624:2:4",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "628:10:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "617:6:4"
},
"nodeType": "YulFunctionCall",
"src": "617:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "617:22:4"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "655:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "663:2:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "648:6:4"
},
"nodeType": "YulFunctionCall",
"src": "648:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "648:18:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "675:14:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "685:4:4",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "679:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "744:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "747:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "737:6:4"
},
"nodeType": "YulFunctionCall",
"src": "737:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "737:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "712:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "720:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "708:3:4"
},
"nodeType": "YulFunctionCall",
"src": "708:15:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "725:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "704:3:4"
},
"nodeType": "YulFunctionCall",
"src": "704:24:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "730:3:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "701:2:4"
},
"nodeType": "YulFunctionCall",
"src": "701:33:4"
},
"nodeType": "YulIf",
"src": "698:53:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "760:10:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "769:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "764:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "825:87:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "854:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "862:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "850:3:4"
},
"nodeType": "YulFunctionCall",
"src": "850:14:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "866:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "846:3:4"
},
"nodeType": "YulFunctionCall",
"src": "846:23:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "885:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "893:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "881:3:4"
},
"nodeType": "YulFunctionCall",
"src": "881:14:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "897:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "877:3:4"
},
"nodeType": "YulFunctionCall",
"src": "877:23:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "871:5:4"
},
"nodeType": "YulFunctionCall",
"src": "871:30:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "839:6:4"
},
"nodeType": "YulFunctionCall",
"src": "839:63:4"
},
"nodeType": "YulExpressionStatement",
"src": "839:63:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "790:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "793:2:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "787:2:4"
},
"nodeType": "YulFunctionCall",
"src": "787:9:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "797:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "799:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "808:1:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "811:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "804:3:4"
},
"nodeType": "YulFunctionCall",
"src": "804:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "799:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "783:3:4",
"statements": []
},
"src": "779:133:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "942:59:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "971:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "979:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "967:3:4"
},
"nodeType": "YulFunctionCall",
"src": "967:15:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "984:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "963:3:4"
},
"nodeType": "YulFunctionCall",
"src": "963:24:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "989:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "956:6:4"
},
"nodeType": "YulFunctionCall",
"src": "956:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "956:35:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "927:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "930:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "924:2:4"
},
"nodeType": "YulFunctionCall",
"src": "924:9:4"
},
"nodeType": "YulIf",
"src": "921:80:4"
},
{
"nodeType": "YulAssignment",
"src": "1010:15:4",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1019:6:4"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1010:5:4"
}
]
}
]
},
"name": "abi_decode_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "184:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "192:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "200:5:4",
"type": ""
}
],
"src": "146:885:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1154:444:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1200:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1209:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1212:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1202:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1202:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1202:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1175:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1184:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1171:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1171:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1196:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1167:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1167:32:4"
},
"nodeType": "YulIf",
"src": "1164:52:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1225:30:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1245:9:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1239:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1239:16:4"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1229:6:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1264:28:4",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1282:2:4",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1278:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1278:10:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1290:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1274:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1274:18:4"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1268:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1319:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1328:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1331:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1321:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1321:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1321:12:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1307:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1315:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1304:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1304:14:4"
},
"nodeType": "YulIf",
"src": "1301:34:4"
},
{
"nodeType": "YulAssignment",
"src": "1344:71:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1387:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1398:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1383:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1383:22:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1407:7:4"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1354:28:4"
},
"nodeType": "YulFunctionCall",
"src": "1354:61:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1344:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1424:41:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1450:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1461:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1446:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1446:18:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1440:5:4"
},
"nodeType": "YulFunctionCall",
"src": "1440:25:4"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1428:8:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1494:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1503:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1506:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1496:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1496:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1496:12:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1480:8:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1490:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1477:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1477:16:4"
},
"nodeType": "YulIf",
"src": "1474:36:4"
},
{
"nodeType": "YulAssignment",
"src": "1519:73:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1562:9:4"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1573:8:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1558:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1558:24:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1584:7:4"
}
],
"functionName": {
"name": "abi_decode_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1529:28:4"
},
"nodeType": "YulFunctionCall",
"src": "1529:63:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1519:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1112:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1123:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1135:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1143:6:4",
"type": ""
}
],
"src": "1036:562:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1658:325:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1668:22:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1682:1:4",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1685:4:4"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "1678:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1678:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1668:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1699:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1729:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1735:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1725:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1725:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1703:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1776:31:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1778:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1792:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1800:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1788:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1788:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1778:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1756:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1749:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1749:26:4"
},
"nodeType": "YulIf",
"src": "1746:61:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1866:111:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1887:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1894:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1899:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1890:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1890:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1880:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1880:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "1880:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1931:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1934:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1924:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1924:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "1924:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1959:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1962:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1952:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1952:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "1952:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1822:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1845:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1853:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1842:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1842:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1819:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1819:38:4"
},
"nodeType": "YulIf",
"src": "1816:161:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1638:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1647:6:4",
"type": ""
}
],
"src": "1603:380:4"
}
]
},
"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 if gt(i, _1)\n {\n mstore(add(add(memPtr, _1), _4), 0)\n }\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}",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162000aef38038062000aef8339810160408190526200003491620001db565b81516200004990600390602085019062000068565b5080516200005f90600490602084019062000068565b50505062000282565b828054620000769062000245565b90600052602060002090601f0160209004810192826200009a5760008555620000e5565b82601f10620000b557805160ff1916838001178555620000e5565b82800160010185558215620000e5579182015b82811115620000e5578251825591602001919060010190620000c8565b50620000f3929150620000f7565b5090565b5b80821115620000f35760008155600101620000f8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200013657600080fd5b81516001600160401b03808211156200015357620001536200010e565b604051601f8301601f19908116603f011681019082821181831017156200017e576200017e6200010e565b816040528381526020925086838588010111156200019b57600080fd5b600091505b83821015620001bf5785820183015181830184015290820190620001a0565b83821115620001d15760008385830101525b9695505050505050565b60008060408385031215620001ef57600080fd5b82516001600160401b03808211156200020757600080fd5b620002158683870162000124565b935060208501519150808211156200022c57600080fd5b506200023b8582860162000124565b9150509250929050565b600181811c908216806200025a57607f821691505b602082108114156200027c57634e487b7160e01b600052602260045260246000fd5b50919050565b61085d80620002926000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101a0565b6040516100c3919061069a565b60405180910390f35b6100df6100da36600461070b565b610232565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610735565b61024a565b604051601281526020016100c3565b6100df61013136600461070b565b61026e565b6100f3610144366004610771565b6001600160a01b031660009081526020819052604090205490565b6100b6610290565b6100df61017536600461070b565b61029f565b6100df61018836600461070b565b61031f565b6100f361019b366004610793565b61032d565b6060600380546101af906107c6565b80601f01602080910402602001604051908101604052809291908181526020018280546101db906107c6565b80156102285780601f106101fd57610100808354040283529160200191610228565b820191906000526020600020905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b600033610240818585610358565b5060019392505050565b60003361025885828561047c565b6102638585856104f6565b506001949350505050565b600033610240818585610281838361032d565b61028b9190610801565b610358565b6060600480546101af906107c6565b600033816102ad828661032d565b9050838110156103125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102638286868403610358565b6000336102408185856104f6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610309565b6001600160a01b03821661041b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610309565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610488848461032d565b905060001981146104f057818110156104e35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610309565b6104f08484848403610358565b50505050565b6001600160a01b03831661055a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610309565b6001600160a01b0382166105bc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610309565b6001600160a01b038316600090815260208190526040902054818110156106345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610309565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36104f0565b600060208083528351808285015260005b818110156106c7578581018301518582016040015282016106ab565b818111156106d9576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461070657600080fd5b919050565b6000806040838503121561071e57600080fd5b610727836106ef565b946020939093013593505050565b60008060006060848603121561074a57600080fd5b610753846106ef565b9250610761602085016106ef565b9150604084013590509250925092565b60006020828403121561078357600080fd5b61078c826106ef565b9392505050565b600080604083850312156107a657600080fd5b6107af836106ef565b91506107bd602084016106ef565b90509250929050565b600181811c908216806107da57607f821691505b602082108114156107fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561082257634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212206ed9beb4f0272a0b4a13776eea436147203c0459fe3f9a8a4d856e75da3d1bdd64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0xAEF CODESIZE SUB DUP1 PUSH3 0xAEF DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1DB JUMP JUMPDEST DUP2 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x3 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x4 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP POP POP PUSH3 0x282 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x76 SWAP1 PUSH3 0x245 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x9A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xB5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xE5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xE5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC8 JUMP JUMPDEST POP PUSH3 0xF3 SWAP3 SWAP2 POP PUSH3 0xF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xF8 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 0x136 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x153 JUMPI PUSH3 0x153 PUSH3 0x10E 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 0x17E JUMPI PUSH3 0x17E PUSH3 0x10E JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP4 DUP2 MSTORE PUSH1 0x20 SWAP3 POP DUP7 DUP4 DUP6 DUP9 ADD ADD GT ISZERO PUSH3 0x19B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 SWAP2 POP JUMPDEST DUP4 DUP3 LT ISZERO PUSH3 0x1BF JUMPI DUP6 DUP3 ADD DUP4 ADD MLOAD DUP2 DUP4 ADD DUP5 ADD MSTORE SWAP1 DUP3 ADD SWAP1 PUSH3 0x1A0 JUMP JUMPDEST DUP4 DUP3 GT ISZERO PUSH3 0x1D1 JUMPI PUSH1 0x0 DUP4 DUP6 DUP4 ADD ADD MSTORE JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x207 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x215 DUP7 DUP4 DUP8 ADD PUSH3 0x124 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x22C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x23B DUP6 DUP3 DUP7 ADD PUSH3 0x124 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH3 0x25A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x27C 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 PUSH2 0x85D DUP1 PUSH3 0x292 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 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15F JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x1A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x69A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x232 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0x735 JUMP JUMPDEST PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x131 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x26E JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x144 CALLDATASIZE PUSH1 0x4 PUSH2 0x771 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xB6 PUSH2 0x290 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x29F JUMP JUMPDEST PUSH2 0xDF PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x31F JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x793 JUMP JUMPDEST PUSH2 0x32D JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C6 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 0x1DB SWAP1 PUSH2 0x7C6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x228 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1FD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x228 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 0x20B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x358 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x258 DUP6 DUP3 DUP6 PUSH2 0x47C JUMP JUMPDEST PUSH2 0x263 DUP6 DUP6 DUP6 PUSH2 0x4F6 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x281 DUP4 DUP4 PUSH2 0x32D JUMP JUMPDEST PUSH2 0x28B SWAP2 SWAP1 PUSH2 0x801 JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C6 JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x2AD DUP3 DUP7 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x312 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x263 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x358 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3BA 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 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x41B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x488 DUP5 DUP5 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x4F0 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x309 JUMP JUMPDEST PUSH2 0x4F0 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x358 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x55A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5BC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x634 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4F0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x6C7 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x6AB JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x6D9 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x706 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x71E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x727 DUP4 PUSH2 0x6EF 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 0x74A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x753 DUP5 PUSH2 0x6EF JUMP JUMPDEST SWAP3 POP PUSH2 0x761 PUSH1 0x20 DUP6 ADD PUSH2 0x6EF 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 0x783 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x78C DUP3 PUSH2 0x6EF JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7AF DUP4 PUSH2 0x6EF JUMP JUMPDEST SWAP2 POP PUSH2 0x7BD PUSH1 0x20 DUP5 ADD PUSH2 0x6EF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7DA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x7FB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x822 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH15 0xD9BEB4F0272A0B4A13776EEA436147 KECCAK256 EXTCODECOPY DIV MSIZE INVALID EXTCODEHASH SWAP11 DUP11 0x4D DUP6 PUSH15 0x75DA3D1BDD64736F6C634300080900 CALLER ",
"sourceMap": "1401:11610:0:-:0;;;1976:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2042:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;2065:17:0;;;;:7;;:17;;;;;:::i;:::-;;1976:113;;1401:11610;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1401:11610:0;;;-1:-1:-1;1401:11610:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:127:4;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:885;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:4;;;353:36;;;369:18;;:::i;:::-;444:2;438:9;412:2;498:13;;-1:-1:-1;;494:22:4;;;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;;;930:2;927:1;924:9;921:80;;;989:1;984:2;979;971:6;967:15;963:24;956:35;921:80;1019:6;146:885;-1:-1:-1;;;;;;146:885:4:o;1036:562::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1239:16;;-1:-1:-1;;;;;1304:14:4;;;1301:34;;;1331:1;1328;1321:12;1301:34;1354:61;1407:7;1398:6;1387:9;1383:22;1354:61;:::i;:::-;1344:71;;1461:2;1450:9;1446:18;1440:25;1424:41;;1490:2;1480:8;1477:16;1474:36;;;1506:1;1503;1496:12;1474:36;;1529:63;1584:7;1573:8;1562:9;1558:24;1529:63;:::i;:::-;1519:73;;;1036:562;;;;;:::o;1603:380::-;1682:1;1678:12;;;;1725;;;1746:61;;1800:4;1792:6;1788:17;1778:27;;1746:61;1853:2;1845:6;1842:14;1822:18;1819:38;1816:161;;;1899:10;1894:3;1890:20;1887:1;1880:31;1934:4;1931:1;1924:15;1962:4;1959:1;1952:15;1816:161;;1603:380;;;:::o;:::-;1401:11610:0;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_585": {
"entryPoint": null,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_520": {
"entryPoint": 856,
"id": 520,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": null,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_msgSender_701": {
"entryPoint": null,
"id": 701,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_563": {
"entryPoint": 1148,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_346": {
"entryPoint": 1270,
"id": 346,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_141": {
"entryPoint": 813,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_166": {
"entryPoint": 562,
"id": 166,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_98": {
"entryPoint": null,
"id": 98,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_74": {
"entryPoint": null,
"id": 74,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_269": {
"entryPoint": 671,
"id": 269,
"parameterSlots": 2,
"returnSlots": 1
},
"@increaseAllowance_228": {
"entryPoint": 622,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"@name_54": {
"entryPoint": 416,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_64": {
"entryPoint": 656,
"id": 64,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_84": {
"entryPoint": null,
"id": 84,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 586,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_123": {
"entryPoint": 799,
"id": 123,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_address": {
"entryPoint": 1775,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 1905,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 1939,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 1845,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 1803,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"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": 1690,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2049,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1990,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5806:4",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:4",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "135:476:4",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "145:12:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "155:2:4",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "149:2:4",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "173:9:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "184:2:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "166:6:4"
},
"nodeType": "YulFunctionCall",
"src": "166:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "166:21:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "196:27:4",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "216:6:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "210:5:4"
},
"nodeType": "YulFunctionCall",
"src": "210:13:4"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "200:6:4",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "243:9:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "254:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "239:3:4"
},
"nodeType": "YulFunctionCall",
"src": "239:18:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "259:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "232:6:4"
},
"nodeType": "YulFunctionCall",
"src": "232:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "232:34:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "275:10:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "284:1:4",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "279:1:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "344:90:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "373:9:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "384:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "369:3:4"
},
"nodeType": "YulFunctionCall",
"src": "369:17:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "388:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "365:3:4"
},
"nodeType": "YulFunctionCall",
"src": "365:26:4"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "407:6:4"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "415:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "403:3:4"
},
"nodeType": "YulFunctionCall",
"src": "403:14:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "419:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "399:3:4"
},
"nodeType": "YulFunctionCall",
"src": "399:23:4"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "393:5:4"
},
"nodeType": "YulFunctionCall",
"src": "393:30:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "358:6:4"
},
"nodeType": "YulFunctionCall",
"src": "358:66:4"
},
"nodeType": "YulExpressionStatement",
"src": "358:66:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "305:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "308:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "302:2:4"
},
"nodeType": "YulFunctionCall",
"src": "302:13:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "316:19:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "318:15:4",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "327:1:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "330:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "323:3:4"
},
"nodeType": "YulFunctionCall",
"src": "323:10:4"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "318:1:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "298:3:4",
"statements": []
},
"src": "294:140:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "468:66:4",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "497:9:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "508:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "493:3:4"
},
"nodeType": "YulFunctionCall",
"src": "493:22:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "517:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "489:3:4"
},
"nodeType": "YulFunctionCall",
"src": "489:31:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "522:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "482:6:4"
},
"nodeType": "YulFunctionCall",
"src": "482:42:4"
},
"nodeType": "YulExpressionStatement",
"src": "482:42:4"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "449:1:4"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "452:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "446:2:4"
},
"nodeType": "YulFunctionCall",
"src": "446:13:4"
},
"nodeType": "YulIf",
"src": "443:91:4"
},
{
"nodeType": "YulAssignment",
"src": "543:62:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "559:9:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "578:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "586:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "574:3:4"
},
"nodeType": "YulFunctionCall",
"src": "574:15:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "595:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "591:3:4"
},
"nodeType": "YulFunctionCall",
"src": "591:7:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "570:3:4"
},
"nodeType": "YulFunctionCall",
"src": "570:29:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "555:3:4"
},
"nodeType": "YulFunctionCall",
"src": "555:45:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "602:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "551:3:4"
},
"nodeType": "YulFunctionCall",
"src": "551:54:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "543:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "104:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "115:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "126:4:4",
"type": ""
}
],
"src": "14:597:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "665:124:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "675:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "697:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "684:12:4"
},
"nodeType": "YulFunctionCall",
"src": "684:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "675:5:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "767:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "776:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "779:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "769:6:4"
},
"nodeType": "YulFunctionCall",
"src": "769:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "769:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "726:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "737:5:4"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:3:4",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "757:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "748:3:4"
},
"nodeType": "YulFunctionCall",
"src": "748:11:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "761:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "744:3:4"
},
"nodeType": "YulFunctionCall",
"src": "744:19:4"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "733:3:4"
},
"nodeType": "YulFunctionCall",
"src": "733:31:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "723:2:4"
},
"nodeType": "YulFunctionCall",
"src": "723:42:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "716:6:4"
},
"nodeType": "YulFunctionCall",
"src": "716:50:4"
},
"nodeType": "YulIf",
"src": "713:70:4"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "655:5:4",
"type": ""
}
],
"src": "616:173:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "881:167:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "927:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "929:6:4"
},
"nodeType": "YulFunctionCall",
"src": "929:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "929:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "902:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "911:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "898:3:4"
},
"nodeType": "YulFunctionCall",
"src": "898:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "923:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "894:3:4"
},
"nodeType": "YulFunctionCall",
"src": "894:32:4"
},
"nodeType": "YulIf",
"src": "891:52:4"
},
{
"nodeType": "YulAssignment",
"src": "952:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "981:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "962:18:4"
},
"nodeType": "YulFunctionCall",
"src": "962:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "952:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1000:42:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1027:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1038:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1023:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1023:18:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1010:12:4"
},
"nodeType": "YulFunctionCall",
"src": "1010:32:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1000:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "839:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "850:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "862:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "870:6:4",
"type": ""
}
],
"src": "794:254:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1148:92:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1158:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1170:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1166:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1166:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1158:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1200:9:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1225:6:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1218:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1218:14:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1211:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1211:22:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1193:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1193:41:4"
},
"nodeType": "YulExpressionStatement",
"src": "1193:41:4"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1117:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1128:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1139:4:4",
"type": ""
}
],
"src": "1053:187:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1346:76:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1356:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1368:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1379:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1364:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1364:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1356:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1398:9:4"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1409:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1391:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1391:25:4"
},
"nodeType": "YulExpressionStatement",
"src": "1391:25:4"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1315:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1326:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1337:4:4",
"type": ""
}
],
"src": "1245:177:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1531:224:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1577:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1586:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1589:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1579:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1579:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1579:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1552:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1561:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1548:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1548:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1573:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1544:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1544:32:4"
},
"nodeType": "YulIf",
"src": "1541:52:4"
},
{
"nodeType": "YulAssignment",
"src": "1602:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1631:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1612:18:4"
},
"nodeType": "YulFunctionCall",
"src": "1612:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1602:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1650:48:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1683:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1694:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1679:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1679:18:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "1660:18:4"
},
"nodeType": "YulFunctionCall",
"src": "1660:38:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1650:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1707:42:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1734:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1745:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1730:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1730:18:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1717:12:4"
},
"nodeType": "YulFunctionCall",
"src": "1717:32:4"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1707:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1481:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1492:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1504:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1512:6:4",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1520:6:4",
"type": ""
}
],
"src": "1427:328:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1857:87:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1867:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1879:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1890:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1875:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1875:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1867:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1909:9:4"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1924:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1932:4:4",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1920:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1920:17:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1902:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1902:36:4"
},
"nodeType": "YulExpressionStatement",
"src": "1902:36:4"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1826:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1837:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1848:4:4",
"type": ""
}
],
"src": "1760:184:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2019:116:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2065:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2074:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2077:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2067:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2067:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2067:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2040:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2049:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2036:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2036:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2061:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2032:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2032:32:4"
},
"nodeType": "YulIf",
"src": "2029:52:4"
},
{
"nodeType": "YulAssignment",
"src": "2090:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2119:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2100:18:4"
},
"nodeType": "YulFunctionCall",
"src": "2100:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2090:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1985:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1996:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2008:6:4",
"type": ""
}
],
"src": "1949:186:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2227:173:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2273:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2282:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2285:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2275:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2275:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2275:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2248:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2257:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2244:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2244:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2269:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2240:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2240:32:4"
},
"nodeType": "YulIf",
"src": "2237:52:4"
},
{
"nodeType": "YulAssignment",
"src": "2298:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2327:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2308:18:4"
},
"nodeType": "YulFunctionCall",
"src": "2308:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2298:6:4"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2346:48:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2379:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2390:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2375:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2375:18:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2356:18:4"
},
"nodeType": "YulFunctionCall",
"src": "2356:38:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2346:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2185:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2196:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2208:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2216:6:4",
"type": ""
}
],
"src": "2140:260:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2460:325:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2470:22:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2484:1:4",
"type": "",
"value": "1"
},
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2487:4:4"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "2480:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2480:12:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2470:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2501:38:4",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2531:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2537:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2527:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2527:12:4"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2505:18:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2578:31:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2580:27:4",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2594:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2602:4:4",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2590:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2590:17:4"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2580:6:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2558:18:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2551:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2551:26:4"
},
"nodeType": "YulIf",
"src": "2548:61:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2668:111:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2689:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2696:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2701:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2692:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2692:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2682:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2682:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "2682:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2733:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2736:4:4",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2726:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2726:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2726:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2761:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2764:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2754:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2754:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2754:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2624:18:4"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2647:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2655:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2644:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2644:14:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2621:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2621:38:4"
},
"nodeType": "YulIf",
"src": "2618:161:4"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2440:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2449:6:4",
"type": ""
}
],
"src": "2405:380:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2838:177:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2873:111:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2894:1:4",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2901:3:4",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2906:10:4",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2897:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2897:20:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2887:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2887:31:4"
},
"nodeType": "YulExpressionStatement",
"src": "2887:31:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2938:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2941:4:4",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2931:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2931:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2931:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2966:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2969:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2959:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2959:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2959:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2854:1:4"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2861:1:4"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2857:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2857:6:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2851:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2851:13:4"
},
"nodeType": "YulIf",
"src": "2848:136:4"
},
{
"nodeType": "YulAssignment",
"src": "2993:16:4",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3004:1:4"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3007:1:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3000:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3000:9:4"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2993:3:4"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2821:1:4",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2824:1:4",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2830:3:4",
"type": ""
}
],
"src": "2790:225:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3194:227:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3211:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3222:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3204:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3204:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "3204:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3245:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3256:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3241:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3241:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3261:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3234:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3234:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3234:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3284:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3295:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3280:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3280:18:4"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3300:34:4",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3273:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3273:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "3273:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3355:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3366:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3351:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3351:18:4"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3371:7:4",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3344:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3344:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "3344:35:4"
},
{
"nodeType": "YulAssignment",
"src": "3388:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3400:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3411:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3396:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3396:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3388:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3171:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3185:4:4",
"type": ""
}
],
"src": "3020:401:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3600:226:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3617:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3628:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3610:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3610:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "3610:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3651:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3662:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3647:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3647:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3667:2:4",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3640:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3640:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3640:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3686:18:4"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3706:34:4",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3679:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3679:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "3679:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3761:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3772:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3757:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3757:18:4"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3777:6:4",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3750:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3750:34:4"
},
"nodeType": "YulExpressionStatement",
"src": "3750:34:4"
},
{
"nodeType": "YulAssignment",
"src": "3793:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3805:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3816:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3801:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3801:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3793:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3577:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3591:4:4",
"type": ""
}
],
"src": "3426:400:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4005:224:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4022:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4033:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4015:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4015:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4015:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4056:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4067:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4052:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4052:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4072:2:4",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4045:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4045:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4045:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4095:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4106:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4091:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4091:18:4"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4111:34:4",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4084:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4084:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "4084:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4166:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4177:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4162:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4162:18:4"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4182:4:4",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4155:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4155:32:4"
},
"nodeType": "YulExpressionStatement",
"src": "4155:32:4"
},
{
"nodeType": "YulAssignment",
"src": "4196:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4208:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4219:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4204:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4204:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4196:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3982:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3996:4:4",
"type": ""
}
],
"src": "3831:398:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4408:179:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4425:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4436:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4418:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4418:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4418:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4459:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4470:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4455:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4455:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4475:2:4",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4448:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4448:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4448:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4498:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4509:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4494:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4494:18:4"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4514:31:4",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4487:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4487:59:4"
},
"nodeType": "YulExpressionStatement",
"src": "4487:59:4"
},
{
"nodeType": "YulAssignment",
"src": "4555:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4567:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4578:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4563:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4563:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4555:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4385:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4399:4:4",
"type": ""
}
],
"src": "4234:353:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4766:227:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4783:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4794:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4776:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4776:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4776:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4817:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4828:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4813:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4813:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4833:2:4",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4806:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4806:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4806:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4856:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4867:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4852:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4852:18:4"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4872:34:4",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4845:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4845:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "4845:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4927:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4938:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4923:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4923:18:4"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4943:7:4",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4916:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4916:35:4"
},
"nodeType": "YulExpressionStatement",
"src": "4916:35:4"
},
{
"nodeType": "YulAssignment",
"src": "4960:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4972:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4983:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4968:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4968:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4960:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4743:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4757:4:4",
"type": ""
}
],
"src": "4592:401:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5172:225:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5189:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5200:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5182:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5182:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "5182:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5223:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5234:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5219:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5219:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5239:2:4",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5212:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5212:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "5212:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5262:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5273:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5258:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5258:18:4"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5278:34:4",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5251:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5251:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "5251:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5333:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5344:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5329:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5329:18:4"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5349:5:4",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5322:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5322:33:4"
},
"nodeType": "YulExpressionStatement",
"src": "5322:33:4"
},
{
"nodeType": "YulAssignment",
"src": "5364:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5376:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5387:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5372:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5372:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5364:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5149:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5163:4:4",
"type": ""
}
],
"src": "4998:399:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5576:228:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5593:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5604:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5586:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5586:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "5586:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5627:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5638:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5623:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5623:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5643:2:4",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5616:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5616:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "5616:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5666:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5677:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5662:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5662:18:4"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5682:34:4",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5655:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5655:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "5655:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5737:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5748:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5733:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5733:18:4"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5753:8:4",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5726:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5726:36:4"
},
"nodeType": "YulExpressionStatement",
"src": "5726:36:4"
},
{
"nodeType": "YulAssignment",
"src": "5771:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5783:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5794:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5779:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5779:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5771:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5553:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5567:4:4",
"type": ""
}
],
"src": "5402:402:4"
}
]
},
"contents": "{\n { }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n let _1 := 32\n mstore(headStart, _1)\n let length := mload(value0)\n mstore(add(headStart, _1), length)\n let i := 0\n for { } lt(i, length) { i := add(i, _1) }\n {\n mstore(add(add(headStart, i), 64), mload(add(add(value0, i), _1)))\n }\n if gt(i, length)\n {\n mstore(add(add(headStart, length), 64), 0)\n }\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\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_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_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_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_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xff))\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n value1 := abi_decode_address(add(headStart, 32))\n }\n function 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 checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n sum := add(x, y)\n }\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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), \"ERC20: decreased allowance below\")\n mstore(add(headStart, 96), \" zero\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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), \"ERC20: approve from the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 34)\n mstore(add(headStart, 64), \"ERC20: approve to the zero addre\")\n mstore(add(headStart, 96), \"ss\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"ERC20: insufficient allowance\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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), \"ERC20: transfer from the zero ad\")\n mstore(add(headStart, 96), \"dress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 35)\n mstore(add(headStart, 64), \"ERC20: transfer to the zero addr\")\n mstore(add(headStart, 96), \"ess\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC20: transfer amount exceeds b\")\n mstore(add(headStart, 96), \"alance\")\n tail := add(headStart, 128)\n }\n}",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101a0565b6040516100c3919061069a565b60405180910390f35b6100df6100da36600461070b565b610232565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610735565b61024a565b604051601281526020016100c3565b6100df61013136600461070b565b61026e565b6100f3610144366004610771565b6001600160a01b031660009081526020819052604090205490565b6100b6610290565b6100df61017536600461070b565b61029f565b6100df61018836600461070b565b61031f565b6100f361019b366004610793565b61032d565b6060600380546101af906107c6565b80601f01602080910402602001604051908101604052809291908181526020018280546101db906107c6565b80156102285780601f106101fd57610100808354040283529160200191610228565b820191906000526020600020905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b600033610240818585610358565b5060019392505050565b60003361025885828561047c565b6102638585856104f6565b506001949350505050565b600033610240818585610281838361032d565b61028b9190610801565b610358565b6060600480546101af906107c6565b600033816102ad828661032d565b9050838110156103125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102638286868403610358565b6000336102408185856104f6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103ba5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610309565b6001600160a01b03821661041b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610309565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610488848461032d565b905060001981146104f057818110156104e35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610309565b6104f08484848403610358565b50505050565b6001600160a01b03831661055a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610309565b6001600160a01b0382166105bc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610309565b6001600160a01b038316600090815260208190526040902054818110156106345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610309565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36104f0565b600060208083528351808285015260005b818110156106c7578581018301518582016040015282016106ab565b818111156106d9576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461070657600080fd5b919050565b6000806040838503121561071e57600080fd5b610727836106ef565b946020939093013593505050565b60008060006060848603121561074a57600080fd5b610753846106ef565b9250610761602085016106ef565b9150604084013590509250925092565b60006020828403121561078357600080fd5b61078c826106ef565b9392505050565b600080604083850312156107a657600080fd5b6107af836106ef565b91506107bd602084016106ef565b90509250929050565b600181811c908216806107da57607f821691505b602082108114156107fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6000821982111561082257634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212206ed9beb4f0272a0b4a13776eea436147203c0459fe3f9a8a4d856e75da3d1bdd64736f6c63430008090033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15F JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x1A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x69A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x232 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0x735 JUMP JUMPDEST PUSH2 0x24A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x131 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x26E JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x144 CALLDATASIZE PUSH1 0x4 PUSH2 0x771 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xB6 PUSH2 0x290 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x29F JUMP JUMPDEST PUSH2 0xDF PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x31F JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x793 JUMP JUMPDEST PUSH2 0x32D JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C6 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 0x1DB SWAP1 PUSH2 0x7C6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x228 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1FD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x228 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 0x20B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x358 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x258 DUP6 DUP3 DUP6 PUSH2 0x47C JUMP JUMPDEST PUSH2 0x263 DUP6 DUP6 DUP6 PUSH2 0x4F6 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x281 DUP4 DUP4 PUSH2 0x32D JUMP JUMPDEST PUSH2 0x28B SWAP2 SWAP1 PUSH2 0x801 JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C6 JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x2AD DUP3 DUP7 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x312 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x263 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x358 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3BA 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 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x44 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x41B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x22 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x44 DUP3 ADD MSTORE PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 DUP6 SWAP1 SSTORE SWAP1 MLOAD DUP5 DUP2 MSTORE PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x488 DUP5 DUP5 PUSH2 0x32D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x4F0 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4E3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x309 JUMP JUMPDEST PUSH2 0x4F0 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x358 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x55A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5BC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x23 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x44 DUP3 ADD MSTORE PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x634 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x309 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4F0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP1 DUP4 MSTORE DUP4 MLOAD DUP1 DUP3 DUP6 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x6C7 JUMPI DUP6 DUP2 ADD DUP4 ADD MLOAD DUP6 DUP3 ADD PUSH1 0x40 ADD MSTORE DUP3 ADD PUSH2 0x6AB JUMP JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x6D9 JUMPI PUSH1 0x0 PUSH1 0x40 DUP4 DUP8 ADD ADD MSTORE JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x40 ADD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x706 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x71E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x727 DUP4 PUSH2 0x6EF 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 0x74A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x753 DUP5 PUSH2 0x6EF JUMP JUMPDEST SWAP3 POP PUSH2 0x761 PUSH1 0x20 DUP6 ADD PUSH2 0x6EF 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 0x783 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x78C DUP3 PUSH2 0x6EF JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7AF DUP4 PUSH2 0x6EF JUMP JUMPDEST SWAP2 POP PUSH2 0x7BD PUSH1 0x20 DUP5 ADD PUSH2 0x6EF JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7DA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x7FB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x822 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH15 0xD9BEB4F0272A0B4A13776EEA436147 KECCAK256 EXTCODECOPY DIV MSIZE INVALID EXTCODEHASH SWAP11 DUP11 0x4D DUP6 PUSH15 0x75DA3D1BDD64736F6C634300080900 CALLER ",
"sourceMap": "1401:11610:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:4;;1211:22;1193:41;;1181:2;1166:18;4431:197:0;1053:187:4;3242:106:0;3329:12;;3242:106;;;1391:25:4;;;1379:2;1364:18;3242:106:0;1245:177:4;5190:286:0;;;;;;:::i;:::-;;:::i;3091:91::-;;;3173:2;1902:36:4;;1890:2;1875:18;3091:91:0;1760:184:4;5871:234:0;;;;;;:::i;:::-;;:::i;3406:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;3506:18:0;3480:7;3506:18;;;;;;;;;;;;3406:125;2365:102;;;:::i;6592:427::-;;;;;;:::i;:::-;;:::i;3727:189::-;;;;;;:::i;:::-;;:::i;3974:149::-;;;;;;:::i;:::-;;:::i;2154:98::-;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:3;4568:32:0;719:10:3;4584:7:0;4593:6;4568:8;:32::i;:::-;-1:-1:-1;4617:4:0;;4431:197;-1:-1:-1;;;4431:197:0:o;5190:286::-;5317:4;719:10:3;5373:38:0;5389:4;719:10:3;5404:6:0;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;-1:-1:-1;5465:4:0;;5190:286;-1:-1:-1;;;;5190:286:0:o;5871:234::-;5959:4;719:10:3;6013:64:0;719:10:3;6029:7:0;6066:10;6038:25;719:10:3;6029:7:0;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;2365:102::-;2421:13;2453:7;2446:14;;;;;:::i;6592:427::-;6685:4;719:10:3;6685:4:0;6766:25;719:10:3;6783:7:0;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:0;;3222:2:4;6801:85:0;;;3204:21:4;3261:2;3241:18;;;3234:30;3300:34;3280:18;;;3273:62;-1:-1:-1;;;3351:18:4;;;3344:35;3396:19;;6801:85:0;;;;;;;;;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;3727:189::-;3806:4;719:10:3;3860:28:0;719:10:3;3877:2:0;3881:6;3860:9;:28::i;3974:149::-;-1:-1:-1;;;;;4089:18:0;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149::o;10504:370::-;-1:-1:-1;;;;;10635:19:0;;10627:68;;;;-1:-1:-1;;;10627:68:0;;3628:2:4;10627:68:0;;;3610:21:4;3667:2;3647:18;;;3640:30;3706:34;3686:18;;;3679:62;-1:-1:-1;;;3757:18:4;;;3750:34;3801:19;;10627:68:0;3426:400:4;10627:68:0;-1:-1:-1;;;;;10713:21:0;;10705:68;;;;-1:-1:-1;;;10705:68:0;;4033:2:4;10705:68:0;;;4015:21:4;4072:2;4052:18;;;4045:30;4111:34;4091:18;;;4084:62;-1:-1:-1;;;4162:18:4;;;4155:32;4204:19;;10705:68:0;3831:398:4;10705:68:0;-1:-1:-1;;;;;10784:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;1391:25:4;;;10835:32:0;;1364:18:4;10835:32:0;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;-1:-1:-1;;11351:16:0;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:0;;4436:2:4;11404:68:0;;;4418:21:4;4475:2;4455:18;;;4448:30;4514:31;4494:18;;;4487:59;4563:18;;11404:68:0;4234:353:4;11404:68:0;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11275:321;11155:441;;;:::o;7473:818::-;-1:-1:-1;;;;;7599:18:0;;7591:68;;;;-1:-1:-1;;;7591:68:0;;4794:2:4;7591:68:0;;;4776:21:4;4833:2;4813:18;;;4806:30;4872:34;4852:18;;;4845:62;-1:-1:-1;;;4923:18:4;;;4916:35;4968:19;;7591:68:0;4592:401:4;7591:68:0;-1:-1:-1;;;;;7677:16:0;;7669:64;;;;-1:-1:-1;;;7669:64:0;;5200:2:4;7669:64:0;;;5182:21:4;5239:2;5219:18;;;5212:30;5278:34;5258:18;;;5251:62;-1:-1:-1;;;5329:18:4;;;5322:33;5372:19;;7669:64:0;4998:399:4;7669:64:0;-1:-1:-1;;;;;7815:15:0;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:0;;5604:2:4;7840:72:0;;;5586:21:4;5643:2;5623:18;;;5616:30;5682:34;5662:18;;;5655:62;-1:-1:-1;;;5733:18:4;;;5726:36;5779:19;;7840:72:0;5402:402:4;7840:72:0;-1:-1:-1;;;;;7946:15:0;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;1391:25:4;;;8161:13:0;;8210:26;;1364:18:4;8210:26:0;;;;;;;8247:37;12180:121;14:597:4;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:4;574:15;-1:-1:-1;;570:29:4;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:4:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:4;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:4:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:4:o;2140:260::-;2208:6;2216;2269:2;2257:9;2248:7;2244:23;2240:32;2237:52;;;2285:1;2282;2275:12;2237:52;2308:29;2327:9;2308:29;:::i;:::-;2298:39;;2356:38;2390:2;2379:9;2375:18;2356:38;:::i;:::-;2346:48;;2140:260;;;;;:::o;2405:380::-;2484:1;2480:12;;;;2527;;;2548:61;;2602:4;2594:6;2590:17;2580:27;;2548:61;2655:2;2647:6;2644:14;2624:18;2621:38;2618:161;;;2701:10;2696:3;2692:20;2689:1;2682:31;2736:4;2733:1;2726:15;2764:4;2761:1;2754:15;2618:161;;2405:380;;;:::o;2790:225::-;2830:3;2861:1;2857:6;2854:1;2851:13;2848:136;;;2906:10;2901:3;2897:20;2894:1;2887:31;2941:4;2938:1;2931:15;2969:4;2966:1;2959:15;2848:136;-1:-1:-1;3000:9:4;;2790:225::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "428200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "24624",
"balanceOf(address)": "2562",
"decimals()": "266",
"decreaseAllowance(address,uint256)": "27016",
"increaseAllowance(address,uint256)": "26978",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2326",
"transfer(address,uint256)": "51134",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_afterTokenTransfer(address,address,uint256)": "infinite",
"_approve(address,address,uint256)": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "infinite",
"_burn(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_spendAllowance(address,address,uint256)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1401,
"end": 13011,
"name": "MSTORE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "ISZERO",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 1976,
"end": 2089,
"name": "JUMPI",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1976,
"end": 2089,
"name": "DUP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "REVERT",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 1976,
"end": 2089,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "POP",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1976,
"end": 2089,
"name": "MLOAD",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "CODESIZE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "SUB",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP4",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "CODECOPY",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "DUP2",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "ADD",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1976,
"end": 2089,
"name": "DUP2",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "SWAP1",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "MSTORE",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 1976,
"end": 2089,
"name": "SWAP2",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 1976,
"end": 2089,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1976,
"end": 2089,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 1976,
"end": 2089,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "DUP2",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "MLOAD",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 2042,
"end": 2055,
"name": "SWAP1",
"source": 0
},
{
"begin": 2042,
"end": 2047,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 2042,
"end": 2047,
"name": "SWAP1",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2042,
"end": 2055,
"name": "DUP6",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "ADD",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "SWAP1",
"source": 0
},
{
"begin": 2042,
"end": 2055,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 2042,
"end": 2055,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2042,
"end": 2055,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 2042,
"end": 2055,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 2065,
"end": 2082,
"name": "DUP1",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "MLOAD",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 2065,
"end": 2082,
"name": "SWAP1",
"source": 0
},
{
"begin": 2065,
"end": 2072,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 2065,
"end": 2072,
"name": "SWAP1",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2065,
"end": 2082,
"name": "DUP5",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "ADD",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "SWAP1",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 2065,
"end": 2082,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2065,
"end": 2082,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 2065,
"end": 2082,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2065,
"end": 2082,
"name": "POP",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "POP",
"source": 0
},
{
"begin": 1976,
"end": 2089,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SLOAD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "MSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DIV",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP6",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1401,
"end": 13011,
"name": "LT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "MLOAD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 1401,
"end": 13011,
"name": "NOT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "AND",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP4",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "OR",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP6",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP6",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ISZERO",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "GT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ISZERO",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "MLOAD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP2",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SWAP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP3",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "GT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ISZERO",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP2",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "SSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "ADD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMP",
"source": 0
},
{
"begin": 14,
"end": 141,
"name": "tag",
"source": 4,
"value": "21"
},
{
"begin": 14,
"end": 141,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 75,
"end": 85,
"name": "PUSH",
"source": 4,
"value": "4E487B71"
},
{
"begin": 70,
"end": 73,
"name": "PUSH",
"source": 4,
"value": "E0"
},
{
"begin": 66,
"end": 86,
"name": "SHL",
"source": 4
},
{
"begin": 63,
"end": 64,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 56,
"end": 87,
"name": "MSTORE",
"source": 4
},
{
"begin": 106,
"end": 110,
"name": "PUSH",
"source": 4,
"value": "41"
},
{
"begin": 103,
"end": 104,
"name": "PUSH",
"source": 4,
"value": "4"
},
{
"begin": 96,
"end": 111,
"name": "MSTORE",
"source": 4
},
{
"begin": 130,
"end": 134,
"name": "PUSH",
"source": 4,
"value": "24"
},
{
"begin": 127,
"end": 128,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 120,
"end": 135,
"name": "REVERT",
"source": 4
},
{
"begin": 146,
"end": 1031,
"name": "tag",
"source": 4,
"value": "22"
},
{
"begin": 146,
"end": 1031,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 200,
"end": 205,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 253,
"end": 256,
"name": "DUP3",
"source": 4
},
{
"begin": 246,
"end": 250,
"name": "PUSH",
"source": 4,
"value": "1F"
},
{
"begin": 238,
"end": 244,
"name": "DUP4",
"source": 4
},
{
"begin": 234,
"end": 251,
"name": "ADD",
"source": 4
},
{
"begin": 230,
"end": 257,
"name": "SLT",
"source": 4
},
{
"begin": 220,
"end": 275,
"name": "PUSH [tag]",
"source": 4,
"value": "26"
},
{
"begin": 220,
"end": 275,
"name": "JUMPI",
"source": 4
},
{
"begin": 271,
"end": 272,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 268,
"end": 269,
"name": "DUP1",
"source": 4
},
{
"begin": 261,
"end": 273,
"name": "REVERT",
"source": 4
},
{
"begin": 220,
"end": 275,
"name": "tag",
"source": 4,
"value": "26"
},
{
"begin": 220,
"end": 275,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 294,
"end": 307,
"name": "DUP2",
"source": 4
},
{
"begin": 294,
"end": 307,
"name": "MLOAD",
"source": 4
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "40"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 356,
"end": 366,
"name": "DUP1",
"source": 4
},
{
"begin": 356,
"end": 366,
"name": "DUP3",
"source": 4
},
{
"begin": 356,
"end": 366,
"name": "GT",
"source": 4
},
{
"begin": 353,
"end": 389,
"name": "ISZERO",
"source": 4
},
{
"begin": 353,
"end": 389,
"name": "PUSH [tag]",
"source": 4,
"value": "28"
},
{
"begin": 353,
"end": 389,
"name": "JUMPI",
"source": 4
},
{
"begin": 369,
"end": 387,
"name": "PUSH [tag]",
"source": 4,
"value": "28"
},
{
"begin": 369,
"end": 387,
"name": "PUSH [tag]",
"source": 4,
"value": "21"
},
{
"begin": 369,
"end": 387,
"name": "JUMP",
"source": 4,
"value": "[in]"
},
{
"begin": 369,
"end": 387,
"name": "tag",
"source": 4,
"value": "28"
},
{
"begin": 369,
"end": 387,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 444,
"end": 446,
"name": "PUSH",
"source": 4,
"value": "40"
},
{
"begin": 438,
"end": 447,
"name": "MLOAD",
"source": 4
},
{
"begin": 412,
"end": 414,
"name": "PUSH",
"source": 4,
"value": "1F"
},
{
"begin": 498,
"end": 511,
"name": "DUP4",
"source": 4
},
{
"begin": 498,
"end": 511,
"name": "ADD",
"source": 4
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": 494,
"end": 516,
"name": "SWAP1",
"source": 4
},
{
"begin": 494,
"end": 516,
"name": "DUP2",
"source": 4
},
{
"begin": 494,
"end": 516,
"name": "AND",
"source": 4
},
{
"begin": 518,
"end": 520,
"name": "PUSH",
"source": 4,
"value": "3F"
},
{
"begin": 490,
"end": 521,
"name": "ADD",
"source": 4
},
{
"begin": 486,
"end": 526,
"name": "AND",
"source": 4
},
{
"begin": 474,
"end": 527,
"name": "DUP2",
"source": 4
},
{
"begin": 474,
"end": 527,
"name": "ADD",
"source": 4
},
{
"begin": 474,
"end": 527,
"name": "SWAP1",
"source": 4
},
{
"begin": 542,
"end": 560,
"name": "DUP3",
"source": 4
},
{
"begin": 542,
"end": 560,
"name": "DUP3",
"source": 4
},
{
"begin": 542,
"end": 560,
"name": "GT",
"source": 4
},
{
"begin": 562,
"end": 584,
"name": "DUP2",
"source": 4
},
{
"begin": 562,
"end": 584,
"name": "DUP4",
"source": 4
},
{
"begin": 562,
"end": 584,
"name": "LT",
"source": 4
},
{
"begin": 539,
"end": 585,
"name": "OR",
"source": 4
},
{
"begin": 536,
"end": 608,
"name": "ISZERO",
"source": 4
},
{
"begin": 536,
"end": 608,
"name": "PUSH [tag]",
"source": 4,
"value": "30"
},
{
"begin": 536,
"end": 608,
"name": "JUMPI",
"source": 4
},
{
"begin": 588,
"end": 606,
"name": "PUSH [tag]",
"source": 4,
"value": "30"
},
{
"begin": 588,
"end": 606,
"name": "PUSH [tag]",
"source": 4,
"value": "21"
},
{
"begin": 588,
"end": 606,
"name": "JUMP",
"source": 4,
"value": "[in]"
},
{
"begin": 588,
"end": 606,
"name": "tag",
"source": 4,
"value": "30"
},
{
"begin": 588,
"end": 606,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 628,
"end": 638,
"name": "DUP2",
"source": 4
},
{
"begin": 624,
"end": 626,
"name": "PUSH",
"source": 4,
"value": "40"
},
{
"begin": 617,
"end": 639,
"name": "MSTORE",
"source": 4
},
{
"begin": 663,
"end": 665,
"name": "DUP4",
"source": 4
},
{
"begin": 655,
"end": 661,
"name": "DUP2",
"source": 4
},
{
"begin": 648,
"end": 666,
"name": "MSTORE",
"source": 4
},
{
"begin": 685,
"end": 689,
"name": "PUSH",
"source": 4,
"value": "20"
},
{
"begin": 675,
"end": 689,
"name": "SWAP3",
"source": 4
},
{
"begin": 675,
"end": 689,
"name": "POP",
"source": 4
},
{
"begin": 730,
"end": 733,
"name": "DUP7",
"source": 4
},
{
"begin": 725,
"end": 727,
"name": "DUP4",
"source": 4
},
{
"begin": 720,
"end": 722,
"name": "DUP6",
"source": 4
},
{
"begin": 712,
"end": 718,
"name": "DUP9",
"source": 4
},
{
"begin": 708,
"end": 723,
"name": "ADD",
"source": 4
},
{
"begin": 704,
"end": 728,
"name": "ADD",
"source": 4
},
{
"begin": 701,
"end": 734,
"name": "GT",
"source": 4
},
{
"begin": 698,
"end": 751,
"name": "ISZERO",
"source": 4
},
{
"begin": 698,
"end": 751,
"name": "PUSH [tag]",
"source": 4,
"value": "31"
},
{
"begin": 698,
"end": 751,
"name": "JUMPI",
"source": 4
},
{
"begin": 747,
"end": 748,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 744,
"end": 745,
"name": "DUP1",
"source": 4
},
{
"begin": 737,
"end": 749,
"name": "REVERT",
"source": 4
},
{
"begin": 698,
"end": 751,
"name": "tag",
"source": 4,
"value": "31"
},
{
"begin": 698,
"end": 751,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 769,
"end": 770,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 760,
"end": 770,
"name": "SWAP2",
"source": 4
},
{
"begin": 760,
"end": 770,
"name": "POP",
"source": 4
},
{
"begin": 779,
"end": 912,
"name": "tag",
"source": 4,
"value": "32"
},
{
"begin": 779,
"end": 912,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 793,
"end": 795,
"name": "DUP4",
"source": 4
},
{
"begin": 790,
"end": 791,
"name": "DUP3",
"source": 4
},
{
"begin": 787,
"end": 796,
"name": "LT",
"source": 4
},
{
"begin": 779,
"end": 912,
"name": "ISZERO",
"source": 4
},
{
"begin": 779,
"end": 912,
"name": "PUSH [tag]",
"source": 4,
"value": "34"
},
{
"begin": 779,
"end": 912,
"name": "JUMPI",
"source": 4
},
{
"begin": 881,
"end": 895,
"name": "DUP6",
"source": 4
},
{
"begin": 881,
"end": 895,
"name": "DUP3",
"source": 4
},
{
"begin": 881,
"end": 895,
"name": "ADD",
"source": 4
},
{
"begin": 877,
"end": 900,
"name": "DUP4",
"source": 4
},
{
"begin": 877,
"end": 900,
"name": "ADD",
"source": 4
},
{
"begin": 871,
"end": 901,
"name": "MLOAD",
"source": 4
},
{
"begin": 850,
"end": 864,
"name": "DUP2",
"source": 4
},
{
"begin": 850,
"end": 864,
"name": "DUP4",
"source": 4
},
{
"begin": 850,
"end": 864,
"name": "ADD",
"source": 4
},
{
"begin": 846,
"end": 869,
"name": "DUP5",
"source": 4
},
{
"begin": 846,
"end": 869,
"name": "ADD",
"source": 4
},
{
"begin": 839,
"end": 902,
"name": "MSTORE",
"source": 4
},
{
"begin": 804,
"end": 814,
"name": "SWAP1",
"source": 4
},
{
"begin": 804,
"end": 814,
"name": "DUP3",
"source": 4
},
{
"begin": 804,
"end": 814,
"name": "ADD",
"source": 4
},
{
"begin": 804,
"end": 814,
"name": "SWAP1",
"source": 4
},
{
"begin": 779,
"end": 912,
"name": "PUSH [tag]",
"source": 4,
"value": "32"
},
{
"begin": 779,
"end": 912,
"name": "JUMP",
"source": 4
},
{
"begin": 779,
"end": 912,
"name": "tag",
"source": 4,
"value": "34"
},
{
"begin": 779,
"end": 912,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 930,
"end": 932,
"name": "DUP4",
"source": 4
},
{
"begin": 927,
"end": 928,
"name": "DUP3",
"source": 4
},
{
"begin": 924,
"end": 933,
"name": "GT",
"source": 4
},
{
"begin": 921,
"end": 1001,
"name": "ISZERO",
"source": 4
},
{
"begin": 921,
"end": 1001,
"name": "PUSH [tag]",
"source": 4,
"value": "35"
},
{
"begin": 921,
"end": 1001,
"name": "JUMPI",
"source": 4
},
{
"begin": 989,
"end": 990,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 984,
"end": 986,
"name": "DUP4",
"source": 4
},
{
"begin": 979,
"end": 981,
"name": "DUP6",
"source": 4
},
{
"begin": 971,
"end": 977,
"name": "DUP4",
"source": 4
},
{
"begin": 967,
"end": 982,
"name": "ADD",
"source": 4
},
{
"begin": 963,
"end": 987,
"name": "ADD",
"source": 4
},
{
"begin": 956,
"end": 991,
"name": "MSTORE",
"source": 4
},
{
"begin": 921,
"end": 1001,
"name": "tag",
"source": 4,
"value": "35"
},
{
"begin": 921,
"end": 1001,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1019,
"end": 1025,
"name": "SWAP7",
"source": 4
},
{
"begin": 146,
"end": 1031,
"name": "SWAP6",
"source": 4
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 146,
"end": 1031,
"name": "JUMP",
"source": 4,
"value": "[out]"
},
{
"begin": 1036,
"end": 1598,
"name": "tag",
"source": 4,
"value": "3"
},
{
"begin": 1036,
"end": 1598,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1135,
"end": 1141,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 1143,
"end": 1149,
"name": "DUP1",
"source": 4
},
{
"begin": 1196,
"end": 1198,
"name": "PUSH",
"source": 4,
"value": "40"
},
{
"begin": 1184,
"end": 1193,
"name": "DUP4",
"source": 4
},
{
"begin": 1175,
"end": 1182,
"name": "DUP6",
"source": 4
},
{
"begin": 1171,
"end": 1194,
"name": "SUB",
"source": 4
},
{
"begin": 1167,
"end": 1199,
"name": "SLT",
"source": 4
},
{
"begin": 1164,
"end": 1216,
"name": "ISZERO",
"source": 4
},
{
"begin": 1164,
"end": 1216,
"name": "PUSH [tag]",
"source": 4,
"value": "37"
},
{
"begin": 1164,
"end": 1216,
"name": "JUMPI",
"source": 4
},
{
"begin": 1212,
"end": 1213,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 1209,
"end": 1210,
"name": "DUP1",
"source": 4
},
{
"begin": 1202,
"end": 1214,
"name": "REVERT",
"source": 4
},
{
"begin": 1164,
"end": 1216,
"name": "tag",
"source": 4,
"value": "37"
},
{
"begin": 1164,
"end": 1216,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1239,
"end": 1255,
"name": "DUP3",
"source": 4
},
{
"begin": 1239,
"end": 1255,
"name": "MLOAD",
"source": 4
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "40"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 1304,
"end": 1318,
"name": "DUP1",
"source": 4
},
{
"begin": 1304,
"end": 1318,
"name": "DUP3",
"source": 4
},
{
"begin": 1304,
"end": 1318,
"name": "GT",
"source": 4
},
{
"begin": 1301,
"end": 1335,
"name": "ISZERO",
"source": 4
},
{
"begin": 1301,
"end": 1335,
"name": "PUSH [tag]",
"source": 4,
"value": "38"
},
{
"begin": 1301,
"end": 1335,
"name": "JUMPI",
"source": 4
},
{
"begin": 1331,
"end": 1332,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 1328,
"end": 1329,
"name": "DUP1",
"source": 4
},
{
"begin": 1321,
"end": 1333,
"name": "REVERT",
"source": 4
},
{
"begin": 1301,
"end": 1335,
"name": "tag",
"source": 4,
"value": "38"
},
{
"begin": 1301,
"end": 1335,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1354,
"end": 1415,
"name": "PUSH [tag]",
"source": 4,
"value": "39"
},
{
"begin": 1407,
"end": 1414,
"name": "DUP7",
"source": 4
},
{
"begin": 1398,
"end": 1404,
"name": "DUP4",
"source": 4
},
{
"begin": 1387,
"end": 1396,
"name": "DUP8",
"source": 4
},
{
"begin": 1383,
"end": 1405,
"name": "ADD",
"source": 4
},
{
"begin": 1354,
"end": 1415,
"name": "PUSH [tag]",
"source": 4,
"value": "22"
},
{
"begin": 1354,
"end": 1415,
"name": "JUMP",
"source": 4,
"value": "[in]"
},
{
"begin": 1354,
"end": 1415,
"name": "tag",
"source": 4,
"value": "39"
},
{
"begin": 1354,
"end": 1415,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1344,
"end": 1415,
"name": "SWAP4",
"source": 4
},
{
"begin": 1344,
"end": 1415,
"name": "POP",
"source": 4
},
{
"begin": 1461,
"end": 1463,
"name": "PUSH",
"source": 4,
"value": "20"
},
{
"begin": 1450,
"end": 1459,
"name": "DUP6",
"source": 4
},
{
"begin": 1446,
"end": 1464,
"name": "ADD",
"source": 4
},
{
"begin": 1440,
"end": 1465,
"name": "MLOAD",
"source": 4
},
{
"begin": 1424,
"end": 1465,
"name": "SWAP2",
"source": 4
},
{
"begin": 1424,
"end": 1465,
"name": "POP",
"source": 4
},
{
"begin": 1490,
"end": 1492,
"name": "DUP1",
"source": 4
},
{
"begin": 1480,
"end": 1488,
"name": "DUP3",
"source": 4
},
{
"begin": 1477,
"end": 1493,
"name": "GT",
"source": 4
},
{
"begin": 1474,
"end": 1510,
"name": "ISZERO",
"source": 4
},
{
"begin": 1474,
"end": 1510,
"name": "PUSH [tag]",
"source": 4,
"value": "40"
},
{
"begin": 1474,
"end": 1510,
"name": "JUMPI",
"source": 4
},
{
"begin": 1506,
"end": 1507,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 1503,
"end": 1504,
"name": "DUP1",
"source": 4
},
{
"begin": 1496,
"end": 1508,
"name": "REVERT",
"source": 4
},
{
"begin": 1474,
"end": 1510,
"name": "tag",
"source": 4,
"value": "40"
},
{
"begin": 1474,
"end": 1510,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1474,
"end": 1510,
"name": "POP",
"source": 4
},
{
"begin": 1529,
"end": 1592,
"name": "PUSH [tag]",
"source": 4,
"value": "41"
},
{
"begin": 1584,
"end": 1591,
"name": "DUP6",
"source": 4
},
{
"begin": 1573,
"end": 1581,
"name": "DUP3",
"source": 4
},
{
"begin": 1562,
"end": 1571,
"name": "DUP7",
"source": 4
},
{
"begin": 1558,
"end": 1582,
"name": "ADD",
"source": 4
},
{
"begin": 1529,
"end": 1592,
"name": "PUSH [tag]",
"source": 4,
"value": "22"
},
{
"begin": 1529,
"end": 1592,
"name": "JUMP",
"source": 4,
"value": "[in]"
},
{
"begin": 1529,
"end": 1592,
"name": "tag",
"source": 4,
"value": "41"
},
{
"begin": 1529,
"end": 1592,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1519,
"end": 1592,
"name": "SWAP2",
"source": 4
},
{
"begin": 1519,
"end": 1592,
"name": "POP",
"source": 4
},
{
"begin": 1519,
"end": 1592,
"name": "POP",
"source": 4
},
{
"begin": 1036,
"end": 1598,
"name": "SWAP3",
"source": 4
},
{
"begin": 1036,
"end": 1598,
"name": "POP",
"source": 4
},
{
"begin": 1036,
"end": 1598,
"name": "SWAP3",
"source": 4
},
{
"begin": 1036,
"end": 1598,
"name": "SWAP1",
"source": 4
},
{
"begin": 1036,
"end": 1598,
"name": "POP",
"source": 4
},
{
"begin": 1036,
"end": 1598,
"name": "JUMP",
"source": 4,
"value": "[out]"
},
{
"begin": 1603,
"end": 1983,
"name": "tag",
"source": 4,
"value": "11"
},
{
"begin": 1603,
"end": 1983,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1682,
"end": 1683,
"name": "PUSH",
"source": 4,
"value": "1"
},
{
"begin": 1678,
"end": 1690,
"name": "DUP2",
"source": 4
},
{
"begin": 1678,
"end": 1690,
"name": "DUP2",
"source": 4
},
{
"begin": 1678,
"end": 1690,
"name": "SHR",
"source": 4
},
{
"begin": 1678,
"end": 1690,
"name": "SWAP1",
"source": 4
},
{
"begin": 1725,
"end": 1737,
"name": "DUP3",
"source": 4
},
{
"begin": 1725,
"end": 1737,
"name": "AND",
"source": 4
},
{
"begin": 1725,
"end": 1737,
"name": "DUP1",
"source": 4
},
{
"begin": 1746,
"end": 1807,
"name": "PUSH [tag]",
"source": 4,
"value": "43"
},
{
"begin": 1746,
"end": 1807,
"name": "JUMPI",
"source": 4
},
{
"begin": 1800,
"end": 1804,
"name": "PUSH",
"source": 4,
"value": "7F"
},
{
"begin": 1792,
"end": 1798,
"name": "DUP3",
"source": 4
},
{
"begin": 1788,
"end": 1805,
"name": "AND",
"source": 4
},
{
"begin": 1778,
"end": 1805,
"name": "SWAP2",
"source": 4
},
{
"begin": 1778,
"end": 1805,
"name": "POP",
"source": 4
},
{
"begin": 1746,
"end": 1807,
"name": "tag",
"source": 4,
"value": "43"
},
{
"begin": 1746,
"end": 1807,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1853,
"end": 1855,
"name": "PUSH",
"source": 4,
"value": "20"
},
{
"begin": 1845,
"end": 1851,
"name": "DUP3",
"source": 4
},
{
"begin": 1842,
"end": 1856,
"name": "LT",
"source": 4
},
{
"begin": 1822,
"end": 1840,
"name": "DUP2",
"source": 4
},
{
"begin": 1819,
"end": 1857,
"name": "EQ",
"source": 4
},
{
"begin": 1816,
"end": 1977,
"name": "ISZERO",
"source": 4
},
{
"begin": 1816,
"end": 1977,
"name": "PUSH [tag]",
"source": 4,
"value": "44"
},
{
"begin": 1816,
"end": 1977,
"name": "JUMPI",
"source": 4
},
{
"begin": 1899,
"end": 1909,
"name": "PUSH",
"source": 4,
"value": "4E487B71"
},
{
"begin": 1894,
"end": 1897,
"name": "PUSH",
"source": 4,
"value": "E0"
},
{
"begin": 1890,
"end": 1910,
"name": "SHL",
"source": 4
},
{
"begin": 1887,
"end": 1888,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 1880,
"end": 1911,
"name": "MSTORE",
"source": 4
},
{
"begin": 1934,
"end": 1938,
"name": "PUSH",
"source": 4,
"value": "22"
},
{
"begin": 1931,
"end": 1932,
"name": "PUSH",
"source": 4,
"value": "4"
},
{
"begin": 1924,
"end": 1939,
"name": "MSTORE",
"source": 4
},
{
"begin": 1962,
"end": 1966,
"name": "PUSH",
"source": 4,
"value": "24"
},
{
"begin": 1959,
"end": 1960,
"name": "PUSH",
"source": 4,
"value": "0"
},
{
"begin": 1952,
"end": 1967,
"name": "REVERT",
"source": 4
},
{
"begin": 1816,
"end": 1977,
"name": "tag",
"source": 4,
"value": "44"
},
{
"begin": 1816,
"end": 1977,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1816,
"end": 1977,
"name": "POP",
"source": 4
},
{
"begin": 1603,
"end": 1983,
"name": "SWAP2",
"source": 4
},
{
"begin": 1603,
"end": 1983,
"name": "SWAP1",
"source": 4
},
{
"begin": 1603,
"end": 1983,
"name": "POP",
"source": 4
},
{
"begin": 1603,
"end": 1983,
"name": "JUMP",
"source": 4,
"value": "[out]"
},
{
"begin": 1603,
"end": 1983,
"name": "tag",
"source": 4,
"value": "23"
},
{
"begin": 1603,
"end": 1983,
"name": "JUMPDEST",
"source": 4
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "CODECOPY",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212206ed9beb4f0272a0b4a13776eea436147203c0459fe3f9a8a4d856e75da3d1bdd64736f6c63430008090033",
".code": [
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1401,
"end": 13011,
"name": "MSTORE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "ISZERO",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "REVERT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "POP",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1401,
"end": 13011,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "LT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 1401,
"end": 13011,
"name": "SHR",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "39509351"
},
{
"begin": 1401,
"end": 13011,
"name": "GT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "39509351"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "70A08231"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "95D89B41"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "A457C2D7"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "A9059CBB"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "DD62ED3E"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "REVERT",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "6FDDE03"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "95EA7B3"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "18160DDD"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "23B872DD"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "313CE567"
},
{
"begin": 1401,
"end": 13011,
"name": "EQ",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPI",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 1401,
"end": 13011,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1401,
"end": 13011,
"name": "DUP1",
"source": 0
},
{
"begin": 1401,
"end": 13011,
"name": "REVERT",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2154,
"end": 2252,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2154,
"end": 2252,
"name": "MLOAD",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP2",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP1",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2154,
"end": 2252,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2154,
"end": 2252,
"name": "MLOAD",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "DUP1",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP2",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SUB",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP1",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "RETURN",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 4431,
"end": 4628,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 4431,
"end": 4628,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 4431,
"end": 4628,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 4431,
"end": 4628,
"name": "MLOAD",
"source": 0
},
{
"begin": 1218,
"end": 1232,
"name": "SWAP1",
"source": 4
},
{
"begin": 1218,
"end": 1232,
"name": "ISZERO",
"source": 4
},
{
"begin": 1211,
"end": 1233,
"name": "ISZERO",
"source": 4
},
{
"begin": 1193,
"end": 1234,
"name": "DUP2",
"source": 4
},
{
"begin": 1193,
"end": 1234,
"name": "MSTORE",
"source": 4
},
{
"begin": 1181,
"end": 1183,
"name": "PUSH",
"source": 4,
"value": "20"
},
{
"begin": 1166,
"end": 1184,
"name": "ADD",
"source": 4
},
{
"begin": 4431,
"end": 4628,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 1053,
"end": 1240,
"name": "JUMP",
"source": 4
},
{
"begin": 3242,
"end": 3348,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 3242,
"end": 3348,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3329,
"end": 3341,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 3329,
"end": 3341,
"name": "SLOAD",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 3242,
"end": 3348,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3242,
"end": 3348,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3242,
"end": 3348,
"name": "MLOAD",
"source": 0
},
{
"begin": 1391,
"end": 1416,
"name": "SWAP1",
"source": 4
},
{
"begin": 1391,
"end": 1416,
"name": "DUP2",
"source": 4
},
{
"begin": 1391,
"end": 1416,
"name": "MSTORE",
"source": 4
},
{
"begin": 1379,
"end": 1381,
"name": "PUSH",
"source": 4,
"value": "20"
},
{
"begin": 1364,
"end": 1382,
"name": "ADD",
"source": 4
},
{
"begin": 3242,
"end": 3348,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 1245,
"end": 1422,
"name": "JUMP",
"source": 4
},
{
"begin": 5190,
"end": 5476,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 5190,
"end": 5476,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 5190,
"end": 5476,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5190,
"end": 5476,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 5190,
"end": 5476,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3091,
"end": 3182,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 3091,
"end": 3182,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3091,
"end": 3182,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3091,
"end": 3182,
"name": "MLOAD",
"source": 0
},
{
"begin": 3173,
"end": 3175,
"name": "PUSH",
"source": 0,
"value": "12"
},
{
"begin": 1902,
"end": 1938,
"name": "DUP2",
"source": 4
},
{
"begin": 1902,
"end": 1938,
"name": "MSTORE",
"source": 4
},
{
"begin": 1890,
"end": 1892,
"name": "PUSH",
"source": 4,
"value": "20"
},
{
"begin": 1875,
"end": 1893,
"name": "ADD",
"source": 4
},
{
"begin": 3091,
"end": 3182,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 1760,
"end": 1944,
"name": "JUMP",
"source": 4
},
{
"begin": 5871,
"end": 6105,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 5871,
"end": 6105,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5871,
"end": 6105,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 5871,
"end": 6105,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 5871,
"end": 6105,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 5871,
"end": 6105,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 5871,
"end": 6105,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 5871,
"end": 6105,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 5871,
"end": 6105,
"name": "tag",
"source": 0,
"value": "39"
},
{
"begin": 5871,
"end": 6105,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 5871,
"end": 6105,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 5871,
"end": 6105,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3406,
"end": 3531,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 3406,
"end": 3531,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3406,
"end": 3531,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 3406,
"end": 3531,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 3406,
"end": 3531,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 3406,
"end": 3531,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 3406,
"end": 3531,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 3406,
"end": 3531,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3406,
"end": 3531,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 3406,
"end": 3531,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 3506,
"end": 3524,
"name": "AND",
"source": 0
},
{
"begin": 3480,
"end": 3487,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3506,
"end": 3524,
"name": "SWAP1",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "DUP2",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "MSTORE",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 3506,
"end": 3524,
"name": "DUP2",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "SWAP1",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "MSTORE",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3506,
"end": 3524,
"name": "SWAP1",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "KECCAK256",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "SLOAD",
"source": 0
},
{
"begin": 3506,
"end": 3524,
"name": "SWAP1",
"source": 0
},
{
"begin": 3406,
"end": 3531,
"name": "JUMP",
"source": 0
},
{
"begin": 2365,
"end": 2467,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 2365,
"end": 2467,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2365,
"end": 2467,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 2365,
"end": 2467,
"name": "PUSH [tag]",
"source": 0,
"value": "48"
},
{
"begin": 2365,
"end": 2467,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 6592,
"end": 7019,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 6592,
"end": 7019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 6592,
"end": 7019,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 6592,
"end": 7019,
"name": "PUSH [tag]",
"source": 0,
"value": "51"
},
{
"begin": 6592,
"end": 7019,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 6592,
"end": 7019,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 6592,
"end": 7019,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 6592,
"end": 7019,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 6592,
"end": 7019,
"name": "tag",
"source": 0,
"value": "51"
},
{
"begin": 6592,
"end": 7019,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 6592,
"end": 7019,
"name": "PUSH [tag]",
"source": 0,
"value": "52"
},
{
"begin": 6592,
"end": 7019,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3727,
"end": 3916,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 3727,
"end": 3916,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3727,
"end": 3916,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 3727,
"end": 3916,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 3727,
"end": 3916,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 3727,
"end": 3916,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 3727,
"end": 3916,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 3727,
"end": 3916,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3727,
"end": 3916,
"name": "tag",
"source": 0,
"value": "55"
},
{
"begin": 3727,
"end": 3916,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3727,
"end": 3916,
"name": "PUSH [tag]",
"source": 0,
"value": "56"
},
{
"begin": 3727,
"end": 3916,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3974,
"end": 4123,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 3974,
"end": 4123,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3974,
"end": 4123,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 3974,
"end": 4123,
"name": "PUSH [tag]",
"source": 0,
"value": "59"
},
{
"begin": 3974,
"end": 4123,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 3974,
"end": 4123,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 3974,
"end": 4123,
"name": "PUSH [tag]",
"source": 0,
"value": "60"
},
{
"begin": 3974,
"end": 4123,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3974,
"end": 4123,
"name": "tag",
"source": 0,
"value": "59"
},
{
"begin": 3974,
"end": 4123,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3974,
"end": 4123,
"name": "PUSH [tag]",
"source": 0,
"value": "61"
},
{
"begin": 3974,
"end": 4123,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2154,
"end": 2252,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 2154,
"end": 2252,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2208,
"end": 2221,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 2240,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SLOAD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH [tag]",
"source": 0,
"value": "64"
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH [tag]",
"source": 0,
"value": "65"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2233,
"end": 2245,
"name": "tag",
"source": 0,
"value": "64"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DIV",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "MUL",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2233,
"end": 2245,
"name": "MLOAD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2233,
"end": 2245,
"name": "MSTORE",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP3",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "MSTORE",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP3",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SLOAD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH [tag]",
"source": 0,
"value": "66"
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH [tag]",
"source": 0,
"value": "65"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2233,
"end": 2245,
"name": "tag",
"source": 0,
"value": "66"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "ISZERO",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH [tag]",
"source": 0,
"value": "67"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMPI",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 2233,
"end": 2245,
"name": "LT",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH [tag]",
"source": 0,
"value": "68"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMPI",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP4",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SLOAD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DIV",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "MUL",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP4",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "MSTORE",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH [tag]",
"source": 0,
"value": "67"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMP",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "tag",
"source": 0,
"value": "68"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP3",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2233,
"end": 2245,
"name": "MSTORE",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2233,
"end": 2245,
"name": "KECCAK256",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "tag",
"source": 0,
"value": "69"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SLOAD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "MSTORE",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP4",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "GT",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH [tag]",
"source": 0,
"value": "69"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMPI",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP3",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SUB",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 2233,
"end": 2245,
"name": "AND",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "DUP3",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "ADD",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP2",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "tag",
"source": 0,
"value": "67"
},
{
"begin": 2233,
"end": 2245,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "POP",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "POP",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "POP",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "POP",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "POP",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "SWAP1",
"source": 0
},
{
"begin": 2233,
"end": 2245,
"name": "POP",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "SWAP1",
"source": 0
},
{
"begin": 2154,
"end": 2252,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 4431,
"end": 4628,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 4431,
"end": 4628,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 4514,
"end": 4518,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 3
},
{
"begin": 4568,
"end": 4600,
"name": "PUSH [tag]",
"source": 0,
"value": "73"
},
{
"begin": 719,
"end": 729,
"name": "DUP2",
"source": 3
},
{
"begin": 4584,
"end": 4591,
"name": "DUP6",
"source": 0
},
{
"begin": 4593,
"end": 4599,
"name": "DUP6",
"source": 0
},
{
"begin": 4568,
"end": 4576,
"name": "PUSH [tag]",
"source": 0,
"value": "74"
},
{
"begin": 4568,
"end": 4600,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 4568,
"end": 4600,
"name": "tag",
"source": 0,
"value": "73"
},
{
"begin": 4568,
"end": 4600,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 4617,
"end": 4621,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 4617,
"end": 4621,
"name": "SWAP4",
"source": 0
},
{
"begin": 4431,
"end": 4628,
"name": "SWAP3",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name":
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